From 89a92097e79ab424423a1187faafb7cf5fac73e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Fri, 27 Mar 2026 16:54:57 +0100 Subject: [PATCH 01/19] feature(common): introduce a new BlockNumberOffset structure, and improve arithmetic operations between BlockNumber and BlockNumberOffset --- mithril-common/src/entities/block_number.rs | 28 +++ .../src/entities/block_number_offset.rs | 188 ++++++++++++++++++ mithril-common/src/entities/mod.rs | 2 + 3 files changed, 218 insertions(+) create mode 100644 mithril-common/src/entities/block_number_offset.rs diff --git a/mithril-common/src/entities/block_number.rs b/mithril-common/src/entities/block_number.rs index c81a47c2af4..842333135a9 100644 --- a/mithril-common/src/entities/block_number.rs +++ b/mithril-common/src/entities/block_number.rs @@ -4,6 +4,7 @@ use std::ops::{Deref, DerefMut}; use serde::{Deserialize, Serialize}; +use crate::entities::BlockNumberOffset; use crate::entities::arithmetic_operation_wrapper::{ impl_add_to_wrapper, impl_div_to_wrapper, impl_mul_to_wrapper, impl_partial_eq_to_wrapper, impl_rem_to_wrapper, impl_sub_to_wrapper, @@ -55,6 +56,20 @@ impl_div_to_wrapper!(BlockNumber, u64); impl_rem_to_wrapper!(BlockNumber, u64); impl_partial_eq_to_wrapper!(BlockNumber, u64); +impl Add for BlockNumber { + type Output = Self; + + fn add(self, rhs: BlockNumberOffset) -> Self::Output { + self + *rhs + } +} + +impl AddAssign for BlockNumber { + fn add_assign(&mut self, rhs: BlockNumberOffset) { + *self = *self + rhs; + } +} + #[cfg(test)] mod tests { use crate::entities::arithmetic_operation_wrapper::tests::test_op_assign; @@ -201,4 +216,17 @@ mod tests { assert_eq!(&11, BlockNumber(11)); assert_eq!(&12, &BlockNumber(12)); } + + #[test] + fn test_add_block_number_offset() { + assert_eq!(BlockNumber(4), BlockNumber(1) + BlockNumberOffset(3)); + } + + #[test] + fn test_add_asign_block_number_offset() { + test_op_assign!(BlockNumber(1), +=, BlockNumberOffset(3) => BlockNumber(4)); + test_op_assign!(BlockNumber(1), +=, BlockNumberOffset(3) => &BlockNumber(4)); + test_op_assign!(BlockNumber(1), +=, 3 => BlockNumber(4)); + test_op_assign!(BlockNumber(1), +=, &3 => BlockNumber(4)); + } } diff --git a/mithril-common/src/entities/block_number_offset.rs b/mithril-common/src/entities/block_number_offset.rs new file mode 100644 index 00000000000..0a784b71cc5 --- /dev/null +++ b/mithril-common/src/entities/block_number_offset.rs @@ -0,0 +1,188 @@ +use std::{ + fmt::{Display, Formatter}, + num::TryFromIntError, + ops::{Deref, DerefMut}, +}; + +use serde::{Deserialize, Serialize}; + +use crate::entities::{ + BlockNumber, + arithmetic_operation_wrapper::{ + impl_add_to_wrapper, impl_partial_eq_to_wrapper, impl_sub_to_wrapper, + }, +}; + +#[cfg(target_family = "wasm")] +use wasm_bindgen::prelude::*; + +/// BlockNumberOffset represents the offset of a block number +#[derive( + Debug, Copy, Clone, Default, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize, Hash, +)] +#[cfg_attr(target_family = "wasm", wasm_bindgen)] +pub struct BlockNumberOffset(pub u64); + +impl Display for BlockNumberOffset { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + write!(f, "{}", self.0) + } +} + +impl Deref for BlockNumberOffset { + type Target = u64; + + fn deref(&self) -> &Self::Target { + &self.0 + } +} + +impl DerefMut for BlockNumberOffset { + fn deref_mut(&mut self) -> &mut Self::Target { + &mut self.0 + } +} + +impl TryFrom for BlockNumberOffset { + type Error = TryFromIntError; + + fn try_from(value: i64) -> Result { + Ok(BlockNumberOffset(u64::try_from(value)?)) + } +} + +impl TryFrom for i64 { + type Error = TryFromIntError; + + fn try_from(value: BlockNumberOffset) -> Result { + value.0.try_into() + } +} + +impl_add_to_wrapper!(BlockNumberOffset, u64); +impl_sub_to_wrapper!(BlockNumberOffset, u64); +impl_partial_eq_to_wrapper!(BlockNumberOffset, u64); + +impl Add for BlockNumberOffset { + type Output = Self; + + fn add(self, rhs: BlockNumber) -> Self::Output { + self + *rhs + } +} + +impl AddAssign for BlockNumberOffset { + fn add_assign(&mut self, rhs: BlockNumber) { + *self = *self + rhs; + } +} + +#[cfg(test)] +mod tests { + use crate::entities::arithmetic_operation_wrapper::tests::test_op_assign; + + use super::*; + + #[test] + fn test_display() { + assert_eq!(format!("{}", BlockNumberOffset(72)), "72"); + assert_eq!(format!("{}", &BlockNumberOffset(13224)), "13224"); + } + + #[test] + fn test_serialize() { + assert_eq!(serde_json::to_string(&BlockNumberOffset(72)).unwrap(), "72"); + } + + #[test] + fn test_deserialize() { + let kes_period: BlockNumberOffset = serde_json::from_str("13224").unwrap(); + assert_eq!(kes_period, BlockNumberOffset(13224)); + } + + #[test] + #[allow(clippy::op_ref)] + fn test_add() { + assert_eq!( + BlockNumberOffset(4), + BlockNumberOffset(1) + BlockNumberOffset(3) + ); + assert_eq!(BlockNumberOffset(4), BlockNumberOffset(1) + 3_u64); + assert_eq!(BlockNumberOffset(4), BlockNumberOffset(1) + &3_u64); + + assert_eq!(BlockNumberOffset(4), 3_u64 + BlockNumberOffset(1)); + assert_eq!(BlockNumberOffset(4), 3_u64 + &BlockNumberOffset(1)); + assert_eq!(BlockNumberOffset(4), &3_u64 + BlockNumberOffset(1)); + assert_eq!(BlockNumberOffset(4), &3_u64 + &BlockNumberOffset(1)); + + test_op_assign!(BlockNumberOffset(1), +=, BlockNumberOffset(3) => BlockNumberOffset(4)); + test_op_assign!(BlockNumberOffset(1), +=, 3_u64 => BlockNumberOffset(4)); + test_op_assign!(BlockNumberOffset(1), +=, &3_u64 => BlockNumberOffset(4)); + + test_op_assign!(1_u64, +=, BlockNumberOffset(3) => 4_u64); + test_op_assign!(1_u64, +=, &BlockNumberOffset(3) => 4_u64); + } + + #[test] + #[allow(clippy::op_ref)] + fn test_sub() { + assert_eq!( + BlockNumberOffset(8), + BlockNumberOffset(14) - BlockNumberOffset(6) + ); + assert_eq!(BlockNumberOffset(8), BlockNumberOffset(14) - 6_u64); + assert_eq!(BlockNumberOffset(8), BlockNumberOffset(14) - &6_u64); + + assert_eq!(BlockNumberOffset(8), 6_u64 - BlockNumberOffset(14)); + assert_eq!(BlockNumberOffset(8), 6_u64 - &BlockNumberOffset(14)); + assert_eq!(BlockNumberOffset(8), &6_u64 - BlockNumberOffset(14)); + assert_eq!(BlockNumberOffset(8), &6_u64 - &BlockNumberOffset(14)); + + test_op_assign!(BlockNumberOffset(14), -=, BlockNumberOffset(6) => BlockNumberOffset(8)); + test_op_assign!(BlockNumberOffset(14), -=, 6_u64 => BlockNumberOffset(8)); + test_op_assign!(BlockNumberOffset(14), -=, &6_u64 => BlockNumberOffset(8)); + + test_op_assign!(14_u64, -=, BlockNumberOffset(6) => 8_u64); + test_op_assign!(14_u64, -=, &BlockNumberOffset(6) => 8_u64); + } + + #[test] + fn saturating_sub() { + assert_eq!( + BlockNumberOffset(0), + BlockNumberOffset(1) - BlockNumberOffset(5) + ); + assert_eq!(BlockNumberOffset(0), BlockNumberOffset(1) - 5_u64); + } + + #[test] + fn test_eq() { + assert_eq!(BlockNumberOffset(1), BlockNumberOffset(1)); + assert_eq!(BlockNumberOffset(2), &BlockNumberOffset(2)); + assert_eq!(&BlockNumberOffset(3), BlockNumberOffset(3)); + assert_eq!(&BlockNumberOffset(4), &BlockNumberOffset(4)); + + assert_eq!(BlockNumberOffset(5), 5); + assert_eq!(BlockNumberOffset(6), &6); + assert_eq!(&BlockNumberOffset(7), 7); + assert_eq!(&BlockNumberOffset(8), &8); + + assert_eq!(9, BlockNumberOffset(9)); + assert_eq!(10, &BlockNumberOffset(10)); + assert_eq!(&11, BlockNumberOffset(11)); + assert_eq!(&12, &BlockNumberOffset(12)); + } + + #[test] + fn test_add_block_number() { + assert_eq!(BlockNumberOffset(4), BlockNumberOffset(1) + BlockNumber(3)); + } + + #[test] + fn test_add_asign_block_number() { + test_op_assign!(BlockNumberOffset(1), +=, BlockNumber(3) => BlockNumberOffset(4)); + test_op_assign!(BlockNumberOffset(1), +=, BlockNumber(3) => &BlockNumberOffset(4)); + test_op_assign!(BlockNumberOffset(1), +=, 3 => BlockNumberOffset(4)); + test_op_assign!(BlockNumberOffset(1), +=, &3 => BlockNumberOffset(4)); + } +} diff --git a/mithril-common/src/entities/mod.rs b/mithril-common/src/entities/mod.rs index 5dfcd71cdbc..38577268be7 100644 --- a/mithril-common/src/entities/mod.rs +++ b/mithril-common/src/entities/mod.rs @@ -2,6 +2,7 @@ pub(crate) mod arithmetic_operation_wrapper; mod block_number; +mod block_number_offset; mod block_range; mod cardano_block; mod cardano_block_transaction_mktree_node; @@ -39,6 +40,7 @@ mod time_point; mod type_alias; pub use block_number::BlockNumber; +pub use block_number_offset::BlockNumberOffset; pub use block_range::{BlockRange, BlockRangeLength, BlockRangesSequence}; pub use cardano_block::*; pub use cardano_block_transaction_mktree_node::*; From 9a80276c5604f3bad633e13e99505c919f94e1ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Fri, 27 Mar 2026 18:20:45 +0100 Subject: [PATCH 02/19] refactor(common): make CardanoTransactionsBuilder use dedicated BlockNumberOffset type --- .../src/test/builder/cardano_transactions_builder.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mithril-common/src/test/builder/cardano_transactions_builder.rs b/mithril-common/src/test/builder/cardano_transactions_builder.rs index 30979d51a80..7bd17ed8565 100644 --- a/mithril-common/src/test/builder/cardano_transactions_builder.rs +++ b/mithril-common/src/test/builder/cardano_transactions_builder.rs @@ -1,5 +1,6 @@ use crate::entities::{ - BlockNumber, BlockRange, CardanoBlockWithTransactions, CardanoTransaction, SlotNumber, + BlockNumber, BlockNumberOffset, BlockRange, CardanoBlockWithTransactions, CardanoTransaction, + SlotNumber, }; /// Builder to easily build transactions with consistent values. @@ -218,7 +219,7 @@ impl CardanoTransactionsBuilder { let mut transactions_numbers: Vec<_> = (0..transactions_count) .map(|i| i + Self::FIRST_TRANSACTION_NUMBER) .collect(); - let mut block_number_offset = 0; + let mut block_number_offset = BlockNumberOffset(0); let mut current_block_range_index = 0; while match fill_behavior { From 7c5fcf9dd9632dc40f26b725d6b3b717308031a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Mon, 30 Mar 2026 12:18:04 +0200 Subject: [PATCH 03/19] refactor(common, aggregator): add BlockNumberOffset in CardanoBlocksTransactions SignedEntityType --- .../src/tools/certificates_hash_migrator.rs | 10 ++- .../tests/prove_blocks_transactions.rs | 18 +++-- .../src/entities/block_number_offset.rs | 28 +++++++ .../src/entities/signed_entity_config.rs | 9 ++- .../src/entities/signed_entity_type.rs | 78 ++++++++++++++----- .../signable_builder_service.rs | 12 ++- mithril-common/src/test/double/dummies.rs | 4 +- mithril-common/src/test/double/fake_data.rs | 6 +- ...no_blocks_transactions_single_signature.rs | 8 +- 9 files changed, 131 insertions(+), 42 deletions(-) diff --git a/mithril-aggregator/src/tools/certificates_hash_migrator.rs b/mithril-aggregator/src/tools/certificates_hash_migrator.rs index 66c6883df4e..2269a915ff1 100644 --- a/mithril-aggregator/src/tools/certificates_hash_migrator.rs +++ b/mithril-aggregator/src/tools/certificates_hash_migrator.rs @@ -295,8 +295,14 @@ mod test { SignedEntityType::CardanoTransactions(epoch, block_number) => { format!("cardano-transactions-{epoch}-{block_number}",) } - SignedEntityType::CardanoBlocksTransactions(epoch, block_number) => { - format!("cardano-blocks-transactions-{epoch}-{block_number}",) + SignedEntityType::CardanoBlocksTransactions( + epoch, + block_number, + block_number_offset, + ) => { + format!( + "cardano-blocks-transactions-{epoch}-{block_number}-{block_number_offset}", + ) } SignedEntityType::CardanoDatabase(beacon) => { format!( diff --git a/mithril-aggregator/tests/prove_blocks_transactions.rs b/mithril-aggregator/tests/prove_blocks_transactions.rs index b3e5501abaf..cc16fa019a2 100644 --- a/mithril-aggregator/tests/prove_blocks_transactions.rs +++ b/mithril-aggregator/tests/prove_blocks_transactions.rs @@ -3,8 +3,8 @@ use std::sync::Arc; use mithril_aggregator::{ServeCommandConfiguration, services::ProverService}; use mithril_common::{ entities::{ - BlockNumber, BlockRange, CardanoBlocksTransactionsSigningConfig, ChainPoint, Epoch, - ProtocolMessagePartKey, ProtocolParameters, SignedEntityType, + BlockNumber, BlockNumberOffset, BlockRange, CardanoBlocksTransactionsSigningConfig, + ChainPoint, Epoch, ProtocolMessagePartKey, ProtocolParameters, SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, TimePoint, }, temp_dir, @@ -37,7 +37,7 @@ async fn prove_blocks_transactions() { ), data_stores_directory: get_test_dir("prove_blocks_transactions"), cardano_blocks_transactions_signing_config: Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(5), }), ..ServeCommandConfiguration::new_sample(temp_dir!()) @@ -119,7 +119,11 @@ async fn prove_blocks_transactions() { .map(|s| s.signer_with_stake.clone().into()) .collect::>(), fixture.compute_and_encode_concatenation_aggregate_verification_key(), - SignedEntityType::CardanoBlocksTransactions(Epoch(1), BlockNumber(164)), + SignedEntityType::CardanoBlocksTransactions( + Epoch(1), + BlockNumber(164), + BlockNumberOffset(0) + ), ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -161,7 +165,11 @@ async fn prove_blocks_transactions() { .map(|s| s.signer_with_stake.clone().into()) .collect::>(), fixture.compute_and_encode_concatenation_aggregate_verification_key(), - SignedEntityType::CardanoBlocksTransactions(Epoch(1), BlockNumber(184)), + SignedEntityType::CardanoBlocksTransactions( + Epoch(1), + BlockNumber(184), + BlockNumberOffset(0) + ), ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); diff --git a/mithril-common/src/entities/block_number_offset.rs b/mithril-common/src/entities/block_number_offset.rs index 0a784b71cc5..68fe2f6a68e 100644 --- a/mithril-common/src/entities/block_number_offset.rs +++ b/mithril-common/src/entities/block_number_offset.rs @@ -59,6 +59,20 @@ impl TryFrom for i64 { } } +//TODO: clem, check if we still need those converter avec switching to BlockNumberOffset +impl From for BlockNumberOffset { + fn from(value: BlockNumber) -> Self { + BlockNumberOffset(value.0) + } +} + +//TODO: clem, check if we still need those converter avec switching to BlockNumberOffset +impl From for BlockNumber { + fn from(value: BlockNumberOffset) -> Self { + BlockNumber(value.0) + } +} + impl_add_to_wrapper!(BlockNumberOffset, u64); impl_sub_to_wrapper!(BlockNumberOffset, u64); impl_partial_eq_to_wrapper!(BlockNumberOffset, u64); @@ -185,4 +199,18 @@ mod tests { test_op_assign!(BlockNumberOffset(1), +=, 3 => BlockNumberOffset(4)); test_op_assign!(BlockNumberOffset(1), +=, &3 => BlockNumberOffset(4)); } + + #[test] + fn test_from_block_number() { + let block_number = BlockNumber(42); + let block_number_offset: BlockNumberOffset = block_number.into(); + assert_eq!(block_number_offset, BlockNumberOffset(42)); + } + + #[test] + fn test_from_block_number_offset() { + let block_number_offset = BlockNumberOffset(42); + let block_number: BlockNumber = block_number_offset.into(); + assert_eq!(block_number, BlockNumber(42)); + } } diff --git a/mithril-common/src/entities/signed_entity_config.rs b/mithril-common/src/entities/signed_entity_config.rs index 7d833453e94..81e33081c96 100644 --- a/mithril-common/src/entities/signed_entity_config.rs +++ b/mithril-common/src/entities/signed_entity_config.rs @@ -87,6 +87,7 @@ impl SignedEntityConfig { time_point.epoch, config .compute_block_number_to_be_signed(time_point.chain_point.block_number), + config.security_parameter.into(), //TODO: clem, remove into() conversion after BlockNumberOffset in the config ), None => { anyhow::bail!( @@ -183,7 +184,7 @@ impl CardanoBlocksTransactionsSigningConfig { /// `30..45` finish at 44 included, 45 is included in the next block range).* fn compute_block_number_to_be_signed( block_number: BlockNumber, - security_parameter: BlockNumber, + security_parameter: BlockNumber, //TODO: clem, switch to BlockNumberOffset step: BlockNumber, ) -> BlockNumber { let adjusted_step = std::cmp::max(step, BlockNumber(1)); @@ -196,7 +197,8 @@ fn compute_block_number_to_be_signed( #[cfg(test)] mod tests { use crate::entities::{ - CardanoDbBeacon, ChainPoint, Epoch, SignedEntityType, SlotNumber, TimePoint, + BlockNumberOffset, CardanoDbBeacon, ChainPoint, Epoch, SignedEntityType, SlotNumber, + TimePoint, }; use crate::test::{double::Dummy, double::fake_data}; @@ -708,7 +710,8 @@ mod tests { SignedEntityType::CardanoTransactions(beacon.epoch, chain_point.block_number - 1), SignedEntityType::CardanoBlocksTransactions( beacon.epoch, - chain_point.block_number - 1 + chain_point.block_number - 1, + BlockNumberOffset(0) ), ], signed_entity_types diff --git a/mithril-common/src/entities/signed_entity_type.rs b/mithril-common/src/entities/signed_entity_type.rs index 0a537f69496..04ae90f81e3 100644 --- a/mithril-common/src/entities/signed_entity_type.rs +++ b/mithril-common/src/entities/signed_entity_type.rs @@ -11,6 +11,7 @@ use strum::{AsRefStr, Display, EnumDiscriminants, EnumIter, EnumString, IntoEnum use crate::{ StdResult, crypto_helper::{TryFromBytes, TryToBytes}, + entities::BlockNumberOffset, }; use super::{BlockNumber, CardanoDbBeacon, Epoch}; @@ -70,7 +71,7 @@ pub enum SignedEntityType { CardanoTransactions(Epoch, BlockNumber), /// Cardano Blocks and Transactions - CardanoBlocksTransactions(Epoch, BlockNumber), + CardanoBlocksTransactions(Epoch, BlockNumber, BlockNumberOffset), } impl SignedEntityType { @@ -86,7 +87,7 @@ impl SignedEntityType { Self::CardanoStakeDistribution(e) | Self::MithrilStakeDistribution(e) | Self::CardanoTransactions(e, _) - | Self::CardanoBlocksTransactions(e, _) => *e, + | Self::CardanoBlocksTransactions(e, _, _) => *e, } } @@ -97,7 +98,7 @@ impl SignedEntityType { Self::CardanoStakeDistribution(epoch) => epoch.next(), Self::MithrilStakeDistribution(epoch) | Self::CardanoTransactions(epoch, _) - | Self::CardanoBlocksTransactions(epoch, _) => *epoch, + | Self::CardanoBlocksTransactions(epoch, _, _) => *epoch, } } @@ -122,14 +123,21 @@ impl SignedEntityType { Self::CardanoStakeDistribution(value) | Self::MithrilStakeDistribution(value) => { serde_json::to_string(value)? } - Self::CardanoTransactions(epoch, block_number) - | Self::CardanoBlocksTransactions(epoch, block_number) => { + Self::CardanoTransactions(epoch, block_number) => { let json = serde_json::json!({ "epoch": epoch, "block_number": block_number, }); serde_json::to_string(&json)? } + Self::CardanoBlocksTransactions(epoch, block_number, block_number_offset) => { + let json = serde_json::json!({ + "epoch": epoch, + "block_number": block_number, + "block_number_offset": block_number_offset, + }); + serde_json::to_string(&json)? + } }; Ok(value) @@ -164,10 +172,18 @@ impl SignedEntityType { hasher.update(&db_beacon.epoch.to_be_bytes()); hasher.update(&db_beacon.immutable_file_number.to_be_bytes()); } - SignedEntityType::CardanoTransactions(epoch, block_number) - | SignedEntityType::CardanoBlocksTransactions(epoch, block_number) => { + SignedEntityType::CardanoTransactions(epoch, block_number) => { + hasher.update(&epoch.to_be_bytes()); + hasher.update(&block_number.to_be_bytes()); + } + SignedEntityType::CardanoBlocksTransactions( + epoch, + block_number, + block_number_offset, + ) => { hasher.update(&epoch.to_be_bytes()); - hasher.update(&block_number.to_be_bytes()) + hasher.update(&block_number.to_be_bytes()); + hasher.update(&block_number_offset.to_be_bytes()); } } } @@ -330,8 +346,11 @@ mod tests { #[test] fn get_epoch_when_signed_entity_type_is_signed_for_cardano_blocks_transactions_return_epoch_stored_in_signed_entity_type() { - let signed_entity_type = - SignedEntityType::CardanoBlocksTransactions(Epoch(5), BlockNumber(77)); + let signed_entity_type = SignedEntityType::CardanoBlocksTransactions( + Epoch(5), + BlockNumber(77), + BlockNumberOffset(5), + ); assert_eq!( signed_entity_type.get_epoch_when_signed_entity_type_is_signed(), Epoch(5) @@ -400,19 +419,30 @@ mod tests { let reference_hash = hash(SignedEntityType::CardanoBlocksTransactions( Epoch(35), BlockNumber(77), + BlockNumberOffset(5), )); assert_ne!( reference_hash, hash(SignedEntityType::CardanoBlocksTransactions( Epoch(3), - BlockNumber(77) + BlockNumber(77), + BlockNumberOffset(5), )) ); assert_ne!( reference_hash, hash(SignedEntityType::CardanoBlocksTransactions( Epoch(35), - BlockNumber(98765) + BlockNumber(98765), + BlockNumberOffset(5), + )) + ); + assert_ne!( + reference_hash, + hash(SignedEntityType::CardanoBlocksTransactions( + Epoch(35), + BlockNumber(77), + BlockNumberOffset(123456), )) ); @@ -442,7 +472,8 @@ mod tests { )), hash(SignedEntityType::CardanoBlocksTransactions( Epoch(3), - BlockNumber(77) + BlockNumber(77), + BlockNumberOffset(5), )) ); @@ -483,8 +514,12 @@ mod tests { Some(Duration::from_secs(600)) ); assert_eq!( - SignedEntityType::CardanoBlocksTransactions(Epoch(1), BlockNumber(1)) - .get_open_message_timeout(), + SignedEntityType::CardanoBlocksTransactions( + Epoch(1), + BlockNumber(1), + BlockNumberOffset(1) + ) + .get_open_message_timeout(), Some(Duration::from_secs(600)) ); assert_eq!( @@ -510,12 +545,15 @@ mod tests { &cardano_transactions_json ); - let cardano_transactions_json = - SignedEntityType::CardanoBlocksTransactions(Epoch(35), BlockNumber(77)) - .get_json_beacon() - .unwrap(); + let cardano_transactions_json = SignedEntityType::CardanoBlocksTransactions( + Epoch(35), + BlockNumber(77), + BlockNumberOffset(5), + ) + .get_json_beacon() + .unwrap(); assert_same_json!( - r#"{"epoch":35,"block_number":77}"#, + r#"{"epoch":35,"block_number":77,"block_number_offset":5}"#, &cardano_transactions_json ); diff --git a/mithril-common/src/signable_builder/signable_builder_service.rs b/mithril-common/src/signable_builder/signable_builder_service.rs index 6dcceba88c6..cc9f09e7c5e 100644 --- a/mithril-common/src/signable_builder/signable_builder_service.rs +++ b/mithril-common/src/signable_builder/signable_builder_service.rs @@ -118,7 +118,8 @@ impl MithrilSignableBuilderService { .compute_protocol_message(*block_number) .await } - SignedEntityType::CardanoBlocksTransactions(_, block_number) => { + SignedEntityType::CardanoBlocksTransactions(_, block_number, _) => { + //TODO: clem, Sign the BlockNumberOffset in the compute_protocol_message of the signable builder implementation self.cardano_blocks_transactions_signable_builder .compute_protocol_message(*block_number) .await @@ -196,7 +197,7 @@ mod tests { use crate::{ StdResult, - entities::{BlockNumber, Epoch, ProtocolMessage}, + entities::{BlockNumber, BlockNumberOffset, Epoch, ProtocolMessage}, signable_builder::{Beacon as Beaconnable, MockSignableSeedBuilder, SignableBuilder}, test::TestLogger, }; @@ -346,8 +347,11 @@ mod tests { .once() .return_once(|_| Ok(ProtocolMessage::new())); let signable_builder_service = mock_container.build_signable_builder_service(); - let signed_entity_type = - SignedEntityType::CardanoBlocksTransactions(Epoch(6), BlockNumber(1010)); + let signed_entity_type = SignedEntityType::CardanoBlocksTransactions( + Epoch(6), + BlockNumber(1010), + BlockNumberOffset(15), + ); signable_builder_service .compute_protocol_message(signed_entity_type) diff --git a/mithril-common/src/test/double/dummies.rs b/mithril-common/src/test/double/dummies.rs index d0a13c5c706..caf9623122d 100644 --- a/mithril-common/src/test/double/dummies.rs +++ b/mithril-common/src/test/double/dummies.rs @@ -832,16 +832,18 @@ mod signable_builder { /// Create a dummy [SignedEntity] for [CardanoBlocksTransactionsSnapshot] entity fn dummy() -> Self { let block_number = crate::entities::BlockNumber(50); + let block_number_offset = crate::entities::BlockNumberOffset(15); SignedEntity { signed_entity_id: "snapshot-id-123".to_string(), signed_entity_type: SignedEntityType::CardanoBlocksTransactions( Epoch(5), block_number, + block_number_offset, ), certificate_id: "certificate-hash-123".to_string(), artifact: fake_data::cardano_blocks_transactions_snapshot( block_number, - crate::entities::BlockNumber(15), + block_number_offset, ), created_at: DateTime::parse_from_rfc3339("2023-01-19T13:43:05.618857482Z") .unwrap() diff --git a/mithril-common/src/test/double/fake_data.rs b/mithril-common/src/test/double/fake_data.rs index a51f7b2dacf..370ad392e13 100644 --- a/mithril-common/src/test/double/fake_data.rs +++ b/mithril-common/src/test/double/fake_data.rs @@ -6,7 +6,7 @@ use semver::Version; use crate::CardanoNetwork; use crate::crypto_helper::{self, KesPeriod, ProtocolMultiSignature}; use crate::entities::{ - self, AncillaryLocations, BlockNumber, CardanoDatabaseSnapshotArtifactData, + self, AncillaryLocations, BlockNumber, BlockNumberOffset, CardanoDatabaseSnapshotArtifactData, CertificateMetadata, CertificateSignature, CompressionAlgorithm, DigestsLocations, Epoch, ImmutablesLocations, LotteryIndex, ProtocolMessage, ProtocolMessagePartKey, SignedEntityType, SingleSignature, SlotNumber, StakeDistribution, StakeDistributionParty, @@ -248,7 +248,7 @@ pub fn cardano_transactions_snapshots(total: u64) -> Vec entities::CardanoBlocksTransactionsSnapshot { entities::CardanoBlocksTransactionsSnapshot::new( format!("merkleroot-{block_number_signed}"), @@ -262,7 +262,7 @@ pub fn cardano_blocks_transactions_snapshots( total: u64, ) -> Vec { (1..total + 1) - .map(|idx| cardano_blocks_transactions_snapshot(BlockNumber(idx), BlockNumber(15))) + .map(|idx| cardano_blocks_transactions_snapshot(BlockNumber(idx), BlockNumberOffset(15))) .collect() } diff --git a/mithril-signer/tests/create_cardano_blocks_transactions_single_signature.rs b/mithril-signer/tests/create_cardano_blocks_transactions_single_signature.rs index 8fd866b513a..c3e283755a2 100644 --- a/mithril-signer/tests/create_cardano_blocks_transactions_single_signature.rs +++ b/mithril-signer/tests/create_cardano_blocks_transactions_single_signature.rs @@ -3,7 +3,7 @@ mod test_extensions; use mithril_common::{ current_function, entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, ChainPoint, Epoch, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, ChainPoint, Epoch, SignedEntityType::{CardanoBlocksTransactions, MithrilStakeDistribution}, SignedEntityTypeDiscriminants, SlotNumber, TimePoint, }, @@ -43,7 +43,7 @@ async fn test_create_cardano_blocks_transactions_single_signature() { .is_init().await.unwrap() .change_network_configuration_for_aggregation(|conf| { conf.signed_entity_types_config.cardano_blocks_transactions = Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(5), }); }).await @@ -75,7 +75,7 @@ async fn test_create_cardano_blocks_transactions_single_signature() { .comment("signer signs a single signature for CardanoTransactions = ReadyToSign") .comment("Signing up to a partial block range - BlockNumber 99 (in range 90..105)") - .cycle_ready_to_sign_with_signature_registration(CardanoBlocksTransactions(Epoch(3), BlockNumber(99))).await.unwrap() + .cycle_ready_to_sign_with_signature_registration(CardanoBlocksTransactions(Epoch(3), BlockNumber(99), BlockNumberOffset(0))).await.unwrap() .comment("more cycles do not change the state = ReadyToSign") .cycle_ready_to_sign_without_signature_registration().await.unwrap() @@ -85,7 +85,7 @@ async fn test_create_cardano_blocks_transactions_single_signature() { .increase_block_number_and_slot_number(125, SlotNumber(135), BlockNumber(225)).await.unwrap() .cardano_chain_send_rollback(SlotNumber(135), BlockNumber(150)).await.unwrap() .comment("Signing up to a complete block range - BlockNumber 149") - .cycle_ready_to_sign_with_signature_registration(CardanoBlocksTransactions(Epoch(3), BlockNumber(149))).await.unwrap() + .cycle_ready_to_sign_with_signature_registration(CardanoBlocksTransactions(Epoch(3), BlockNumber(149), BlockNumberOffset(0))).await.unwrap() .comment("metrics should be correctly computed") .check_metrics(total_signer_registrations_expected, total_signature_registrations_expected).await.unwrap() From f1a5a7200f690061d6d4c52e4bfb4a084616a891 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Mon, 30 Mar 2026 12:18:04 +0200 Subject: [PATCH 04/19] feature(common, persistence, aggregator): use BlockNumberOffset in CardanoBlocksTransactions SignedEntityType --- .../mithril-persistence/src/database/hydrator.rs | 16 +++++++++++++--- .../src/database/record/signed_entity.rs | 6 +++++- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/internal/mithril-persistence/src/database/hydrator.rs b/internal/mithril-persistence/src/database/hydrator.rs index 04211106226..fa31e14f5c4 100644 --- a/internal/mithril-persistence/src/database/hydrator.rs +++ b/internal/mithril-persistence/src/database/hydrator.rs @@ -3,7 +3,8 @@ use serde::Deserialize; use mithril_common::entities::{ - BlockNumber, CardanoDbBeacon, Epoch, SignedEntityType, SignedEntityTypeDiscriminants, + BlockNumber, BlockNumberOffset, CardanoDbBeacon, Epoch, SignedEntityType, + SignedEntityTypeDiscriminants, }; use crate::sqlite::HydrationError; @@ -90,6 +91,7 @@ impl Hydrator { struct CardanoBlocksTransactionsBeacon { epoch: Epoch, block_number: BlockNumber, + block_number_offset: BlockNumberOffset, } let beacon: CardanoBlocksTransactionsBeacon = serde_json::from_str(beacon_str) @@ -98,7 +100,11 @@ impl Hydrator { "Invalid Beacon JSON in open_message.beacon: '{beacon_str}'. Error: {e}" )) })?; - SignedEntityType::CardanoBlocksTransactions(beacon.epoch, beacon.block_number) + SignedEntityType::CardanoBlocksTransactions( + beacon.epoch, + beacon.block_number, + beacon.block_number_offset, + ) } SignedEntityTypeDiscriminants::CardanoDatabase => { let beacon: CardanoDbBeacon = serde_json::from_str(beacon_str).map_err(|e| { @@ -132,7 +138,11 @@ mod tests { #[test] fn hydrate_cardano_blocks_transactions_signed_entity_type() { - let expected = SignedEntityType::CardanoBlocksTransactions(Epoch(37), BlockNumber(79)); + let expected = SignedEntityType::CardanoBlocksTransactions( + Epoch(37), + BlockNumber(79), + BlockNumberOffset(5), + ); let signed_entity = Hydrator::hydrate_signed_entity_type( SignedEntityTypeDiscriminants::CardanoBlocksTransactions.index(), &expected.get_json_beacon().unwrap(), diff --git a/mithril-aggregator/src/database/record/signed_entity.rs b/mithril-aggregator/src/database/record/signed_entity.rs index 2fef50fc868..3fe3a57b8cb 100644 --- a/mithril-aggregator/src/database/record/signed_entity.rs +++ b/mithril-aggregator/src/database/record/signed_entity.rs @@ -114,7 +114,11 @@ impl SignedEntityRecord { let artifact = fake_data::cardano_transactions_snapshot(block_number); get_id_and_artifact(&artifact) } - SignedEntityType::CardanoBlocksTransactions(_epoch, _block_number) => { + SignedEntityType::CardanoBlocksTransactions( + _epoch, + _block_number, + _block_number_offset, + ) => { panic!("Cardano blocks transactions is not supported yet") } }; From 7d26a77766a459fddc8849c3ca3efe827001297c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Mon, 30 Mar 2026 15:51:12 +0200 Subject: [PATCH 05/19] refactor(common, aggregator, signer): make git CardanoTransactionsSigningConfig using new the new BlockNumberOffset type --- internal/mithril-protocol-config/src/http.rs | 8 ++-- .../src/test/double/configuration_provider.rs | 10 ++--- mithril-aggregator/src/configuration.rs | 17 ++++---- .../insert_or_ignore_epoch_settings.rs | 10 ++--- .../src/services/epoch_service.rs | 8 ++-- mithril-aggregator/src/services/message.rs | 16 +++++--- .../network_configuration_provider.rs | 16 ++++---- .../tests/create_certificate.rs | 16 ++++++-- ...leader_signed_entity_config_propagation.rs | 8 ++-- mithril-common/src/entities/block_number.rs | 13 ++++++ .../src/entities/block_number_offset.rs | 13 ++++++ .../src/entities/signed_entity_config.rs | 40 ++++++++++--------- mithril-common/src/test/double/dummies.rs | 2 +- .../test_extensions/state_machine_tester.rs | 8 ++-- 14 files changed, 115 insertions(+), 70 deletions(-) diff --git a/internal/mithril-protocol-config/src/http.rs b/internal/mithril-protocol-config/src/http.rs index 2578c12aff4..627fc7ee277 100644 --- a/internal/mithril-protocol-config/src/http.rs +++ b/internal/mithril-protocol-config/src/http.rs @@ -110,8 +110,8 @@ mod tests { use std::sync::Arc; use mithril_common::entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, CardanoTransactionsSigningConfig, - ProtocolParameters, SignedEntityTypeDiscriminants, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, + CardanoTransactionsSigningConfig, ProtocolParameters, SignedEntityTypeDiscriminants, }; use mithril_common::messages::ProtocolConfigurationMessage; use mithril_common::test::double::Dummy; @@ -131,7 +131,7 @@ mod tests { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(11), + security_parameter: BlockNumberOffset(11), step: BlockNumber(110), }, ), @@ -199,7 +199,7 @@ mod tests { .signed_entity_types_config .cardano_blocks_transactions, Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(11), + security_parameter: BlockNumberOffset(11), step: BlockNumber(110), }) ); diff --git a/internal/mithril-protocol-config/src/test/double/configuration_provider.rs b/internal/mithril-protocol-config/src/test/double/configuration_provider.rs index 8dc3403e0fa..017e07a2317 100644 --- a/internal/mithril-protocol-config/src/test/double/configuration_provider.rs +++ b/internal/mithril-protocol-config/src/test/double/configuration_provider.rs @@ -72,8 +72,8 @@ impl MithrilNetworkConfigurationProvider for FakeMithrilNetworkConfigurationProv #[cfg(test)] mod tests { use mithril_common::entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, CardanoTransactionsSigningConfig, - Epoch, ProtocolParameters, SignedEntityTypeDiscriminants, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, + CardanoTransactionsSigningConfig, Epoch, ProtocolParameters, SignedEntityTypeDiscriminants, }; use crate::{ @@ -98,7 +98,7 @@ mod tests { }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { step: BlockNumber(11), - security_parameter: BlockNumber(111), + security_parameter: BlockNumberOffset(111), }), }, }; @@ -117,7 +117,7 @@ mod tests { }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { step: BlockNumber(22), - security_parameter: BlockNumber(222), + security_parameter: BlockNumberOffset(222), }), }, }; @@ -136,7 +136,7 @@ mod tests { }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { step: BlockNumber(33), - security_parameter: BlockNumber(333), + security_parameter: BlockNumberOffset(333), }), }, }; diff --git a/mithril-aggregator/src/configuration.rs b/mithril-aggregator/src/configuration.rs index 68a6a096bb3..ec380c88448 100644 --- a/mithril-aggregator/src/configuration.rs +++ b/mithril-aggregator/src/configuration.rs @@ -10,9 +10,10 @@ use mithril_cardano_node_chain::chain_observer::ChainObserverType; use mithril_cli_helper::{register_config_value, serde_deserialization}; use mithril_common::crypto_helper::{ManifestSigner, ProtocolGenesisSigner}; use mithril_common::entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, CardanoTransactionsSigningConfig, - CompressionAlgorithm, ConfigSecret, HexEncodedGenesisVerificationKey, HexEncodedKey, - ProtocolParameters, SignedEntityConfig, SignedEntityTypeDiscriminants, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, + CardanoTransactionsSigningConfig, CompressionAlgorithm, ConfigSecret, + HexEncodedGenesisVerificationKey, HexEncodedKey, ProtocolParameters, SignedEntityConfig, + SignedEntityTypeDiscriminants, }; use mithril_common::{AggregateSignatureType, CardanoNetwork, StdResult}; use mithril_dmq::DmqNetwork; @@ -832,7 +833,7 @@ impl ServeCommandConfiguration { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(120), + security_parameter: BlockNumberOffset(120), step: BlockNumber(15), }, ), @@ -1199,7 +1200,7 @@ impl Default for DefaultConfiguration { step: BlockNumber(120), }, cardano_blocks_transactions_signing_config: CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(3000), + security_parameter: BlockNumberOffset(3000), step: BlockNumber(120), }, preload_security_parameter: 2160, @@ -1543,6 +1544,8 @@ mod test { } mod get_leader_aggregator_epoch_settings_configuration { + use mithril_common::entities::BlockNumberOffset; + use super::*; #[test] @@ -1675,7 +1678,7 @@ mod test { ), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(10), + security_parameter: BlockNumberOffset(10), step: BlockNumber(30), }, ), @@ -1687,7 +1690,7 @@ mod test { assert_eq!( Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(10), + security_parameter: BlockNumberOffset(10), step: BlockNumber(30), }), epoch_settings.cardano_blocks_transactions_signing_config diff --git a/mithril-aggregator/src/database/query/epoch_settings/insert_or_ignore_epoch_settings.rs b/mithril-aggregator/src/database/query/epoch_settings/insert_or_ignore_epoch_settings.rs index 11304d2a0f4..5a46d2e4d79 100644 --- a/mithril-aggregator/src/database/query/epoch_settings/insert_or_ignore_epoch_settings.rs +++ b/mithril-aggregator/src/database/query/epoch_settings/insert_or_ignore_epoch_settings.rs @@ -56,8 +56,8 @@ impl Query for InsertOrIgnoreEpochSettingsQuery { #[cfg(test)] mod tests { use mithril_common::entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, CardanoTransactionsSigningConfig, - Epoch, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, + CardanoTransactionsSigningConfig, Epoch, }; use mithril_common::test::double::fake_data; use mithril_persistence::sqlite::ConnectionExtensions; @@ -80,7 +80,7 @@ mod tests { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(48), + security_parameter: BlockNumberOffset(48), step: BlockNumber(96), }, ), @@ -121,7 +121,7 @@ mod tests { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(48), + security_parameter: BlockNumberOffset(48), step: BlockNumber(96), }, ), @@ -141,7 +141,7 @@ mod tests { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(321), + security_parameter: BlockNumberOffset(321), step: BlockNumber(987), }, ), diff --git a/mithril-aggregator/src/services/epoch_service.rs b/mithril-aggregator/src/services/epoch_service.rs index b3c9def4268..6c18aad7c57 100644 --- a/mithril-aggregator/src/services/epoch_service.rs +++ b/mithril-aggregator/src/services/epoch_service.rs @@ -808,8 +808,8 @@ mod tests { use mithril_cardano_node_chain::test::double::FakeChainObserver; use mithril_common::entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, CardanoTransactionsSigningConfig, - Stake, StakeDistribution, SupportedEra, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, + CardanoTransactionsSigningConfig, Stake, StakeDistribution, SupportedEra, }; use mithril_common::test::{ builder::{MithrilFixture, MithrilFixtureBuilder, StakeDistributionGenerationMethod}, @@ -1108,7 +1108,7 @@ mod tests { }); let cardano_blocks_transactions_signing_config = Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(45), + security_parameter: BlockNumberOffset(45), step: BlockNumber(999), }); @@ -1327,7 +1327,7 @@ mod tests { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(111), + security_parameter: BlockNumberOffset(111), step: BlockNumber(1111), }, ), diff --git a/mithril-aggregator/src/services/message.rs b/mithril-aggregator/src/services/message.rs index f415850adeb..d30c4de8a46 100644 --- a/mithril-aggregator/src/services/message.rs +++ b/mithril-aggregator/src/services/message.rs @@ -812,8 +812,8 @@ mod tests { use super::*; use mithril_common::entities::{ - CardanoBlocksTransactionsSigningConfig, CardanoTransactionsSigningConfig, - ProtocolParameters, + BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, + CardanoTransactionsSigningConfig, ProtocolParameters, }; use crate::entities::AggregatorEpochSettings; @@ -829,7 +829,7 @@ mod tests { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(20), + security_parameter: BlockNumberOffset(20), step: BlockNumber(30), }, ), @@ -859,7 +859,7 @@ mod tests { assert_eq!( message.cardano_blocks_transactions_signing_config, Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(20), + security_parameter: BlockNumberOffset(20), step: BlockNumber(30) }) ); @@ -1502,6 +1502,8 @@ mod tests { } } mod cardano_blocks_transactions { + use mithril_common::entities::BlockNumberOffset; + use super::*; #[tokio::test] @@ -1511,11 +1513,12 @@ mod tests { signed_entity_type: SignedEntityType::CardanoBlocksTransactions( Epoch(18), BlockNumber(120), + BlockNumberOffset(15), ), certificate_id: "cert_id".to_string(), artifact: serde_json::to_string(&fake_data::cardano_blocks_transactions_snapshot( BlockNumber(1), - BlockNumber(15), + BlockNumberOffset(15), )) .unwrap(), created_at: Default::default(), @@ -1557,12 +1560,13 @@ mod tests { signed_entity_type: SignedEntityType::CardanoBlocksTransactions( Epoch(18), BlockNumber(120), + BlockNumberOffset(15), ), certificate_id: "cert_id-1".to_string(), artifact: serde_json::to_string( &fake_data::cardano_blocks_transactions_snapshot( BlockNumber(1), - BlockNumber(15), + BlockNumberOffset(15), ), ) .unwrap(), diff --git a/mithril-aggregator/src/services/network_configuration_provider.rs b/mithril-aggregator/src/services/network_configuration_provider.rs index 25677127d0f..b17b33fcdc2 100644 --- a/mithril-aggregator/src/services/network_configuration_provider.rs +++ b/mithril-aggregator/src/services/network_configuration_provider.rs @@ -125,8 +125,8 @@ impl MithrilNetworkConfigurationProvider for LocalMithrilNetworkConfigurationPro mod tests { use mithril_common::{ entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, CardanoTransactionsSigningConfig, - ProtocolParameters, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, + CardanoTransactionsSigningConfig, ProtocolParameters, }, test::double::Dummy, }; @@ -275,7 +275,7 @@ mod tests { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(33), + security_parameter: BlockNumberOffset(33), step: BlockNumber(330), }, ), @@ -298,7 +298,7 @@ mod tests { ), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(11), + security_parameter: BlockNumberOffset(11), step: BlockNumber(110), }, ), @@ -316,7 +316,7 @@ mod tests { ), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(22), + security_parameter: BlockNumberOffset(22), step: BlockNumber(220), }, ), @@ -340,7 +340,7 @@ mod tests { step: BlockNumber(10), }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(11), + security_parameter: BlockNumberOffset(11), step: BlockNumber(110), },), }, @@ -358,7 +358,7 @@ mod tests { step: BlockNumber(20), }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(22), + security_parameter: BlockNumberOffset(22), step: BlockNumber(220), },), }, @@ -376,7 +376,7 @@ mod tests { step: BlockNumber(30), }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(33), + security_parameter: BlockNumberOffset(33), step: BlockNumber(330), },), }, diff --git a/mithril-aggregator/tests/create_certificate.rs b/mithril-aggregator/tests/create_certificate.rs index 32fa022212c..86095f11a2c 100644 --- a/mithril-aggregator/tests/create_certificate.rs +++ b/mithril-aggregator/tests/create_certificate.rs @@ -3,7 +3,7 @@ mod test_extensions; use mithril_aggregator::ServeCommandConfiguration; use mithril_common::{ entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, CardanoDbBeacon, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, CardanoDbBeacon, CardanoTransactionsSigningConfig, ChainPoint, Epoch, ProtocolParameters, SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, StakeDistributionParty, TimePoint, }, @@ -38,7 +38,7 @@ async fn create_certificate() { step: BlockNumber(30), }), cardano_blocks_transactions_signing_config: Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(24), }), ..ServeCommandConfiguration::new_sample(temp_dir!()) @@ -197,7 +197,11 @@ async fn create_certificate() { .map(|s| s.signer_with_stake.clone().into()) .collect::>(), fixture.compute_and_encode_concatenation_aggregate_verification_key(), - SignedEntityType::CardanoBlocksTransactions(Epoch(1), BlockNumber(167)), + SignedEntityType::CardanoBlocksTransactions( + Epoch(1), + BlockNumber(167), + BlockNumberOffset(0) + ), ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -260,7 +264,11 @@ async fn create_certificate() { .map(|s| s.signer_with_stake.clone().into()) .collect::>(), fixture.compute_and_encode_concatenation_aggregate_verification_key(), - SignedEntityType::CardanoBlocksTransactions(Epoch(1), BlockNumber(143)), + SignedEntityType::CardanoBlocksTransactions( + Epoch(1), + BlockNumber(143), + BlockNumberOffset(0) + ), ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); diff --git a/mithril-aggregator/tests/leader_signed_entity_config_propagation.rs b/mithril-aggregator/tests/leader_signed_entity_config_propagation.rs index d81db72f8c3..60e74f68876 100644 --- a/mithril-aggregator/tests/leader_signed_entity_config_propagation.rs +++ b/mithril-aggregator/tests/leader_signed_entity_config_propagation.rs @@ -5,9 +5,9 @@ use mithril_cardano_node_chain::chain_observer::ChainObserver; use mithril_common::{ current_function, entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, CardanoTransactionsSigningConfig, - ChainPoint, Epoch, ProtocolParameters, SignedEntityTypeDiscriminants, SlotNumber, - TimePoint, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, + CardanoTransactionsSigningConfig, ChainPoint, Epoch, ProtocolParameters, + SignedEntityTypeDiscriminants, SlotNumber, TimePoint, }, temp_dir, test::builder::{MithrilFixture, MithrilFixtureBuilder}, @@ -48,7 +48,7 @@ async fn leader_signed_entity_config_propagation() { step: BlockNumber(30), }), cardano_blocks_transactions_signing_config: Some(CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(30), }), ..ServeCommandConfiguration::new_sample(temp_dir!()) diff --git a/mithril-common/src/entities/block_number.rs b/mithril-common/src/entities/block_number.rs index 842333135a9..ab34ccb2483 100644 --- a/mithril-common/src/entities/block_number.rs +++ b/mithril-common/src/entities/block_number.rs @@ -70,6 +70,14 @@ impl AddAssign for BlockNumber { } } +impl Sub for BlockNumber { + type Output = Self; + + fn sub(self, rhs: BlockNumberOffset) -> Self::Output { + self - *rhs + } +} + #[cfg(test)] mod tests { use crate::entities::arithmetic_operation_wrapper::tests::test_op_assign; @@ -222,6 +230,11 @@ mod tests { assert_eq!(BlockNumber(4), BlockNumber(1) + BlockNumberOffset(3)); } + #[test] + fn test_sub_block_number_offset() { + assert_eq!(BlockNumber(1), BlockNumber(4) - BlockNumberOffset(3)); + } + #[test] fn test_add_asign_block_number_offset() { test_op_assign!(BlockNumber(1), +=, BlockNumberOffset(3) => BlockNumber(4)); diff --git a/mithril-common/src/entities/block_number_offset.rs b/mithril-common/src/entities/block_number_offset.rs index 68fe2f6a68e..d90fdf55567 100644 --- a/mithril-common/src/entities/block_number_offset.rs +++ b/mithril-common/src/entities/block_number_offset.rs @@ -85,6 +85,14 @@ impl Add for BlockNumberOffset { } } +impl Sub for BlockNumberOffset { + type Output = Self; + + fn sub(self, rhs: BlockNumber) -> Self::Output { + self - *rhs + } +} + impl AddAssign for BlockNumberOffset { fn add_assign(&mut self, rhs: BlockNumber) { *self = *self + rhs; @@ -192,6 +200,11 @@ mod tests { assert_eq!(BlockNumberOffset(4), BlockNumberOffset(1) + BlockNumber(3)); } + #[test] + fn test_sub_block_number() { + assert_eq!(BlockNumberOffset(3), BlockNumberOffset(4) - BlockNumber(1)); + } + #[test] fn test_add_asign_block_number() { test_op_assign!(BlockNumberOffset(1), +=, BlockNumber(3) => BlockNumberOffset(4)); diff --git a/mithril-common/src/entities/signed_entity_config.rs b/mithril-common/src/entities/signed_entity_config.rs index 81e33081c96..95bd1bbb517 100644 --- a/mithril-common/src/entities/signed_entity_config.rs +++ b/mithril-common/src/entities/signed_entity_config.rs @@ -4,8 +4,8 @@ use serde::{Deserialize, Serialize}; use crate::StdResult; use crate::entities::{ - BlockNumber, BlockRange, CardanoDbBeacon, SignedEntityType, SignedEntityTypeDiscriminants, - TimePoint, + BlockNumber, BlockNumberOffset, BlockRange, CardanoDbBeacon, SignedEntityType, + SignedEntityTypeDiscriminants, TimePoint, }; /// Convert [TimePoint] to [SignedEntityType] and list allowed signed entity types and @@ -87,7 +87,7 @@ impl SignedEntityConfig { time_point.epoch, config .compute_block_number_to_be_signed(time_point.chain_point.block_number), - config.security_parameter.into(), //TODO: clem, remove into() conversion after BlockNumberOffset in the config + config.security_parameter, ), None => { anyhow::bail!( @@ -142,7 +142,11 @@ impl CardanoTransactionsSigningConfig { // We can't have a step lower than the block range length. let adjusted_step = std::cmp::max(adjusted_step, BlockRange::LENGTH); - compute_block_number_to_be_signed(block_number, self.security_parameter, adjusted_step) + compute_block_number_to_be_signed( + block_number, + self.security_parameter.into(), + adjusted_step, + ) } } @@ -150,7 +154,7 @@ impl CardanoTransactionsSigningConfig { #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] pub struct CardanoBlocksTransactionsSigningConfig { /// Number of blocks to discard from the tip of the chain when importing blocks and transactions. - pub security_parameter: BlockNumber, + pub security_parameter: BlockNumberOffset, /// The number of blocks between signature of the blocks and transactions. /// @@ -184,7 +188,7 @@ impl CardanoBlocksTransactionsSigningConfig { /// `30..45` finish at 44 included, 45 is included in the next block range).* fn compute_block_number_to_be_signed( block_number: BlockNumber, - security_parameter: BlockNumber, //TODO: clem, switch to BlockNumberOffset + security_parameter: BlockNumberOffset, step: BlockNumber, ) -> BlockNumber { let adjusted_step = std::cmp::max(step, BlockNumber(1)); @@ -223,7 +227,7 @@ mod tests { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(1), + security_parameter: BlockNumberOffset(1), step: BlockNumber(30), }, ), @@ -447,7 +451,7 @@ mod tests { // **block_number = ((tip.block_number - k') / n) × n** let block_number = BlockNumber(105); let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(15), }; // ((105 - 0).div_euclid(15) * 15) - 1 = (105.div_euclid(15) * 15) - 1 = 7 * 15 - 1 = 104 @@ -461,7 +465,7 @@ mod tests { fn compute_with_security_parameter_lower_than_block_number() { let block_number = BlockNumber(100); let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(5), + security_parameter: BlockNumberOffset(5), step: BlockNumber(15), }; // ((100 - 5).div_euclid(15) * 15) - 1 = (95.div_euclid(15) * 15) - 1 = 6 * 15 - 1 = 89 @@ -475,7 +479,7 @@ mod tests { fn when_security_parameter_plus_step_equal_to_block_number_return_step_minus_1() { let block_number = BlockNumber(100); let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(85), + security_parameter: BlockNumberOffset(85), step: BlockNumber(15), }; // ((100 - 85).div_euclid(15) * 15) - 1 = (15.div_euclid(15) * 15) - 1 = 1 * 15 - 1 = 14 @@ -489,7 +493,7 @@ mod tests { fn when_step_higher_than_block_number_return_0() { let block_number = BlockNumber(29); let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(30), }; assert_eq!( @@ -502,7 +506,7 @@ mod tests { fn should_not_overlow_on_security_parameter() { let block_number = BlockNumber(50); let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(100), + security_parameter: BlockNumberOffset(100), step: BlockNumber(30), }; assert_eq!( @@ -515,7 +519,7 @@ mod tests { fn can_use_step_right_below_than_a_multiple_of_a_block_range_length() { let block_number = BlockNumber(150); let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockRange::LENGTH - 1, }; // ((150 - 0).div_euclid(15 - 1) * (15 - 1)) - 1 = (150.div_euclid(14) * 14) - 1 = 10 * 14 - 1 = 139 @@ -529,7 +533,7 @@ mod tests { fn can_use_step_right_after_a_multiple_of_a_block_range_length() { let block_number = BlockNumber(150); let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockRange::LENGTH + 1, }; // ((150 - 0).div_euclid(15 + 1) * (15 + 1)) - 1 = (150.div_euclid(16) * 16) - 1 = 9 * 16 - 1 = 143 @@ -543,7 +547,7 @@ mod tests { fn can_use_step_higher_than_a_block_range_length_and_out_not_equal_to_a_range_boundaries() { let block_number = BlockNumber(150); let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockRange::LENGTH + 6, }; // ((150 - 0).div_euclid(15 + 6) * (15 + 6)) - 1 = (150.div_euclid(21) * 21) - 1 = 7 * 21 - 1 = 146 @@ -557,7 +561,7 @@ mod tests { fn can_use_step_lower_than_a_block_range_length_and_out_not_equal_to_a_range_boundaries() { let block_number = BlockNumber(150); let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockRange::LENGTH - 6, }; // ((150 - 0).div_euclid(15 - 6) * (15 - 6)) - 1 = (150.div_euclid(9) * 9) - 1 = 16 * 9 - 1 = 143 @@ -571,7 +575,7 @@ mod tests { fn can_use_a_step_and_block_number_both_below_block_range_length() { let block_number = BlockRange::LENGTH - 1; let signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockRange::LENGTH - 10, }; // ((15 - 1).div_euclid(15 - 10) * (15 - 10)) - 1 = (14.div_euclid(5) * 5) - 1 = 2 * 5 - 1 = 9 @@ -695,7 +699,7 @@ mod tests { }), cardano_blocks_transactions_signing_config: Some( CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(15), }, ), diff --git a/mithril-common/src/test/double/dummies.rs b/mithril-common/src/test/double/dummies.rs index caf9623122d..3ca25d63588 100644 --- a/mithril-common/src/test/double/dummies.rs +++ b/mithril-common/src/test/double/dummies.rs @@ -65,7 +65,7 @@ mod entities { /// Return a dummy [CardanoBlocksTransactionsSigningConfig] (test-only). fn dummy() -> Self { Self { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(15), } } diff --git a/mithril-signer/tests/test_extensions/state_machine_tester.rs b/mithril-signer/tests/test_extensions/state_machine_tester.rs index a96fd291069..b77687265bf 100644 --- a/mithril-signer/tests/test_extensions/state_machine_tester.rs +++ b/mithril-signer/tests/test_extensions/state_machine_tester.rs @@ -35,9 +35,9 @@ use mithril_common::{ api_version::APIVersionProvider, crypto_helper::{KesSigner, KesSignerStandard}, entities::{ - BlockNumber, CardanoBlocksTransactionsSigningConfig, CardanoTransactionsSigningConfig, - ChainPoint, Epoch, SignedEntityType, SignedEntityTypeDiscriminants, SignerWithStake, - SlotNumber, SupportedEra, TimePoint, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSigningConfig, + CardanoTransactionsSigningConfig, ChainPoint, Epoch, SignedEntityType, + SignedEntityTypeDiscriminants, SignerWithStake, SlotNumber, SupportedEra, TimePoint, }, signable_builder::{ CardanoBlocksTransactionsSignableBuilder, CardanoStakeDistributionSignableBuilder, @@ -161,7 +161,7 @@ impl StateMachineTester { step: BlockNumber(30), }; let cardano_blocks_transactions_signing_config = CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(30), }; let fake_aggregator = Arc::new(FakeAggregator::new(ticker_service.clone())); From 87e5b238108ed7b03b53cd55a11759ddc2f50268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Tue, 31 Mar 2026 10:15:47 +0200 Subject: [PATCH 06/19] refactor(aggregagor, common): update signable builder beacon with tuple containing BlockNumber and BlockNumberOffset, remove usage of mithril_network_configuration_provider --- .../cardano_blocks_transactions.rs | 172 ++++-------------- .../builder/protocol/artifacts.rs | 10 +- .../src/services/signed_entity.rs | 53 +++--- .../src/signable_builder/interface.rs | 8 +- 4 files changed, 73 insertions(+), 170 deletions(-) diff --git a/mithril-aggregator/src/artifact_builder/cardano_blocks_transactions.rs b/mithril-aggregator/src/artifact_builder/cardano_blocks_transactions.rs index 35efa13f52f..58e1382294f 100644 --- a/mithril-aggregator/src/artifact_builder/cardano_blocks_transactions.rs +++ b/mithril-aggregator/src/artifact_builder/cardano_blocks_transactions.rs @@ -1,48 +1,40 @@ use std::sync::Arc; -use anyhow::{Context, anyhow}; +use crate::services::ProverService; +use anyhow::Context; use async_trait::async_trait; use mithril_common::{ StdResult, entities::{ - BlockNumber, CardanoBlocksTransactionsSnapshot, Certificate, ProtocolMessagePartKey, - SignedEntityType, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSnapshot, Certificate, + ProtocolMessagePartKey, SignedEntityType, }, }; -use mithril_protocol_config::interface::MithrilNetworkConfigurationProvider; - -use crate::services::ProverService; use super::ArtifactBuilder; /// A [CardanoBlocksTransactionsArtifact] builder pub struct CardanoBlocksTransactionsArtifactBuilder { prover_service: Arc, - mithril_network_configuration_provider: Arc, } impl CardanoBlocksTransactionsArtifactBuilder { /// CardanoBlocksTransactions artifact builder factory - pub fn new( - prover_service: Arc, - mithril_network_configuration_provider: Arc, - ) -> Self { - Self { - prover_service, - mithril_network_configuration_provider, - } + pub fn new(prover_service: Arc) -> Self { + Self { prover_service } } } #[async_trait] -impl ArtifactBuilder +impl ArtifactBuilder<(BlockNumber, BlockNumberOffset), CardanoBlocksTransactionsSnapshot> for CardanoBlocksTransactionsArtifactBuilder { async fn compute_artifact( &self, - beacon: BlockNumber, + beacon: (BlockNumber, BlockNumberOffset), certificate: &Certificate, ) -> StdResult { + let (block_number, block_number_offset) = beacon; let merkle_root = certificate .protocol_message .get_message_part(&ProtocolMessagePartKey::CardanoBlocksTransactionsMerkleRoot) @@ -50,32 +42,16 @@ impl ArtifactBuilder .with_context(|| { format!( "Can not compute CardanoBlocksTransactionsSnapshot artifact for signed_entity: {:?}", - SignedEntityType::CardanoBlocksTransactions(certificate.epoch, beacon) + SignedEntityType::CardanoBlocksTransactions(certificate.epoch, block_number, block_number_offset) ) })?; - self.prover_service.compute_cache(beacon).await?; - - let network_configuration = self - .mithril_network_configuration_provider - .get_network_configuration(certificate.epoch) - .await?; - - let cardano_blocks_transactions = network_configuration - .configuration_for_aggregation - .signed_entity_types_config - .cardano_blocks_transactions; - - match cardano_blocks_transactions { - Some(cardano_blocks_transactions) => Ok(CardanoBlocksTransactionsSnapshot::new( - merkle_root.to_string(), - beacon, - cardano_blocks_transactions.security_parameter, - )), - None => Err(anyhow!( - "There is no cardano blocks and transactions signing configuration for aggregation for Epoch {}", - certificate.epoch - )), - } + self.prover_service.compute_cache(block_number).await?; + + Ok(CardanoBlocksTransactionsSnapshot::new( + merkle_root.to_string(), + block_number, + block_number_offset.into(), //TODO: clem to de want to use BlockNumberOffset for CardanoBlocksTransactionsSnapshot ? + )) } } @@ -83,57 +59,19 @@ impl ArtifactBuilder mod tests { use crate::services::MockProverService; use mithril_common::{ - entities::{CardanoBlocksTransactionsSigningConfig, Epoch, ProtocolMessage}, - test::double::{Dummy, fake_data}, - }; - use mithril_protocol_config::model::{ - MithrilNetworkConfiguration, MithrilNetworkConfigurationForEpoch, - SignedEntityTypeConfiguration, + entities::{BlockNumberOffset, ProtocolMessage}, + test::double::fake_data, }; - use mockall::mock; use super::*; - mock! { - pub MithrilNetworkConfigurationProvider {} - - #[async_trait] - impl MithrilNetworkConfigurationProvider for MithrilNetworkConfigurationProvider { - async fn get_network_configuration(&self, epoch: Epoch) -> StdResult; - } - } - #[tokio::test] async fn should_compute_valid_artifact_with_merkleroot() { let mut mock_prover = MockProverService::new(); mock_prover.expect_compute_cache().returning(|_| Ok(())); - let mut mock_mithril_network_configuration_provider = - MockMithrilNetworkConfigurationProvider::new(); - mock_mithril_network_configuration_provider - .expect_get_network_configuration() - .times(1) - .returning(|_| { - Ok(MithrilNetworkConfiguration { - configuration_for_aggregation: MithrilNetworkConfigurationForEpoch { - signed_entity_types_config: SignedEntityTypeConfiguration { - cardano_blocks_transactions: Some( - CardanoBlocksTransactionsSigningConfig { - security_parameter: BlockNumber(42), - ..Dummy::dummy() - }, - ), - ..Dummy::dummy() - }, - ..Dummy::dummy() - }, - ..Dummy::dummy() - }) - }); + let cardano_blocks_transactions_artifact_builder = - CardanoBlocksTransactionsArtifactBuilder::new( - Arc::new(mock_prover), - Arc::new(mock_mithril_network_configuration_provider), - ); + CardanoBlocksTransactionsArtifactBuilder::new(Arc::new(mock_prover)); let certificate_with_merkle_root = { let mut protocol_message = ProtocolMessage::new(); @@ -146,18 +84,22 @@ mod tests { ..fake_data::certificate("certificate-123".to_string()) } }; - let beacon = BlockNumber(100); + let block_number = BlockNumber(100); + let block_number_offset = BlockNumberOffset(42); let artifact = cardano_blocks_transactions_artifact_builder - .compute_artifact(beacon, &certificate_with_merkle_root) + .compute_artifact( + (block_number, block_number_offset), + &certificate_with_merkle_root, + ) .await .unwrap(); assert_eq!( CardanoBlocksTransactionsSnapshot::new( "merkleroot".to_string(), - beacon, - BlockNumber(42) + block_number, + block_number_offset.into(), //TODO: clem, do we want to use BlockNumberOffset in CardanoBlocksTransactionsSnapshot ? ), artifact ); @@ -169,66 +111,18 @@ mod tests { mock_prover.expect_compute_cache().returning(|_| Ok(())); let cardano_blocks_transactions_artifact_builder = - CardanoBlocksTransactionsArtifactBuilder::new( - Arc::new(mock_prover), - Arc::new(MockMithrilNetworkConfigurationProvider::new()), - ); + CardanoBlocksTransactionsArtifactBuilder::new(Arc::new(mock_prover)); let certificate_without_merkle_root = Certificate { protocol_message: ProtocolMessage::new(), ..fake_data::certificate("certificate-123".to_string()) }; - let beacon = BlockNumber(100); + let block_number = BlockNumber(100); + let block_number_offset = BlockNumberOffset(42); cardano_blocks_transactions_artifact_builder - .compute_artifact(beacon, &certificate_without_merkle_root) + .compute_artifact((block_number, block_number_offset), &certificate_without_merkle_root) .await .expect_err("The artifact building must fail since there is no CardanoBlocksTransactionsMerkleRoot part in its message."); } - - #[tokio::test] - async fn should_fail_to_compute_artifact_without_cardano_blocks_transactions() { - let mut mock_prover = MockProverService::new(); - mock_prover.expect_compute_cache().returning(|_| Ok(())); - let mut mock_mithril_network_configuration_provider = - MockMithrilNetworkConfigurationProvider::new(); - mock_mithril_network_configuration_provider - .expect_get_network_configuration() - .times(1) - .returning(|_| { - Ok(MithrilNetworkConfiguration { - configuration_for_aggregation: MithrilNetworkConfigurationForEpoch { - signed_entity_types_config: SignedEntityTypeConfiguration { - cardano_blocks_transactions: None, - ..Dummy::dummy() - }, - ..Dummy::dummy() - }, - ..Dummy::dummy() - }) - }); - let cardano_blocks_transactions_artifact_builder = - CardanoBlocksTransactionsArtifactBuilder::new( - Arc::new(mock_prover), - Arc::new(mock_mithril_network_configuration_provider), - ); - - let certificate_with_merkle_root = { - let mut protocol_message = ProtocolMessage::new(); - protocol_message.set_message_part( - ProtocolMessagePartKey::CardanoBlocksTransactionsMerkleRoot, - "merkleroot".to_string(), - ); - Certificate { - protocol_message, - ..fake_data::certificate("certificate-123".to_string()) - } - }; - let beacon = BlockNumber(100); - - cardano_blocks_transactions_artifact_builder - .compute_artifact(beacon, &certificate_with_merkle_root) - .await - .expect_err("The artifact building must fail since there is no CardanoBlocksTransactions in MithrilNetworkConfiguration."); - } } diff --git a/mithril-aggregator/src/dependency_injection/builder/protocol/artifacts.rs b/mithril-aggregator/src/dependency_injection/builder/protocol/artifacts.rs index 6a864d55a84..0f300cf6c1b 100644 --- a/mithril-aggregator/src/dependency_injection/builder/protocol/artifacts.rs +++ b/mithril-aggregator/src/dependency_injection/builder/protocol/artifacts.rs @@ -56,13 +56,9 @@ impl DependenciesBuilder { CardanoTransactionsArtifactBuilder::new(legacy_prover_service.clone()), ); let prover_service = self.get_prover_service().await?; - let mithril_network_configuration_provider = - self.get_mithril_network_configuration_provider().await?; - let cardano_blocks_transactions_artifact_builder = - Arc::new(CardanoBlocksTransactionsArtifactBuilder::new( - prover_service.clone(), - mithril_network_configuration_provider.clone(), - )); + let cardano_blocks_transactions_artifact_builder = Arc::new( + CardanoBlocksTransactionsArtifactBuilder::new(prover_service.clone()), + ); let stake_store = self.get_stake_store().await?; let cardano_stake_distribution_artifact_builder = Arc::new(CardanoStakeDistributionArtifactBuilder::new(stake_store)); diff --git a/mithril-aggregator/src/services/signed_entity.rs b/mithril-aggregator/src/services/signed_entity.rs index ce349536c4e..0a79f731f97 100644 --- a/mithril-aggregator/src/services/signed_entity.rs +++ b/mithril-aggregator/src/services/signed_entity.rs @@ -12,8 +12,8 @@ use tokio::task::JoinHandle; use mithril_common::{ StdResult, entities::{ - BlockNumber, CardanoBlocksTransactionsSnapshot, CardanoDatabaseSnapshot, CardanoDbBeacon, - CardanoStakeDistribution, CardanoTransactionsSnapshot, Certificate, Epoch, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSnapshot, CardanoDatabaseSnapshot, + CardanoDbBeacon, CardanoStakeDistribution, CardanoTransactionsSnapshot, Certificate, Epoch, MithrilStakeDistribution, SignedEntityType, SignedEntityTypeDiscriminants, Snapshot, }, logging::LoggerExtensions, @@ -103,8 +103,9 @@ pub struct MithrilSignedEntityService { Arc>, cardano_transactions_artifact_builder: Arc>, - cardano_blocks_transactions_artifact_builder: - Arc>, + cardano_blocks_transactions_artifact_builder: Arc< + dyn ArtifactBuilder<(BlockNumber, BlockNumberOffset), CardanoBlocksTransactionsSnapshot>, + >, signed_entity_type_lock: Arc, cardano_stake_distribution_artifact_builder: Arc>, @@ -122,8 +123,9 @@ pub struct SignedEntityServiceArtifactsDependencies { Arc>, cardano_transactions_artifact_builder: Arc>, - cardano_blocks_transactions_artifact_builder: - Arc>, + cardano_blocks_transactions_artifact_builder: Arc< + dyn ArtifactBuilder<(BlockNumber, BlockNumberOffset), CardanoBlocksTransactionsSnapshot>, + >, cardano_stake_distribution_artifact_builder: Arc>, cardano_database_artifact_builder: @@ -143,7 +145,7 @@ impl SignedEntityServiceArtifactsDependencies { dyn ArtifactBuilder, >, cardano_blocks_transactions_artifact_builder: Arc< - dyn ArtifactBuilder, + dyn ArtifactBuilder<(BlockNumber, BlockNumberOffset), CardanoBlocksTransactionsSnapshot>, >, cardano_stake_distribution_artifact_builder: Arc< dyn ArtifactBuilder, @@ -281,9 +283,9 @@ impl MithrilSignedEntityService { ) })?, )), - SignedEntityType::CardanoBlocksTransactions(_epoch, block_number) => Ok(Arc::new( + SignedEntityType::CardanoBlocksTransactions(_epoch, block_number, block_number_offset) => Ok(Arc::new( self.cardano_blocks_transactions_artifact_builder - .compute_artifact(block_number, certificate) + .compute_artifact((block_number, block_number_offset), certificate) .await .with_context(|| { format!( @@ -538,7 +540,7 @@ mod tests { use std::{sync::atomic::Ordering, time::Duration}; use mithril_common::{ - entities::{CardanoTransactionsSnapshot, Epoch, StakeDistribution}, + entities::{BlockNumberOffset, CardanoTransactionsSnapshot, Epoch, StakeDistribution}, signable_builder, test::double::fake_data, }; @@ -587,8 +589,10 @@ mod tests { MockArtifactBuilder, mock_cardano_transactions_artifact_builder: MockArtifactBuilder, - mock_cardano_blocks_transactions_artifact_builder: - MockArtifactBuilder, + mock_cardano_blocks_transactions_artifact_builder: MockArtifactBuilder< + (BlockNumber, BlockNumberOffset), + CardanoBlocksTransactionsSnapshot, + >, mock_cardano_stake_distribution_artifact_builder: MockArtifactBuilder, mock_cardano_database_artifact_builder: @@ -612,7 +616,7 @@ mod tests { CardanoTransactionsSnapshot, >::new(), mock_cardano_blocks_transactions_artifact_builder: MockArtifactBuilder::< - BlockNumber, + (BlockNumber, BlockNumberOffset), CardanoBlocksTransactionsSnapshot, >::new(), mock_cardano_stake_distribution_artifact_builder: MockArtifactBuilder::< @@ -925,11 +929,11 @@ mod tests { let mut mock_container = MockDependencyInjector::new(); let block_number = BlockNumber(151); - let offset_security_parameter = BlockNumber(15); + let offset_security_parameter = BlockNumberOffset(15); let expected = CardanoBlocksTransactionsSnapshot::new( "merkle_root".to_string(), block_number, - offset_security_parameter, + offset_security_parameter.into(), //TODO: clem, do we want to use BlockNumberOffset in CardanoBlocksTransactionsSnapshot ? ); mock_container @@ -940,15 +944,18 @@ mod tests { Ok(CardanoBlocksTransactionsSnapshot::new( "merkle_root".to_string(), block_number, - offset_security_parameter, + offset_security_parameter.into(), //TODO: clem, do we want to use BlockNumberOffset in CardanoBlocksTransactionsSnapshot ? )) }); let artifact_builder_service = mock_container.build_artifact_builder_service(); let certificate = fake_data::certificate("hash".to_string()); - let signed_entity_type = - SignedEntityType::CardanoBlocksTransactions(Epoch(1), block_number); + let signed_entity_type = SignedEntityType::CardanoBlocksTransactions( + Epoch(1), + block_number, + offset_security_parameter, + ); let artifact = artifact_builder_service .compute_artifact(signed_entity_type.clone(), &certificate) .await @@ -960,13 +967,17 @@ mod tests { #[tokio::test] async fn should_store_the_artifact_when_creating_artifact_for_cardano_blocks_transactions() { let block_number = BlockNumber(149); - let offset_security_parameter = BlockNumber(15); + let offset_security_parameter = BlockNumberOffset(15); generic_test_that_the_artifact_is_stored( - SignedEntityType::CardanoBlocksTransactions(Epoch(1), block_number), + SignedEntityType::CardanoBlocksTransactions( + Epoch(1), + block_number, + offset_security_parameter, + ), CardanoBlocksTransactionsSnapshot::new( "merkle_root".to_string(), block_number, - offset_security_parameter, + offset_security_parameter.into(), //TODO: clem, do we want to use BlockNumberOffset in CardanoBlocksTransactionsSnapshot ? ), &|mock_injector| &mut mock_injector.mock_cardano_blocks_transactions_artifact_builder, ) diff --git a/mithril-common/src/signable_builder/interface.rs b/mithril-common/src/signable_builder/interface.rs index 14c7c624e70..4549da68835 100644 --- a/mithril-common/src/signable_builder/interface.rs +++ b/mithril-common/src/signable_builder/interface.rs @@ -4,9 +4,9 @@ use std::fmt::Debug; use crate::{ StdResult, entities::{ - BlockNumber, CardanoBlocksTransactionsSnapshot, CardanoDatabaseSnapshot, CardanoDbBeacon, - CardanoStakeDistribution, CardanoTransactionsSnapshot, Epoch, MithrilStakeDistribution, - ProtocolMessage, ProtocolMessagePartValue, Snapshot, + BlockNumber, BlockNumberOffset, CardanoBlocksTransactionsSnapshot, CardanoDatabaseSnapshot, + CardanoDbBeacon, CardanoStakeDistribution, CardanoTransactionsSnapshot, Epoch, + MithrilStakeDistribution, ProtocolMessage, ProtocolMessagePartValue, Snapshot, }, }; @@ -61,6 +61,8 @@ impl Beacon for CardanoDbBeacon {} impl Beacon for Epoch {} +impl Beacon for (BlockNumber, BlockNumberOffset) {} + #[cfg_attr(not(target_family = "wasm"), typetag::serde)] impl Artifact for CardanoDatabaseSnapshot { fn get_id(&self) -> String { From a1fa4582c30db5f279205f0ab3c252a6530bb3e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Tue, 31 Mar 2026 11:11:38 +0200 Subject: [PATCH 07/19] feature(common): sign the blockNumberOffset for CardanoBlockTransactions --- .../src/entities/protocol_message.rs | 7 ++++ .../cardano_blocks_transactions.rs | 40 ++++++++++++++----- .../signable_builder_service.rs | 22 +++++----- 3 files changed, 51 insertions(+), 18 deletions(-) diff --git a/mithril-common/src/entities/protocol_message.rs b/mithril-common/src/entities/protocol_message.rs index 26fd9330162..a1c90f37500 100644 --- a/mithril-common/src/entities/protocol_message.rs +++ b/mithril-common/src/entities/protocol_message.rs @@ -41,6 +41,10 @@ pub enum ProtocolMessagePartKey { #[serde(rename = "latest_block_number")] LatestBlockNumber, + /// The ProtocolMessage part key associated to the security parameter block number offset of the CardanoBlocksTransactions + #[serde(rename = "cardano_blocks_transactions_block_number_offset")] + CardanoBlocksTransactionsBlockNumberOffset, + /// The ProtocolMessage part key associated to the epoch for which the Cardano stake distribution is computed #[serde(rename = "cardano_stake_distribution_epoch")] CardanoStakeDistributionEpoch, @@ -73,6 +77,9 @@ impl Display for ProtocolMessagePartKey { write!(f, "cardano_blocks_transactions_merkle_root") } Self::LatestBlockNumber => write!(f, "latest_block_number"), + Self::CardanoBlocksTransactionsBlockNumberOffset => { + write!(f, "cardano_blocks_transactions_block_number_offset") + } Self::CardanoStakeDistributionEpoch => write!(f, "cardano_stake_distribution_epoch"), Self::CardanoStakeDistributionMerkleRoot => { write!(f, "cardano_stake_distribution_merkle_root") diff --git a/mithril-common/src/signable_builder/cardano_blocks_transactions.rs b/mithril-common/src/signable_builder/cardano_blocks_transactions.rs index 12a0d453367..b38a6d9f199 100644 --- a/mithril-common/src/signable_builder/cardano_blocks_transactions.rs +++ b/mithril-common/src/signable_builder/cardano_blocks_transactions.rs @@ -9,8 +9,8 @@ use crate::{ StdResult, crypto_helper::{MKMap, MKMapNode, MKTree, MKTreeNode, MKTreeStorer}, entities::{ - BlockNumber, BlockRange, CardanoBlockTransactionMkTreeNode, ProtocolMessage, - ProtocolMessagePartKey, + BlockNumber, BlockNumberOffset, BlockRange, CardanoBlockTransactionMkTreeNode, + ProtocolMessage, ProtocolMessagePartKey, }, signable_builder::SignableBuilder, }; @@ -110,13 +110,20 @@ impl CardanoBlocksTransactionsSignableBuilder { } #[async_trait] -impl SignableBuilder for CardanoBlocksTransactionsSignableBuilder { - async fn compute_protocol_message(&self, beacon: BlockNumber) -> StdResult { - self.blocks_transactions_importer.import(beacon).await?; +impl SignableBuilder<(BlockNumber, BlockNumberOffset)> + for CardanoBlocksTransactionsSignableBuilder +{ + async fn compute_protocol_message( + &self, + beacon: (BlockNumber, BlockNumberOffset), + ) -> StdResult { + let (block_number, block_number_offset) = beacon; + + self.blocks_transactions_importer.import(block_number).await?; let mk_root = self .block_range_root_retriever - .compute_merkle_map_from_block_range_roots(beacon) + .compute_merkle_map_from_block_range_roots(block_number) .await? .compute_root()?; @@ -127,7 +134,11 @@ impl SignableBuilder for CardanoBlocksTransactions ); protocol_message.set_message_part( ProtocolMessagePartKey::LatestBlockNumber, - beacon.to_string(), + block_number.to_string(), + ); + protocol_message.set_message_part( + ProtocolMessagePartKey::CardanoBlocksTransactionsBlockNumberOffset, + block_number_offset.to_string(), ); Ok(protocol_message) @@ -163,6 +174,7 @@ mod tests { async fn test_compute_signable() { // Arrange let block_number = BlockNumber(1453); + let block_number_offset = BlockNumberOffset(10); let transactions = CardanoTransactionsBuilder::new().build_transactions(3); let mk_map = compute_mk_map_from_transactions(transactions.clone()); let mut blocks_transactions_importer = MockBlocksTransactionsImporter::new(); @@ -181,7 +193,10 @@ mod tests { ); // Action - let signable = signable_builder.compute_protocol_message(block_number).await.unwrap(); + let signable = signable_builder + .compute_protocol_message((block_number, block_number_offset)) + .await + .unwrap(); // Assert let mut signable_expected = ProtocolMessage::new(); @@ -193,12 +208,17 @@ mod tests { ProtocolMessagePartKey::LatestBlockNumber, format!("{block_number}"), ); + signable_expected.set_message_part( + ProtocolMessagePartKey::CardanoBlocksTransactionsBlockNumberOffset, + format!("{block_number_offset}"), + ); assert_eq!(signable_expected, signable); } #[tokio::test] async fn test_compute_signable_with_no_block_range_root_return_error() { let block_number = BlockNumber(50); + let block_number_offset = BlockNumberOffset(10); let mut blocks_transactions_importer = MockBlocksTransactionsImporter::new(); blocks_transactions_importer.expect_import().return_once(|_| Ok(())); let mut block_range_root_retriever = MockBlockRangeRootRetriever::new(); @@ -210,7 +230,9 @@ mod tests { Arc::new(block_range_root_retriever), ); - let result = signable_builder.compute_protocol_message(block_number).await; + let result = signable_builder + .compute_protocol_message((block_number, block_number_offset)) + .await; assert!(result.is_err()); } diff --git a/mithril-common/src/signable_builder/signable_builder_service.rs b/mithril-common/src/signable_builder/signable_builder_service.rs index cc9f09e7c5e..cadfaad56e8 100644 --- a/mithril-common/src/signable_builder/signable_builder_service.rs +++ b/mithril-common/src/signable_builder/signable_builder_service.rs @@ -6,8 +6,8 @@ use std::sync::Arc; use crate::{ StdResult, entities::{ - BlockNumber, CardanoDbBeacon, Epoch, ProtocolMessage, ProtocolMessagePartKey, - SignedEntityType, + BlockNumber, BlockNumberOffset, CardanoDbBeacon, Epoch, ProtocolMessage, + ProtocolMessagePartKey, SignedEntityType, }, logging::LoggerExtensions, signable_builder::{SignableBuilder, SignableSeedBuilder}, @@ -30,7 +30,8 @@ pub struct MithrilSignableBuilderService { mithril_stake_distribution_builder: Arc>, immutable_signable_builder: Arc>, cardano_transactions_signable_builder: Arc>, - cardano_blocks_transactions_signable_builder: Arc>, + cardano_blocks_transactions_signable_builder: + Arc>, cardano_stake_distribution_builder: Arc>, cardano_database_signable_builder: Arc>, logger: Logger, @@ -41,7 +42,8 @@ pub struct SignableBuilderServiceDependencies { mithril_stake_distribution_builder: Arc>, immutable_signable_builder: Arc>, cardano_transactions_signable_builder: Arc>, - cardano_blocks_transactions_signable_builder: Arc>, + cardano_blocks_transactions_signable_builder: + Arc>, cardano_stake_distribution_builder: Arc>, cardano_database_signable_builder: Arc>, } @@ -52,7 +54,9 @@ impl SignableBuilderServiceDependencies { mithril_stake_distribution_builder: Arc>, immutable_signable_builder: Arc>, cardano_transactions_signable_builder: Arc>, - cardano_blocks_transactions_signable_builder: Arc>, + cardano_blocks_transactions_signable_builder: Arc< + dyn SignableBuilder<(BlockNumber, BlockNumberOffset)>, + >, cardano_stake_distribution_builder: Arc>, cardano_database_signable_builder: Arc>, ) -> Self { @@ -118,10 +122,9 @@ impl MithrilSignableBuilderService { .compute_protocol_message(*block_number) .await } - SignedEntityType::CardanoBlocksTransactions(_, block_number, _) => { - //TODO: clem, Sign the BlockNumberOffset in the compute_protocol_message of the signable builder implementation + SignedEntityType::CardanoBlocksTransactions(_, block_number, block_number_offset) => { self.cardano_blocks_transactions_signable_builder - .compute_protocol_message(*block_number) + .compute_protocol_message((*block_number, *block_number_offset)) .await } SignedEntityType::CardanoDatabase(beacon) => { @@ -221,7 +224,8 @@ mod tests { mock_cardano_immutable_files_full_signable_builder: MockSignableBuilderImpl, mock_cardano_transactions_signable_builder: MockSignableBuilderImpl, - mock_cardano_blocks_transactions_signable_builder: MockSignableBuilderImpl, + mock_cardano_blocks_transactions_signable_builder: + MockSignableBuilderImpl<(BlockNumber, BlockNumberOffset)>, mock_cardano_stake_distribution_signable_builder: MockSignableBuilderImpl, mock_cardano_database_signable_builder: MockSignableBuilderImpl, } From 6532a31eef3c8f4e83376ebd0b608fac060ad53a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Tue, 31 Mar 2026 18:00:52 +0200 Subject: [PATCH 08/19] refactor(aggregator): use BlockNumberOffset type in CardanoBlocksTransactionsSnapshot constructor --- .../cardano_blocks_transactions.rs | 4 ++-- mithril-aggregator/src/services/signed_entity.rs | 6 +++--- .../cardano_blocks_transactions_snapshot.rs | 14 ++++++++------ 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/mithril-aggregator/src/artifact_builder/cardano_blocks_transactions.rs b/mithril-aggregator/src/artifact_builder/cardano_blocks_transactions.rs index 58e1382294f..f153de13bc3 100644 --- a/mithril-aggregator/src/artifact_builder/cardano_blocks_transactions.rs +++ b/mithril-aggregator/src/artifact_builder/cardano_blocks_transactions.rs @@ -50,7 +50,7 @@ impl ArtifactBuilder<(BlockNumber, BlockNumberOffset), CardanoBlocksTransactions Ok(CardanoBlocksTransactionsSnapshot::new( merkle_root.to_string(), block_number, - block_number_offset.into(), //TODO: clem to de want to use BlockNumberOffset for CardanoBlocksTransactionsSnapshot ? + block_number_offset, )) } } @@ -99,7 +99,7 @@ mod tests { CardanoBlocksTransactionsSnapshot::new( "merkleroot".to_string(), block_number, - block_number_offset.into(), //TODO: clem, do we want to use BlockNumberOffset in CardanoBlocksTransactionsSnapshot ? + block_number_offset, ), artifact ); diff --git a/mithril-aggregator/src/services/signed_entity.rs b/mithril-aggregator/src/services/signed_entity.rs index 0a79f731f97..6bfd3f5518d 100644 --- a/mithril-aggregator/src/services/signed_entity.rs +++ b/mithril-aggregator/src/services/signed_entity.rs @@ -933,7 +933,7 @@ mod tests { let expected = CardanoBlocksTransactionsSnapshot::new( "merkle_root".to_string(), block_number, - offset_security_parameter.into(), //TODO: clem, do we want to use BlockNumberOffset in CardanoBlocksTransactionsSnapshot ? + offset_security_parameter, ); mock_container @@ -944,7 +944,7 @@ mod tests { Ok(CardanoBlocksTransactionsSnapshot::new( "merkle_root".to_string(), block_number, - offset_security_parameter.into(), //TODO: clem, do we want to use BlockNumberOffset in CardanoBlocksTransactionsSnapshot ? + offset_security_parameter, )) }); @@ -977,7 +977,7 @@ mod tests { CardanoBlocksTransactionsSnapshot::new( "merkle_root".to_string(), block_number, - offset_security_parameter.into(), //TODO: clem, do we want to use BlockNumberOffset in CardanoBlocksTransactionsSnapshot ? + offset_security_parameter, ), &|mock_injector| &mut mock_injector.mock_cardano_blocks_transactions_artifact_builder, ) diff --git a/mithril-common/src/entities/cardano_blocks_transactions_snapshot.rs b/mithril-common/src/entities/cardano_blocks_transactions_snapshot.rs index bd9d12b75c2..7140dbc2f41 100644 --- a/mithril-common/src/entities/cardano_blocks_transactions_snapshot.rs +++ b/mithril-common/src/entities/cardano_blocks_transactions_snapshot.rs @@ -1,6 +1,8 @@ use serde::{Deserialize, Serialize}; use sha2::{Digest, Sha256}; +use crate::entities::BlockNumberOffset; + use super::BlockNumber; /// Snapshot of a set of Cardano blocks and transactions @@ -24,7 +26,7 @@ impl CardanoBlocksTransactionsSnapshot { pub fn new( merkle_root: String, block_number_signed: BlockNumber, - offset_security_parameter: BlockNumber, + offset_security_parameter: BlockNumberOffset, ) -> Self { let mut snapshot = Self { merkle_root, @@ -61,7 +63,7 @@ mod tests { CardanoBlocksTransactionsSnapshot::new( "mk-root-123".to_string(), BlockNumber(50), - BlockNumber(15) + BlockNumberOffset(15) ) .compute_hash() ); @@ -71,7 +73,7 @@ mod tests { CardanoBlocksTransactionsSnapshot::new( "mk-root-456".to_string(), BlockNumber(50), - BlockNumber(15) + BlockNumberOffset(15) ) .compute_hash() ); @@ -81,7 +83,7 @@ mod tests { CardanoBlocksTransactionsSnapshot::new( "mk-root-123".to_string(), BlockNumber(47), - BlockNumber(15) + BlockNumberOffset(15) ) .compute_hash() ); @@ -91,7 +93,7 @@ mod tests { CardanoBlocksTransactionsSnapshot::new( "mk-root-123".to_string(), BlockNumber(50), - BlockNumber(42) + BlockNumberOffset(42) ) .compute_hash() ); @@ -105,7 +107,7 @@ mod tests { let snapshot = CardanoBlocksTransactionsSnapshot::new( "mk-root-123".to_string(), BlockNumber(block_number_signed_value), - BlockNumber(offset_security_parameter_value), + BlockNumberOffset(offset_security_parameter_value), ); assert_eq!( From 4dfcdf10ab35b6771c809d408fa20503b3922fdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Tue, 31 Mar 2026 18:01:59 +0200 Subject: [PATCH 09/19] refactor(common): move arithemic operation between blockNumber and blockNumberOffset in blockNumber --- mithril-common/src/entities/block_number.rs | 10 ++++- .../src/entities/block_number_offset.rs | 43 ++++++------------- 2 files changed, 21 insertions(+), 32 deletions(-) diff --git a/mithril-common/src/entities/block_number.rs b/mithril-common/src/entities/block_number.rs index ab34ccb2483..4bc2cad0bbb 100644 --- a/mithril-common/src/entities/block_number.rs +++ b/mithril-common/src/entities/block_number.rs @@ -226,12 +226,12 @@ mod tests { } #[test] - fn test_add_block_number_offset() { + fn test_add_block_number_offset_to_block_number() { assert_eq!(BlockNumber(4), BlockNumber(1) + BlockNumberOffset(3)); } #[test] - fn test_sub_block_number_offset() { + fn test_sub_block_number_offset_from_block_number() { assert_eq!(BlockNumber(1), BlockNumber(4) - BlockNumberOffset(3)); } @@ -242,4 +242,10 @@ mod tests { test_op_assign!(BlockNumber(1), +=, 3 => BlockNumber(4)); test_op_assign!(BlockNumber(1), +=, &3 => BlockNumber(4)); } + + #[test] + fn test_add_asign_block_number_to_block_number_offset() { + test_op_assign!(BlockNumberOffset(1), +=, BlockNumber(3) => BlockNumberOffset(4)); + test_op_assign!(BlockNumberOffset(1), +=, BlockNumber(3) => &BlockNumberOffset(4)); + } } diff --git a/mithril-common/src/entities/block_number_offset.rs b/mithril-common/src/entities/block_number_offset.rs index d90fdf55567..eb81a2d3e20 100644 --- a/mithril-common/src/entities/block_number_offset.rs +++ b/mithril-common/src/entities/block_number_offset.rs @@ -59,20 +59,6 @@ impl TryFrom for i64 { } } -//TODO: clem, check if we still need those converter avec switching to BlockNumberOffset -impl From for BlockNumberOffset { - fn from(value: BlockNumber) -> Self { - BlockNumberOffset(value.0) - } -} - -//TODO: clem, check if we still need those converter avec switching to BlockNumberOffset -impl From for BlockNumber { - fn from(value: BlockNumberOffset) -> Self { - BlockNumber(value.0) - } -} - impl_add_to_wrapper!(BlockNumberOffset, u64); impl_sub_to_wrapper!(BlockNumberOffset, u64); impl_partial_eq_to_wrapper!(BlockNumberOffset, u64); @@ -99,6 +85,12 @@ impl AddAssign for BlockNumberOffset { } } +impl From for BlockNumberOffset { + fn from(value: BlockNumber) -> Self { + BlockNumberOffset(value.0) + } +} + #[cfg(test)] mod tests { use crate::entities::arithmetic_operation_wrapper::tests::test_op_assign; @@ -196,21 +188,19 @@ mod tests { } #[test] - fn test_add_block_number() { - assert_eq!(BlockNumberOffset(4), BlockNumberOffset(1) + BlockNumber(3)); + fn test_add_asign_block_number() { + test_op_assign!(BlockNumberOffset(1), +=, 3 => BlockNumberOffset(4)); + test_op_assign!(BlockNumberOffset(1), +=, &3 => BlockNumberOffset(4)); } #[test] - fn test_sub_block_number() { - assert_eq!(BlockNumberOffset(3), BlockNumberOffset(4) - BlockNumber(1)); + fn test_add_block_number_to_block_number_offset() { + assert_eq!(BlockNumberOffset(4), BlockNumberOffset(1) + BlockNumber(3)); } #[test] - fn test_add_asign_block_number() { - test_op_assign!(BlockNumberOffset(1), +=, BlockNumber(3) => BlockNumberOffset(4)); - test_op_assign!(BlockNumberOffset(1), +=, BlockNumber(3) => &BlockNumberOffset(4)); - test_op_assign!(BlockNumberOffset(1), +=, 3 => BlockNumberOffset(4)); - test_op_assign!(BlockNumberOffset(1), +=, &3 => BlockNumberOffset(4)); + fn test_sub_block_number_to_block_number_offset() { + assert_eq!(BlockNumberOffset(3), BlockNumberOffset(4) - BlockNumber(1)); } #[test] @@ -219,11 +209,4 @@ mod tests { let block_number_offset: BlockNumberOffset = block_number.into(); assert_eq!(block_number_offset, BlockNumberOffset(42)); } - - #[test] - fn test_from_block_number_offset() { - let block_number_offset = BlockNumberOffset(42); - let block_number: BlockNumber = block_number_offset.into(); - assert_eq!(block_number, BlockNumber(42)); - } } From 0f40922f0e15e8a14850fdc5debfb3a158da54e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Wed, 1 Apr 2026 18:18:41 +0200 Subject: [PATCH 10/19] feature(aggregator, common, internal, openAPI): add security parameter in Proof v2 routes results --- .../src/query/get/get_cardano_block_proof.rs | 1 + .../get/get_cardano_transaction_proof_v2.rs | 1 + .../src/http_server/routes/proof_routes.rs | 14 +++++++++++++- .../messages/proof_v2/cardano_blocks_proof.rs | 7 ++++++- .../proof_v2/cardano_transactions_proof.rs | 7 ++++++- .../src/test/crypto_helper/mk_extensions.rs | 6 ++++-- mithril-common/src/test/double/dummies.rs | 15 +++++++++------ openapi.yaml | 16 ++++++++++++++-- 8 files changed, 54 insertions(+), 13 deletions(-) diff --git a/internal/mithril-aggregator-client/src/query/get/get_cardano_block_proof.rs b/internal/mithril-aggregator-client/src/query/get/get_cardano_block_proof.rs index 44e865b4182..4e6a896e3e6 100644 --- a/internal/mithril-aggregator-client/src/query/get/get_cardano_block_proof.rs +++ b/internal/mithril-aggregator-client/src/query/get/get_cardano_block_proof.rs @@ -70,6 +70,7 @@ mod tests { }), non_certified_blocks: vec![], latest_block_number: Default::default(), + security_parameter: Default::default(), }; let _server_mock = server.mock(|when, then| { when.path("/proof/v2/cardano-block") diff --git a/internal/mithril-aggregator-client/src/query/get/get_cardano_transaction_proof_v2.rs b/internal/mithril-aggregator-client/src/query/get/get_cardano_transaction_proof_v2.rs index 0a8f7f1e860..562b1b017d4 100644 --- a/internal/mithril-aggregator-client/src/query/get/get_cardano_transaction_proof_v2.rs +++ b/internal/mithril-aggregator-client/src/query/get/get_cardano_transaction_proof_v2.rs @@ -70,6 +70,7 @@ mod tests { }), non_certified_transactions: vec![], latest_block_number: Default::default(), + security_parameter: Default::default(), }; let _server_mock = server.mock(|when, then| { diff --git a/mithril-aggregator/src/http_server/routes/proof_routes.rs b/mithril-aggregator/src/http_server/routes/proof_routes.rs index 9388d6363c1..85338522c39 100644 --- a/mithril-aggregator/src/http_server/routes/proof_routes.rs +++ b/mithril-aggregator/src/http_server/routes/proof_routes.rs @@ -105,7 +105,9 @@ mod handlers { use mithril_common::{ StdResult, - entities::{CardanoBlocksTransactionsSnapshot, CardanoTransactionsSnapshot}, + entities::{ + BlockNumberOffset, CardanoBlocksTransactionsSnapshot, CardanoTransactionsSnapshot, + }, messages::{ CardanoBlocksProofsMessage, CardanoTransactionsProofsMessage, CardanoTransactionsProofsV2Message, @@ -359,11 +361,16 @@ mod handlers { None => (None, transaction_hashes), }; + let security_parameter = BlockNumberOffset::from( + signed_entity.artifact.block_number_tip - signed_entity.artifact.block_number_signed, + ); + Ok(CardanoTransactionsProofsV2Message::new( &signed_entity.certificate_id, certified_transactions, non_certified_transactions, signed_entity.artifact.block_number_signed, + security_parameter, )) } @@ -390,11 +397,16 @@ mod handlers { None => (None, block_hashes), }; + let security_parameter = BlockNumberOffset::from( + signed_entity.artifact.block_number_tip - signed_entity.artifact.block_number_signed, + ); + Ok(CardanoBlocksProofsMessage::new( &signed_entity.certificate_id, certified_blocks, non_certified_blocks, signed_entity.artifact.block_number_signed, + security_parameter, )) } } diff --git a/mithril-common/src/messages/proof_v2/cardano_blocks_proof.rs b/mithril-common/src/messages/proof_v2/cardano_blocks_proof.rs index f0261af67ae..8c1e0dba9f2 100644 --- a/mithril-common/src/messages/proof_v2/cardano_blocks_proof.rs +++ b/mithril-common/src/messages/proof_v2/cardano_blocks_proof.rs @@ -1,6 +1,6 @@ use serde::{Deserialize, Serialize}; -use crate::entities::{BlockHash, BlockNumber, CardanoBlock}; +use crate::entities::{BlockHash, BlockNumber, BlockNumberOffset, CardanoBlock}; use crate::messages::proof_v2::ProofMessageVerifier; use crate::messages::{CardanoBlockMessagePart, MkSetProofMessagePart, VerifyProofsV2Error}; @@ -27,6 +27,9 @@ pub struct CardanoBlocksProofsMessage { /// Latest block number that has been certified by the associated Mithril certificate pub latest_block_number: BlockNumber, + + /// Security parameter that has been certified by the associated Mithril certificate + pub security_parameter: BlockNumberOffset, } #[cfg_attr(target_family = "wasm", wasm_bindgen(js_class = "CardanoBlocksProofs"))] @@ -98,12 +101,14 @@ impl CardanoBlocksProofsMessage { certified_blocks: Option>, non_certified_blocks: Vec, latest_block_number: BlockNumber, + security_parameter: BlockNumberOffset, ) -> Self { Self { certificate_hash: certificate_hash.to_string(), certified_blocks, non_certified_blocks, latest_block_number, + security_parameter, } } diff --git a/mithril-common/src/messages/proof_v2/cardano_transactions_proof.rs b/mithril-common/src/messages/proof_v2/cardano_transactions_proof.rs index c4d42c83781..7ab03f7faf8 100644 --- a/mithril-common/src/messages/proof_v2/cardano_transactions_proof.rs +++ b/mithril-common/src/messages/proof_v2/cardano_transactions_proof.rs @@ -1,6 +1,6 @@ use serde::{Deserialize, Serialize}; -use crate::entities::{BlockNumber, CardanoTransaction, TransactionHash}; +use crate::entities::{BlockNumber, BlockNumberOffset, CardanoTransaction, TransactionHash}; use crate::messages::proof_v2::ProofMessageVerifier; use crate::messages::{CardanoTransactionMessagePart, MkSetProofMessagePart, VerifyProofsV2Error}; @@ -27,6 +27,9 @@ pub struct CardanoTransactionsProofsV2Message { /// Latest block number that has been certified by the associated Mithril certificate pub latest_block_number: BlockNumber, + + /// Security parameter that has been certified by the associated Mithril certificate + pub security_parameter: BlockNumberOffset, } #[cfg_attr( @@ -104,12 +107,14 @@ impl CardanoTransactionsProofsV2Message { certified_transactions: Option>, non_certified_transactions: Vec, latest_block_number: BlockNumber, + security_parameter: BlockNumberOffset, ) -> Self { Self { certificate_hash: certificate_hash.to_string(), certified_transactions, non_certified_transactions, latest_block_number, + security_parameter, } } diff --git a/mithril-common/src/test/crypto_helper/mk_extensions.rs b/mithril-common/src/test/crypto_helper/mk_extensions.rs index 2e78db320c1..4d377b1ed86 100644 --- a/mithril-common/src/test/crypto_helper/mk_extensions.rs +++ b/mithril-common/src/test/crypto_helper/mk_extensions.rs @@ -6,8 +6,8 @@ use crate::crypto_helper::{ MKMap, MKMapNode, MKProof, MKTree, MKTreeNode, MKTreeStoreInMemory, MKTreeStorer, }; use crate::entities::{ - BlockNumber, BlockRange, CardanoBlock, CardanoBlockWithTransactions, CardanoTransaction, - IntoMKTreeNode, MkSetProof, + BlockNumber, BlockNumberOffset, BlockRange, CardanoBlock, CardanoBlockWithTransactions, + CardanoTransaction, IntoMKTreeNode, MkSetProof, }; use crate::messages::{CardanoBlocksProofsMessage, CardanoTransactionsProofsV2Message}; use crate::test::crypto_helper::mkmap_helpers; @@ -104,6 +104,7 @@ pub trait MKMapTestExtension { Some(proof.try_into()?), Vec::new(), BlockNumber(9999), + BlockNumberOffset(15), ); Ok(message) @@ -134,6 +135,7 @@ pub trait MKMapTestExtension { Some(proof.try_into()?), Vec::new(), BlockNumber(9999), + BlockNumberOffset(15), ); Ok(message) diff --git a/mithril-common/src/test/double/dummies.rs b/mithril-common/src/test/double/dummies.rs index 3ca25d63588..0f3b196205f 100644 --- a/mithril-common/src/test/double/dummies.rs +++ b/mithril-common/src/test/double/dummies.rs @@ -153,12 +153,13 @@ mod messages { use crate::crypto_helper::KesEvolutions; use crate::entities::{ - AncillaryLocation, BlockNumber, CardanoBlock, CardanoBlocksTransactionsSigningConfig, - CardanoDbBeacon, CardanoTransaction, CardanoTransactionsSetProof, - CardanoTransactionsSigningConfig, CompressionAlgorithm, DigestLocation, Epoch, - ImmutablesLocation, MkSetProof, MultiFilesUri, ProtocolMessage, ProtocolMessagePartKey, - ProtocolParameters, SignedEntityType, SignedEntityTypeDiscriminants, StakeDistribution, - StakeDistributionParty, SupportedEra, TemplateUri, + AncillaryLocation, BlockNumber, BlockNumberOffset, CardanoBlock, + CardanoBlocksTransactionsSigningConfig, CardanoDbBeacon, CardanoTransaction, + CardanoTransactionsSetProof, CardanoTransactionsSigningConfig, CompressionAlgorithm, + DigestLocation, Epoch, ImmutablesLocation, MkSetProof, MultiFilesUri, ProtocolMessage, + ProtocolMessagePartKey, ProtocolParameters, SignedEntityType, + SignedEntityTypeDiscriminants, StakeDistribution, StakeDistributionParty, SupportedEra, + TemplateUri, }; use crate::messages::*; @@ -196,6 +197,7 @@ mod messages { "non-certified-block-2".to_string(), ], BlockNumber(100), + BlockNumberOffset(15), ) } } @@ -208,6 +210,7 @@ mod messages { Some(MkSetProofMessagePart::dummy()), vec!["non-certified-tx-1".to_string(), "non-certified-tx-2".to_string()], BlockNumber(100), + BlockNumberOffset(15), ) } } diff --git a/openapi.yaml b/openapi.yaml index 5f52bedddd9..f727cc992af 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -2964,6 +2964,7 @@ components: - certified_blocks - non_certified_blocks - latest_block_number + - security_parameter properties: certificate_hash: description: Hash of the certificate that validate the merkle root of this proof @@ -2997,6 +2998,10 @@ components: description: Last block number type: integer format: int64 + security_parameter: + description: The number of blocks from the tip of the chain at certification time + type: integer + format: int64 examples: - { "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572", @@ -3016,7 +3021,8 @@ components: [ "732d0d1272e6e70736367ee6f6328364f6b739309666a1ea2cae340158745170" ], - "latest_block_number": 7060000 + "latest_block_number": 7060000, + "security_parameter": 15 } CardanoTransactionProofV2Message: @@ -3028,6 +3034,7 @@ components: - certified_transactions - non_certified_transactions - latest_block_number + - security_parameter properties: certificate_hash: description: Hash of the certificate that validate the merkle root of this proof @@ -3061,6 +3068,10 @@ components: description: Last block number type: integer format: int64 + security_parameter: + description: The number of blocks from the tip of the chain at certification time + type: integer + format: int64 examples: - { "certificate_hash": "7905e83ab5d7bc082c1bbc3033bfd19c539078830d19080d1f241c70aa532572", @@ -3082,7 +3093,8 @@ components: [ "732d0d1272e6e70736367ee6f6328364f6b739309666a1ea2cae340158745170" ], - "latest_block_number": 7060000 + "latest_block_number": 7060000, + "security_parameter": 15 } Error: From 9b58f5874294cd9a131268b220f334421fae997d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Thu, 2 Apr 2026 15:52:58 +0200 Subject: [PATCH 11/19] feature(client-library): verify that the computing of cardano blocks/transactionV2 proof message contain security parameter --- mithril-client/src/message.rs | 8 ++++++++ .../tests/extensions/fake_aggregator/cardano_proof_v2.rs | 4 ++++ .../src/messages/proof_v2/cardano_blocks_proof.rs | 7 +++++++ .../src/messages/proof_v2/cardano_transactions_proof.rs | 7 +++++++ 4 files changed, 26 insertions(+) diff --git a/mithril-client/src/message.rs b/mithril-client/src/message.rs index 7c66242ce4e..d91b50e3da1 100644 --- a/mithril-client/src/message.rs +++ b/mithril-client/src/message.rs @@ -204,6 +204,10 @@ impl MessageBuilder { ProtocolMessagePartKey::LatestBlockNumber, verified_blocks.latest_certified_block_number().to_string(), ); + message.set_message_part( + ProtocolMessagePartKey::CardanoBlocksTransactionsBlockNumberOffset, + verified_blocks.security_parameter().to_string(), + ); message } @@ -222,6 +226,10 @@ impl MessageBuilder { ProtocolMessagePartKey::LatestBlockNumber, verified_transactions.latest_certified_block_number().to_string(), ); + message.set_message_part( + ProtocolMessagePartKey::CardanoBlocksTransactionsBlockNumberOffset, + verified_transactions.security_parameter().to_string(), + ); message } } diff --git a/mithril-client/tests/extensions/fake_aggregator/cardano_proof_v2.rs b/mithril-client/tests/extensions/fake_aggregator/cardano_proof_v2.rs index 0bbf4683a53..5f1de2f7fa0 100644 --- a/mithril-client/tests/extensions/fake_aggregator/cardano_proof_v2.rs +++ b/mithril-client/tests/extensions/fake_aggregator/cardano_proof_v2.rs @@ -54,6 +54,10 @@ impl FakeAggregator { ProtocolMessagePartKey::LatestBlockNumber, verified_proof.latest_certified_block_number().to_string(), ); + cert.protocol_message.set_message_part( + ProtocolMessagePartKey::CardanoBlocksTransactionsBlockNumberOffset, + verified_proof.security_parameter().to_string(), + ); cert.signed_message = cert.protocol_message.compute_hash(); cert }; diff --git a/mithril-common/src/messages/proof_v2/cardano_blocks_proof.rs b/mithril-common/src/messages/proof_v2/cardano_blocks_proof.rs index 8c1e0dba9f2..8b69e17919c 100644 --- a/mithril-common/src/messages/proof_v2/cardano_blocks_proof.rs +++ b/mithril-common/src/messages/proof_v2/cardano_blocks_proof.rs @@ -65,6 +65,7 @@ pub struct VerifiedCardanoBlocks { merkle_root: String, certified_blocks: Vec, latest_block_number: BlockNumber, + security_parameter: BlockNumberOffset, } impl VerifiedCardanoBlocks { @@ -92,6 +93,11 @@ impl VerifiedCardanoBlocks { pub fn latest_certified_block_number(&self) -> BlockNumber { self.latest_block_number } + + /// Security parameter that has been certified by the associated Mithril certificate + pub fn security_parameter(&self) -> BlockNumberOffset { + self.security_parameter + } } impl CardanoBlocksProofsMessage { @@ -138,6 +144,7 @@ impl CardanoBlocksProofsMessage { merkle_root, certified_blocks: certified_blocks.items.clone(), latest_block_number: self.latest_block_number, + security_parameter: self.security_parameter, }) } } diff --git a/mithril-common/src/messages/proof_v2/cardano_transactions_proof.rs b/mithril-common/src/messages/proof_v2/cardano_transactions_proof.rs index 7ab03f7faf8..7f7081d7af9 100644 --- a/mithril-common/src/messages/proof_v2/cardano_transactions_proof.rs +++ b/mithril-common/src/messages/proof_v2/cardano_transactions_proof.rs @@ -68,6 +68,7 @@ pub struct VerifiedCardanoTransactionsV2 { merkle_root: String, certified_transactions: Vec, latest_block_number: BlockNumber, + security_parameter: BlockNumberOffset, } impl VerifiedCardanoTransactionsV2 { @@ -98,6 +99,11 @@ impl VerifiedCardanoTransactionsV2 { pub fn latest_certified_block_number(&self) -> BlockNumber { self.latest_block_number } + + /// Security parameter that has been certified by the associated Mithril certificate + pub fn security_parameter(&self) -> BlockNumberOffset { + self.security_parameter + } } impl CardanoTransactionsProofsV2Message { @@ -145,6 +151,7 @@ impl CardanoTransactionsProofsV2Message { merkle_root, certified_transactions: certified_transactions.items.clone(), latest_block_number: self.latest_block_number, + security_parameter: self.security_parameter, }) } } From fd1d2f47ec3061f120e46b8f8a8f02a1bdc77ec6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Thu, 2 Apr 2026 17:30:02 +0200 Subject: [PATCH 12/19] feature(client-CLI): show depth of the certification (security parameter) in certify table result for blocks and transactionsV2 --- mithril-client-cli/src/commands/cardano_block/certify.rs | 4 ++++ .../src/commands/cardano_transaction/certify/v2.rs | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/mithril-client-cli/src/commands/cardano_block/certify.rs b/mithril-client-cli/src/commands/cardano_block/certify.rs index 2dcb51fe5b9..40eaa93b5d9 100644 --- a/mithril-client-cli/src/commands/cardano_block/certify.rs +++ b/mithril-client-cli/src/commands/cardano_block/certify.rs @@ -159,6 +159,7 @@ Mithril may not have signed those blocks yet, please try again later." "block_hash": block.block_hash, "block_number": block.block_number, "slot_number": block.slot_number, + "block_depth": verified_blocks.security_parameter(), }) }) .collect::>() @@ -185,6 +186,7 @@ No proof could be computed for some Cardano blocks. Mithril may not have signed block.block_hash.clone().cell(), format!("{}", block.block_number).cell(), format!("{}", block.slot_number).cell(), + format!("{}", verified_blocks.security_parameter()).cell(), "✅".cell().justify(cli_table::format::Justify::Center), ] }) @@ -193,6 +195,7 @@ No proof could be computed for some Cardano blocks. Mithril may not have signed block.clone().cell(), String::new().cell(), String::new().cell(), + String::new().cell(), "❌".cell().justify(cli_table::format::Justify::Center), ] })) @@ -201,6 +204,7 @@ No proof could be computed for some Cardano blocks. Mithril may not have signed "Block Hash".cell(), "Block Number".cell(), "Slot Number".cell(), + "Block depth".cell(), "Certified".cell(), ]); diff --git a/mithril-client-cli/src/commands/cardano_transaction/certify/v2.rs b/mithril-client-cli/src/commands/cardano_transaction/certify/v2.rs index 69c52473c28..d2614b7f4ac 100644 --- a/mithril-client-cli/src/commands/cardano_transaction/certify/v2.rs +++ b/mithril-client-cli/src/commands/cardano_transaction/certify/v2.rs @@ -112,6 +112,7 @@ fn log_certify_information( "block_hash": tx.block_hash, "block_number": tx.block_number, "slot_number": tx.slot_number, + "block_depth": verified_transactions.security_parameter(), }) }) .collect::>() @@ -139,6 +140,7 @@ No proof could be computed for some Cardano transactions. Mithril may not have s tx.block_hash.clone().cell(), format!("{}", tx.block_number).cell(), format!("{}", tx.slot_number).cell(), + format!("{}", verified_transactions.security_parameter()).cell(), "✅".cell().justify(cli_table::format::Justify::Center), ] }) @@ -148,6 +150,7 @@ No proof could be computed for some Cardano transactions. Mithril may not have s String::new().cell(), String::new().cell(), String::new().cell(), + String::new().cell(), "❌".cell().justify(cli_table::format::Justify::Center), ] })) @@ -157,6 +160,7 @@ No proof could be computed for some Cardano transactions. Mithril may not have s "Block Hash".cell(), "Block Number".cell(), "Slot Number".cell(), + "Block depth".cell(), "Certified".cell(), ]); From ed1d01fc16899296a2227bab4de9bc3926cbb5b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Thu, 2 Apr 2026 17:55:11 +0200 Subject: [PATCH 13/19] feature(examples): add block depth (security parameter) in result of certify command for blocks and transactionsV2 --- examples/client-cardano-block/src/main.rs | 7 +++++-- examples/client-cardano-transaction-v2/src/main.rs | 5 +++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/examples/client-cardano-block/src/main.rs b/examples/client-cardano-block/src/main.rs index c9568996b2b..214407ec1dc 100644 --- a/examples/client-cardano-block/src/main.rs +++ b/examples/client-cardano-block/src/main.rs @@ -98,8 +98,11 @@ pub fn log_certify_information( println!("Following Cardano blocks have been successfully certified by Mithril."); for block in verified_blocks.certified_blocks() { println!( - r###"- block hash '{}', block number '{}', block slot '{}'"###, - block.block_hash, block.block_number, block.slot_number + r###"- block hash '{}', block number '{}', block slot '{}', block depth '{}'"###, + block.block_hash, + block.block_number, + block.slot_number, + verified_blocks.security_parameter() ); } } diff --git a/examples/client-cardano-transaction-v2/src/main.rs b/examples/client-cardano-transaction-v2/src/main.rs index 85bbca34c0a..bfc007a3620 100644 --- a/examples/client-cardano-transaction-v2/src/main.rs +++ b/examples/client-cardano-transaction-v2/src/main.rs @@ -106,11 +106,12 @@ pub fn log_certify_information( println!("Following Cardano transactions have been successfully certified by Mithril."); for transaction in verified_transactions.certified_transactions() { println!( - r###"- transaction hash '{}', block hash '{}', block number '{}', transaction slot '{}'"###, + r###"- transaction hash '{}', block hash '{}', block number '{}', transaction slot '{}', block depth '{}'"###, transaction.transaction_hash, transaction.block_hash, transaction.block_number, - transaction.slot_number + transaction.slot_number, + verified_transactions.security_parameter() ); } } From 6e0b0c8c7f1715c9b02ba9603746a211777ea703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Fri, 3 Apr 2026 12:38:52 +0200 Subject: [PATCH 14/19] tests(aggregator-fake): update default data with blockNumberOffset for CardanoBlocksTransactions signed entity type --- .../cardano-blocks-txs-snapshots-list.json | 107 +- .../cardano-blocks-txs-snapshots.json | 117 +- .../default_data/cardano-databases-list.json | 122 +- .../default_data/cardano-databases.json | 270 ++- .../cardano-stake-distributions-list.json | 64 +- .../cardano-stake-distributions.json | 112 +- .../default_data/cblk-proofs-list.json | 40 +- .../default_data/cblk-proofs.json | 300 +-- .../default_data/certificates-list.json | 533 +++--- .../default_data/certificates.json | 1615 ++++++++++------- .../default_data/ctx-proofs-list.json | 11 +- .../default_data/ctx-proofs-v2-list.json | 11 +- .../default_data/ctx-proofs-v2.json | 85 +- .../default_data/ctx-proofs.json | 53 +- .../default_data/ctx-snapshots-list.json | 172 +- .../default_data/ctx-snapshots.json | 190 +- .../default_data/epoch-settings.json | 34 +- .../mithril-stake-distributions-list.json | 64 +- .../mithril-stake-distributions.json | 208 +-- .../default_data/snapshots-list.json | 184 +- .../default_data/snapshots.json | 192 +- .../default_data/status.json | 4 +- 22 files changed, 2546 insertions(+), 1942 deletions(-) diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-blocks-txs-snapshots-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-blocks-txs-snapshots-list.json index ce42bc62aca..7e9cac4feb3 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-blocks-txs-snapshots-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-blocks-txs-snapshots-list.json @@ -1,65 +1,74 @@ [ { - "merkle_root": "a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d", - "epoch": 21, - "block_number_signed": 644, - "block_number_tip": 645, - "hash": "6ccc26ae29fe0e5fc4bf4eed980ec63baf9bfffc4a4fb10ef46321286f88f82d", - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", - "created_at": "2026-03-13T08:42:50.213305961Z" + "merkle_root": "6afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9", + "epoch": 16, + "block_number_signed": 494, + "block_number_tip": 495, + "hash": "0fd5c1b96926bc1e45c2e4616af2a0d8171b9c9b0f5ce78de14970cb66e3af87", + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", + "created_at": "2026-04-08T08:02:26.205651851Z" }, { - "merkle_root": "88311addfa37d60dcaf4de731c7678179eb3ab0b82a9e59f6b8ebc867a83e9eb", - "epoch": 20, - "block_number_signed": 614, - "block_number_tip": 615, - "hash": "b32abf282faceee601a97c7d30575adcd3021bdd51ca2665e6ce30563d93f167", - "certificate_hash": "9f2887a27d2300529dfa6a1992c38a3817f8514e0f22a347b4b4ba9d06280369", - "created_at": "2026-03-13T08:42:47.211130582Z" + "merkle_root": "ce70d091af27bef03f7b9c4eaf87393c265490f7cf97b6505d3fbe60c9ac342f", + "epoch": 15, + "block_number_signed": 464, + "block_number_tip": 465, + "hash": "9611ba09628c529fbe216b921459aeded0c005f8bd25b0717dcaa9598cd10d4b", + "certificate_hash": "e3d280143c9b4364a34cdc69131c2c2e85779fa830f4a8a08ced9cf92cbe4e33", + "created_at": "2026-04-08T08:02:23.201022075Z" }, { - "merkle_root": "aa0dc9a955c515838301af1822a272c8bcc365067fa340a5141d6063260fc243", - "epoch": 19, - "block_number_signed": 584, - "block_number_tip": 585, - "hash": "fe9de63d899014c76a675f703f1bab9d887a4454da85ab5237d4b385e4c921a6", - "certificate_hash": "032dcfc39d28bb22710bb600b9ebe88b1c6bcaa24e2e03adaa02c2b70b6a25f1", - "created_at": "2026-03-13T08:42:44.212582357Z" + "merkle_root": "f95075e1cd0bd07a490d7bed2277451acae49ae72577d87342b943c4fbaf1d80", + "epoch": 14, + "block_number_signed": 434, + "block_number_tip": 435, + "hash": "c82783e38339a20a01e0339cc60bb50a2d1cc64f5b5bc23e1cab17ddce3e19bc", + "certificate_hash": "c023039d61595c34e095d313be3fef1232fb251dcb297d79b9d3e4a38266bcf1", + "created_at": "2026-04-08T08:02:20.195643432Z" }, { - "merkle_root": "1dca091175041aa8eee83988357921b2e122c0760679470c5c04b9182e3a5b78", - "epoch": 18, - "block_number_signed": 554, - "block_number_tip": 555, - "hash": "b4c4001eea4ec424da838b6545e2ef8a3b87e3bc4e038821bda1e941746c1ab4", - "certificate_hash": "fa0304a140be74907e9fcff9d14f03a74660020d8a95371a314c505bbebb8a48", - "created_at": "2026-03-13T08:42:41.211594927Z" + "merkle_root": "7bd0675ca428e847dc60235f09f714a3990a595368b50c1887fa91e85fa5c91e", + "epoch": 13, + "block_number_signed": 404, + "block_number_tip": 405, + "hash": "8781fa614fa832a3175e8405bdf3f8bf5c356fa9dc7ddaf2ca5975e804841600", + "certificate_hash": "d2c6f296bd1746b5de9fe30a956d7e01e9724683e97e4100ce9aab2be4d94a6a", + "created_at": "2026-04-08T08:02:17.693113772Z" }, { - "merkle_root": "e777c383788e492d3de75a2ea9c429b2b393533976bfe917b04f100fdd41bdd9", - "epoch": 17, - "block_number_signed": 524, - "block_number_tip": 525, - "hash": "43c47d65209e49a4267f0d976d26d468051959b2385b727fe024d65e6216f8f1", - "certificate_hash": "69389c6e8a4db66854e4c047f9a09a922369bb7c2c3d60a53691d41c895b538e", - "created_at": "2026-03-13T08:42:38.209794377Z" + "merkle_root": "79c83ca81d3d4670a5c5828f49acf58ceaafa9edf65164820ec5a93de4228a07", + "epoch": 12, + "block_number_signed": 374, + "block_number_tip": 375, + "hash": "3edfbc6ceb48de0ba1482275ff883eaf8dd49e95ffaaaee681f0fefb9ffde5dc", + "certificate_hash": "8451cd84cadbe685cabc89b1c0eba5f1c38014372f20a48d07e1bc068fd20d24", + "created_at": "2026-04-08T08:02:14.196672636Z" }, { - "merkle_root": "64540e3e57ffaa4ab52ef1c3e320ccb85ba5578f943dfb016937ee63db57bb72", - "epoch": 16, - "block_number_signed": 494, - "block_number_tip": 495, - "hash": "dcb445733ac3f99ce016ecdf285b41af775380f00f7fb15813128c98a9eb44c2", - "certificate_hash": "db9b416008d4cbec14d7266e39418eafbe0ee24cdad812b5c6eba534899f35cf", - "created_at": "2026-03-13T08:42:35.207623849Z" + "merkle_root": "91cf117956dbed33b33dede4d58e1ff93ba017865833f52a8c17290dff05a236", + "epoch": 11, + "block_number_signed": 344, + "block_number_tip": 345, + "hash": "bdd6b1f8a22958638630b68a9c29def0d85e065626e788a255e18ee2cb1e2e81", + "certificate_hash": "2829ec0ae8ca65312132c4a1588b28ff0c04f1afd5960c3cf89ef4e96efef93c", + "created_at": "2026-04-08T08:02:11.194619218Z" }, { - "merkle_root": "a1d11165e2ca5dd6f57630f5a7727d080507cf5500002a26d1d47e4a324bbe74", - "epoch": 15, - "block_number_signed": 464, - "block_number_tip": 465, - "hash": "99d66c39ed86b96d7a4c5e77615d22fe888b9f6d94d41f102811157a905beff3", - "certificate_hash": "00e7f18ff19b5caea408b120668130b6354c4609e6cee22dc441838ebe73ceaa", - "created_at": "2026-03-13T08:42:32.208396249Z" + "merkle_root": "b6fef3ce28147694e3db923bc235baae4fbb30be8c865b8ad9cf3dd9ffb1aad1", + "epoch": 10, + "block_number_signed": 314, + "block_number_tip": 315, + "hash": "f078744b6462708d491bf8a49c5b20796d14dadfd43327cec62635ec2c30b67a", + "certificate_hash": "697601b87537179f36d5828425a79fbc2f0e59929cfaa45708d8d1b19dcc5924", + "created_at": "2026-04-08T08:02:08.198823158Z" + }, + { + "merkle_root": "6f2255ed3fde586b6ebd5ae43c3603ecb5fa377d9e101041606f803a219698c7", + "epoch": 9, + "block_number_signed": 284, + "block_number_tip": 285, + "hash": "068455d6d76c69269b5ebe868cdb4aa0c72505734e98de19770c60ac179f27c9", + "certificate_hash": "48ebd97b060bcda6a492c922d152785c740439ffd5c92eca326d98ba5b84f313", + "created_at": "2026-04-08T08:02:05.203980317Z" } ] diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-blocks-txs-snapshots.json b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-blocks-txs-snapshots.json index d0e0edb51ef..1395a7edaca 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-blocks-txs-snapshots.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-blocks-txs-snapshots.json @@ -1,65 +1,74 @@ { - "43c47d65209e49a4267f0d976d26d468051959b2385b727fe024d65e6216f8f1": { - "merkle_root": "e777c383788e492d3de75a2ea9c429b2b393533976bfe917b04f100fdd41bdd9", - "epoch": 17, - "block_number_signed": 524, - "block_number_tip": 525, - "hash": "43c47d65209e49a4267f0d976d26d468051959b2385b727fe024d65e6216f8f1", - "certificate_hash": "69389c6e8a4db66854e4c047f9a09a922369bb7c2c3d60a53691d41c895b538e", - "created_at": "2026-03-13T08:42:38.209794377Z" + "068455d6d76c69269b5ebe868cdb4aa0c72505734e98de19770c60ac179f27c9": { + "merkle_root": "6f2255ed3fde586b6ebd5ae43c3603ecb5fa377d9e101041606f803a219698c7", + "epoch": 9, + "block_number_signed": 284, + "block_number_tip": 285, + "hash": "068455d6d76c69269b5ebe868cdb4aa0c72505734e98de19770c60ac179f27c9", + "certificate_hash": "48ebd97b060bcda6a492c922d152785c740439ffd5c92eca326d98ba5b84f313", + "created_at": "2026-04-08T08:02:05.203980317Z" }, - "6ccc26ae29fe0e5fc4bf4eed980ec63baf9bfffc4a4fb10ef46321286f88f82d": { - "merkle_root": "a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d", - "epoch": 21, - "block_number_signed": 644, - "block_number_tip": 645, - "hash": "6ccc26ae29fe0e5fc4bf4eed980ec63baf9bfffc4a4fb10ef46321286f88f82d", - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", - "created_at": "2026-03-13T08:42:50.213305961Z" + "0fd5c1b96926bc1e45c2e4616af2a0d8171b9c9b0f5ce78de14970cb66e3af87": { + "merkle_root": "6afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9", + "epoch": 16, + "block_number_signed": 494, + "block_number_tip": 495, + "hash": "0fd5c1b96926bc1e45c2e4616af2a0d8171b9c9b0f5ce78de14970cb66e3af87", + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", + "created_at": "2026-04-08T08:02:26.205651851Z" + }, + "3edfbc6ceb48de0ba1482275ff883eaf8dd49e95ffaaaee681f0fefb9ffde5dc": { + "merkle_root": "79c83ca81d3d4670a5c5828f49acf58ceaafa9edf65164820ec5a93de4228a07", + "epoch": 12, + "block_number_signed": 374, + "block_number_tip": 375, + "hash": "3edfbc6ceb48de0ba1482275ff883eaf8dd49e95ffaaaee681f0fefb9ffde5dc", + "certificate_hash": "8451cd84cadbe685cabc89b1c0eba5f1c38014372f20a48d07e1bc068fd20d24", + "created_at": "2026-04-08T08:02:14.196672636Z" + }, + "8781fa614fa832a3175e8405bdf3f8bf5c356fa9dc7ddaf2ca5975e804841600": { + "merkle_root": "7bd0675ca428e847dc60235f09f714a3990a595368b50c1887fa91e85fa5c91e", + "epoch": 13, + "block_number_signed": 404, + "block_number_tip": 405, + "hash": "8781fa614fa832a3175e8405bdf3f8bf5c356fa9dc7ddaf2ca5975e804841600", + "certificate_hash": "d2c6f296bd1746b5de9fe30a956d7e01e9724683e97e4100ce9aab2be4d94a6a", + "created_at": "2026-04-08T08:02:17.693113772Z" }, - "99d66c39ed86b96d7a4c5e77615d22fe888b9f6d94d41f102811157a905beff3": { - "merkle_root": "a1d11165e2ca5dd6f57630f5a7727d080507cf5500002a26d1d47e4a324bbe74", + "9611ba09628c529fbe216b921459aeded0c005f8bd25b0717dcaa9598cd10d4b": { + "merkle_root": "ce70d091af27bef03f7b9c4eaf87393c265490f7cf97b6505d3fbe60c9ac342f", "epoch": 15, "block_number_signed": 464, "block_number_tip": 465, - "hash": "99d66c39ed86b96d7a4c5e77615d22fe888b9f6d94d41f102811157a905beff3", - "certificate_hash": "00e7f18ff19b5caea408b120668130b6354c4609e6cee22dc441838ebe73ceaa", - "created_at": "2026-03-13T08:42:32.208396249Z" + "hash": "9611ba09628c529fbe216b921459aeded0c005f8bd25b0717dcaa9598cd10d4b", + "certificate_hash": "e3d280143c9b4364a34cdc69131c2c2e85779fa830f4a8a08ced9cf92cbe4e33", + "created_at": "2026-04-08T08:02:23.201022075Z" }, - "b32abf282faceee601a97c7d30575adcd3021bdd51ca2665e6ce30563d93f167": { - "merkle_root": "88311addfa37d60dcaf4de731c7678179eb3ab0b82a9e59f6b8ebc867a83e9eb", - "epoch": 20, - "block_number_signed": 614, - "block_number_tip": 615, - "hash": "b32abf282faceee601a97c7d30575adcd3021bdd51ca2665e6ce30563d93f167", - "certificate_hash": "9f2887a27d2300529dfa6a1992c38a3817f8514e0f22a347b4b4ba9d06280369", - "created_at": "2026-03-13T08:42:47.211130582Z" + "bdd6b1f8a22958638630b68a9c29def0d85e065626e788a255e18ee2cb1e2e81": { + "merkle_root": "91cf117956dbed33b33dede4d58e1ff93ba017865833f52a8c17290dff05a236", + "epoch": 11, + "block_number_signed": 344, + "block_number_tip": 345, + "hash": "bdd6b1f8a22958638630b68a9c29def0d85e065626e788a255e18ee2cb1e2e81", + "certificate_hash": "2829ec0ae8ca65312132c4a1588b28ff0c04f1afd5960c3cf89ef4e96efef93c", + "created_at": "2026-04-08T08:02:11.194619218Z" }, - "b4c4001eea4ec424da838b6545e2ef8a3b87e3bc4e038821bda1e941746c1ab4": { - "merkle_root": "1dca091175041aa8eee83988357921b2e122c0760679470c5c04b9182e3a5b78", - "epoch": 18, - "block_number_signed": 554, - "block_number_tip": 555, - "hash": "b4c4001eea4ec424da838b6545e2ef8a3b87e3bc4e038821bda1e941746c1ab4", - "certificate_hash": "fa0304a140be74907e9fcff9d14f03a74660020d8a95371a314c505bbebb8a48", - "created_at": "2026-03-13T08:42:41.211594927Z" - }, - "dcb445733ac3f99ce016ecdf285b41af775380f00f7fb15813128c98a9eb44c2": { - "merkle_root": "64540e3e57ffaa4ab52ef1c3e320ccb85ba5578f943dfb016937ee63db57bb72", - "epoch": 16, - "block_number_signed": 494, - "block_number_tip": 495, - "hash": "dcb445733ac3f99ce016ecdf285b41af775380f00f7fb15813128c98a9eb44c2", - "certificate_hash": "db9b416008d4cbec14d7266e39418eafbe0ee24cdad812b5c6eba534899f35cf", - "created_at": "2026-03-13T08:42:35.207623849Z" + "c82783e38339a20a01e0339cc60bb50a2d1cc64f5b5bc23e1cab17ddce3e19bc": { + "merkle_root": "f95075e1cd0bd07a490d7bed2277451acae49ae72577d87342b943c4fbaf1d80", + "epoch": 14, + "block_number_signed": 434, + "block_number_tip": 435, + "hash": "c82783e38339a20a01e0339cc60bb50a2d1cc64f5b5bc23e1cab17ddce3e19bc", + "certificate_hash": "c023039d61595c34e095d313be3fef1232fb251dcb297d79b9d3e4a38266bcf1", + "created_at": "2026-04-08T08:02:20.195643432Z" }, - "fe9de63d899014c76a675f703f1bab9d887a4454da85ab5237d4b385e4c921a6": { - "merkle_root": "aa0dc9a955c515838301af1822a272c8bcc365067fa340a5141d6063260fc243", - "epoch": 19, - "block_number_signed": 584, - "block_number_tip": 585, - "hash": "fe9de63d899014c76a675f703f1bab9d887a4454da85ab5237d4b385e4c921a6", - "certificate_hash": "032dcfc39d28bb22710bb600b9ebe88b1c6bcaa24e2e03adaa02c2b70b6a25f1", - "created_at": "2026-03-13T08:42:44.212582357Z" + "f078744b6462708d491bf8a49c5b20796d14dadfd43327cec62635ec2c30b67a": { + "merkle_root": "b6fef3ce28147694e3db923bc235baae4fbb30be8c865b8ad9cf3dd9ffb1aad1", + "epoch": 10, + "block_number_signed": 314, + "block_number_tip": 315, + "hash": "f078744b6462708d491bf8a49c5b20796d14dadfd43327cec62635ec2c30b67a", + "certificate_hash": "697601b87537179f36d5828425a79fbc2f0e59929cfaa45708d8d1b19dcc5924", + "created_at": "2026-04-08T08:02:08.198823158Z" } } diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-databases-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-databases-list.json index f8ae3505e36..2cf686bb2bf 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-databases-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-databases-list.json @@ -1,86 +1,110 @@ [ { - "hash": "20550dd034b82c8d12d6d23de8c029815fec27aba81a42f6a5da3bb222c89182", - "merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb", + "hash": "fc883452a34e5858086136cbb1b86aa88e82c63fe10ed6daafc61d4d97c5c7a6", + "merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6", "beacon": { - "epoch": 21, - "immutable_file_number": 5 + "epoch": 16, + "immutable_file_number": 3 }, - "certificate_hash": "23e332c7ce982bbde143fa68f97b69ee4ca0c3b08821836b7e52e5f7ee81aa21", - "total_db_size_uncompressed": 511394, + "certificate_hash": "c58e8c4937329e4e3067b0efcf130d3f49009d4d2fde92b88dd7e018880f8636", + "total_db_size_uncompressed": 373039, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:49.220221335Z" + "created_at": "2026-04-08T08:02:25.219571641Z" }, { - "hash": "66f97ff6a13d586b6344a1335728558992217b95483e35b7fb2a5dc70cb4338d", - "merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb", + "hash": "6062cd4eb92649c0b8609e23a55af9b2f5ccf8c75b3a538ffdb0d8e62a14ee2d", + "merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6", "beacon": { - "epoch": 20, - "immutable_file_number": 5 + "epoch": 15, + "immutable_file_number": 3 }, - "certificate_hash": "dfff7288d911f52422e7315b979191ccf74f736017ad7fc9741e4225c4e62482", - "total_db_size_uncompressed": 485200, + "certificate_hash": "232fa5b6c75f1d29809e51f90e4a912f88a519a0aae3dd9046daad631568ccbb", + "total_db_size_uncompressed": 346417, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:46.469270675Z" + "created_at": "2026-04-08T08:02:22.231594386Z" }, { - "hash": "194190a73a442336bad44eda76b0fc7df295d631b90ff8e264d1d6ed052a4837", - "merkle_root": "91381531385f9b95ca544297c9ee75010615661f720c117b0a0df24db19bf683", + "hash": "f7f15e52351d22a47d1d1cba29ac6fa79cc33c01446dd198add258ae40452097", + "merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6", "beacon": { - "epoch": 19, - "immutable_file_number": 4 + "epoch": 14, + "immutable_file_number": 3 }, - "certificate_hash": "bb8321282158276637d6bfa4766b0a5769cf2ec837db3042044dc0ed4d65c4da", - "total_db_size_uncompressed": 454897, + "certificate_hash": "2b91e654a62a5d34ee989101c4a2a8362cbed44280836122a7bdb2cbed3fed02", + "total_db_size_uncompressed": 317959, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:43.218110253Z" + "created_at": "2026-04-08T08:02:19.224537365Z" }, { - "hash": "95cb75607e968eac556534f744bf1f1514422047084250885902faf76d0fafc1", - "merkle_root": "91381531385f9b95ca544297c9ee75010615661f720c117b0a0df24db19bf683", + "hash": "152337464d0370b2cc262fef2bc3cff1ae21f032c7adc941064ac72113c81e47", + "merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6", "beacon": { - "epoch": 18, - "immutable_file_number": 4 + "epoch": 13, + "immutable_file_number": 3 }, - "certificate_hash": "b199a418cdc34f56221303bebf99ba838111ba3380c1f2022565a0332bfd551e", - "total_db_size_uncompressed": 428275, + "certificate_hash": "59cf9a7f10a453df30892d3dc6a0173efc6846a5c1b8e5f9c5f20d39cb656269", + "total_db_size_uncompressed": 300580, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:40.221988419Z" + "created_at": "2026-04-08T08:02:17.463161851Z" }, { - "hash": "fa516cca2bb9605626fbe2f01bead755218cc45cd7d66a356cfdb82aebb4a464", - "merkle_root": "91381531385f9b95ca544297c9ee75010615661f720c117b0a0df24db19bf683", + "hash": "cf9ac4a0ae2f90d0b86b51e5244f2ee9c179d4251021a1fbfee520f2f079777b", + "merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04", "beacon": { - "epoch": 17, - "immutable_file_number": 4 + "epoch": 13, + "immutable_file_number": 2 }, - "certificate_hash": "be1b94ed76fd39ff0e01277650a989abb0f12457d980a06bfb2866bcaf94de18", - "total_db_size_uncompressed": 400493, + "certificate_hash": "39c00306eeef28263944bfe0ddc239d1d8fe7048d6d1d1589fe183bba9eed316", + "total_db_size_uncompressed": 288637, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:37.218888419Z" + "created_at": "2026-04-08T08:02:16.206769240Z" }, { - "hash": "15fd11554b927c84e39ed11174c77479cd774aae8877c65a9a2bbf68c18aa316", - "merkle_root": "b4da4a96d6af28614a8347dbf8dff91488c1768f060023b07d823ab865fca999", + "hash": "fd669893dc54754a94530a291d84d194aed57f9c673ac63294fa9ba6e9af9300", + "merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04", "beacon": { - "epoch": 16, - "immutable_file_number": 3 + "epoch": 12, + "immutable_file_number": 2 }, - "certificate_hash": "9533e119987c792a522e1958b3edb690d761ca8d838d0408f7079910451c2f57", - "total_db_size_uncompressed": 372944, + "certificate_hash": "f00a3f5039195c81d3f9a47c566cdc549264b000287007f38fcf2a0b9d940d99", + "total_db_size_uncompressed": 261097, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:34.219442799Z" + "created_at": "2026-04-08T08:02:13.210452377Z" }, { - "hash": "0f050bd77cc6cded16578643135c4241d2939270a9935da403212d961c4021ad", - "merkle_root": "b4da4a96d6af28614a8347dbf8dff91488c1768f060023b07d823ab865fca999", + "hash": "6623a1c5044a041077e949ebe9b5542d582bf54bfea061c593b425fbe1e519af", + "merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04", "beacon": { - "epoch": 15, - "immutable_file_number": 3 + "epoch": 11, + "immutable_file_number": 2 + }, + "certificate_hash": "d3da763f3e1bf078031419394c6f81415096f89094794df38bab1694806cddec", + "total_db_size_uncompressed": 233315, + "cardano_node_version": "10.6.2", + "created_at": "2026-04-08T08:02:10.214302150Z" + }, + { + "hash": "c37b55b4e5e3bedeeffd468a38f7949b2bd09a4ca795bf9420433ff1cc3cad13", + "merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04", + "beacon": { + "epoch": 10, + "immutable_file_number": 2 + }, + "certificate_hash": "24d1800a5c2564000418398fa864f53f34a62db0172d87dc54ae578f252cc529", + "total_db_size_uncompressed": 208529, + "cardano_node_version": "10.6.2", + "created_at": "2026-04-08T08:02:07.460303703Z" + }, + { + "hash": "4ecb490cf81ba01604f5b364564fa770b3e5ee54aab6b803a13a90b134d22a11", + "merkle_root": "cd0693755010decd3f5cfd111ab0b502e60249ca85c5b6d0f552d53ef2deb4d1", + "beacon": { + "epoch": 9, + "immutable_file_number": 1 }, - "certificate_hash": "78df8fd62bd8a69f407f0105c1a6988c775eac75bb2680b710571faab3591b1c", - "total_db_size_uncompressed": 345404, + "certificate_hash": "ce91a1c3f44e65526703086a95603996538fadd33f20f48e611f3173b26dd6bd", + "total_db_size_uncompressed": 177984, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:31.226970349Z" + "created_at": "2026-04-08T08:02:04.228718606Z" } ] diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-databases.json b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-databases.json index da8ac733d98..e78c1a50443 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-databases.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-databases.json @@ -1,14 +1,112 @@ { - "0f050bd77cc6cded16578643135c4241d2939270a9935da403212d961c4021ad": { - "hash": "0f050bd77cc6cded16578643135c4241d2939270a9935da403212d961c4021ad", - "merkle_root": "b4da4a96d6af28614a8347dbf8dff91488c1768f060023b07d823ab865fca999", + "152337464d0370b2cc262fef2bc3cff1ae21f032c7adc941064ac72113c81e47": { + "hash": "152337464d0370b2cc262fef2bc3cff1ae21f032c7adc941064ac72113c81e47", + "merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6", + "network": "devnet", + "beacon": { + "epoch": 13, + "immutable_file_number": 3 + }, + "certificate_hash": "59cf9a7f10a453df30892d3dc6a0173efc6846a5c1b8e5f9c5f20d39cb656269", + "total_db_size_uncompressed": 300580, + "digests": { + "size_uncompressed": 1393, + "locations": [ + { + "type": "cloud_storage", + "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e13-i3.digests.tar.zst", + "compression_algorithm": "zstandard" + }, + { + "type": "aggregator", + "uri": "http://localhost:8080/aggregator/artifact/cardano-database/digests" + } + ] + }, + "immutables": { + "average_size_uncompressed": 92188, + "locations": [ + { + "type": "cloud_storage", + "uri": { + "Template": "http://localhost:8080/aggregator/cardano-database-download/immutable/{immutable_file_number}.tar.zst" + }, + "compression_algorithm": "zstandard" + } + ] + }, + "ancillary": { + "size_uncompressed": 24016, + "locations": [ + { + "type": "cloud_storage", + "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e13-i3.ancillary.tar.zst", + "compression_algorithm": "zstandard" + } + ] + }, + "cardano_node_version": "10.6.2", + "created_at": "2026-04-08T08:02:17.463161851Z" + }, + "4ecb490cf81ba01604f5b364564fa770b3e5ee54aab6b803a13a90b134d22a11": { + "hash": "4ecb490cf81ba01604f5b364564fa770b3e5ee54aab6b803a13a90b134d22a11", + "merkle_root": "cd0693755010decd3f5cfd111ab0b502e60249ca85c5b6d0f552d53ef2deb4d1", + "network": "devnet", + "beacon": { + "epoch": 9, + "immutable_file_number": 1 + }, + "certificate_hash": "ce91a1c3f44e65526703086a95603996538fadd33f20f48e611f3173b26dd6bd", + "total_db_size_uncompressed": 177984, + "digests": { + "size_uncompressed": 697, + "locations": [ + { + "type": "cloud_storage", + "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e9-i1.digests.tar.zst", + "compression_algorithm": "zstandard" + }, + { + "type": "aggregator", + "uri": "http://localhost:8080/aggregator/artifact/cardano-database/digests" + } + ] + }, + "immutables": { + "average_size_uncompressed": 92332, + "locations": [ + { + "type": "cloud_storage", + "uri": { + "Template": "http://localhost:8080/aggregator/cardano-database-download/immutable/{immutable_file_number}.tar.zst" + }, + "compression_algorithm": "zstandard" + } + ] + }, + "ancillary": { + "size_uncompressed": 85652, + "locations": [ + { + "type": "cloud_storage", + "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e9-i1.ancillary.tar.zst", + "compression_algorithm": "zstandard" + } + ] + }, + "cardano_node_version": "10.6.2", + "created_at": "2026-04-08T08:02:04.228718606Z" + }, + "6062cd4eb92649c0b8609e23a55af9b2f5ccf8c75b3a538ffdb0d8e62a14ee2d": { + "hash": "6062cd4eb92649c0b8609e23a55af9b2f5ccf8c75b3a538ffdb0d8e62a14ee2d", + "merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6", "network": "devnet", "beacon": { "epoch": 15, "immutable_file_number": 3 }, - "certificate_hash": "78df8fd62bd8a69f407f0105c1a6988c775eac75bb2680b710571faab3591b1c", - "total_db_size_uncompressed": 345404, + "certificate_hash": "232fa5b6c75f1d29809e51f90e4a912f88a519a0aae3dd9046daad631568ccbb", + "total_db_size_uncompressed": 346417, "digests": { "size_uncompressed": 1393, "locations": [ @@ -24,7 +122,7 @@ ] }, "immutables": { - "average_size_uncompressed": 91946, + "average_size_uncompressed": 92188, "locations": [ { "type": "cloud_storage", @@ -36,7 +134,7 @@ ] }, "ancillary": { - "size_uncompressed": 69566, + "size_uncompressed": 69853, "locations": [ { "type": "cloud_storage", @@ -46,24 +144,24 @@ ] }, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:31.226970349Z" + "created_at": "2026-04-08T08:02:22.231594386Z" }, - "15fd11554b927c84e39ed11174c77479cd774aae8877c65a9a2bbf68c18aa316": { - "hash": "15fd11554b927c84e39ed11174c77479cd774aae8877c65a9a2bbf68c18aa316", - "merkle_root": "b4da4a96d6af28614a8347dbf8dff91488c1768f060023b07d823ab865fca999", + "6623a1c5044a041077e949ebe9b5542d582bf54bfea061c593b425fbe1e519af": { + "hash": "6623a1c5044a041077e949ebe9b5542d582bf54bfea061c593b425fbe1e519af", + "merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04", "network": "devnet", "beacon": { - "epoch": 16, - "immutable_file_number": 3 + "epoch": 11, + "immutable_file_number": 2 }, - "certificate_hash": "9533e119987c792a522e1958b3edb690d761ca8d838d0408f7079910451c2f57", - "total_db_size_uncompressed": 372944, + "certificate_hash": "d3da763f3e1bf078031419394c6f81415096f89094794df38bab1694806cddec", + "total_db_size_uncompressed": 233315, "digests": { - "size_uncompressed": 1393, + "size_uncompressed": 1045, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e16-i3.digests.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e11-i2.digests.tar.zst", "compression_algorithm": "zstandard" }, { @@ -73,7 +171,7 @@ ] }, "immutables": { - "average_size_uncompressed": 91946, + "average_size_uncompressed": 92256, "locations": [ { "type": "cloud_storage", @@ -85,34 +183,34 @@ ] }, "ancillary": { - "size_uncompressed": 97106, + "size_uncompressed": 48802, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e16-i3.ancillary.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e11-i2.ancillary.tar.zst", "compression_algorithm": "zstandard" } ] }, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:34.219442799Z" + "created_at": "2026-04-08T08:02:10.214302150Z" }, - "194190a73a442336bad44eda76b0fc7df295d631b90ff8e264d1d6ed052a4837": { - "hash": "194190a73a442336bad44eda76b0fc7df295d631b90ff8e264d1d6ed052a4837", - "merkle_root": "91381531385f9b95ca544297c9ee75010615661f720c117b0a0df24db19bf683", + "c37b55b4e5e3bedeeffd468a38f7949b2bd09a4ca795bf9420433ff1cc3cad13": { + "hash": "c37b55b4e5e3bedeeffd468a38f7949b2bd09a4ca795bf9420433ff1cc3cad13", + "merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04", "network": "devnet", "beacon": { - "epoch": 19, - "immutable_file_number": 4 + "epoch": 10, + "immutable_file_number": 2 }, - "certificate_hash": "bb8321282158276637d6bfa4766b0a5769cf2ec837db3042044dc0ed4d65c4da", - "total_db_size_uncompressed": 454897, + "certificate_hash": "24d1800a5c2564000418398fa864f53f34a62db0172d87dc54ae578f252cc529", + "total_db_size_uncompressed": 208529, "digests": { - "size_uncompressed": 1741, + "size_uncompressed": 1045, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e19-i4.digests.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e10-i2.digests.tar.zst", "compression_algorithm": "zstandard" }, { @@ -122,7 +220,7 @@ ] }, "immutables": { - "average_size_uncompressed": 91972, + "average_size_uncompressed": 92256, "locations": [ { "type": "cloud_storage", @@ -134,34 +232,34 @@ ] }, "ancillary": { - "size_uncompressed": 87008, + "size_uncompressed": 24016, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e19-i4.ancillary.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e10-i2.ancillary.tar.zst", "compression_algorithm": "zstandard" } ] }, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:43.218110253Z" + "created_at": "2026-04-08T08:02:07.460303703Z" }, - "20550dd034b82c8d12d6d23de8c029815fec27aba81a42f6a5da3bb222c89182": { - "hash": "20550dd034b82c8d12d6d23de8c029815fec27aba81a42f6a5da3bb222c89182", - "merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb", + "cf9ac4a0ae2f90d0b86b51e5244f2ee9c179d4251021a1fbfee520f2f079777b": { + "hash": "cf9ac4a0ae2f90d0b86b51e5244f2ee9c179d4251021a1fbfee520f2f079777b", + "merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04", "network": "devnet", "beacon": { - "epoch": 21, - "immutable_file_number": 5 + "epoch": 13, + "immutable_file_number": 2 }, - "certificate_hash": "23e332c7ce982bbde143fa68f97b69ee4ca0c3b08821836b7e52e5f7ee81aa21", - "total_db_size_uncompressed": 511394, + "certificate_hash": "39c00306eeef28263944bfe0ddc239d1d8fe7048d6d1d1589fe183bba9eed316", + "total_db_size_uncompressed": 288637, "digests": { - "size_uncompressed": 2089, + "size_uncompressed": 1045, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e21-i5.digests.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e13-i2.digests.tar.zst", "compression_algorithm": "zstandard" }, { @@ -171,7 +269,7 @@ ] }, "immutables": { - "average_size_uncompressed": 91988, + "average_size_uncompressed": 92256, "locations": [ { "type": "cloud_storage", @@ -183,34 +281,34 @@ ] }, "ancillary": { - "size_uncompressed": 51454, + "size_uncompressed": 104124, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e21-i5.ancillary.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e13-i2.ancillary.tar.zst", "compression_algorithm": "zstandard" } ] }, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:49.220221335Z" + "created_at": "2026-04-08T08:02:16.206769240Z" }, - "66f97ff6a13d586b6344a1335728558992217b95483e35b7fb2a5dc70cb4338d": { - "hash": "66f97ff6a13d586b6344a1335728558992217b95483e35b7fb2a5dc70cb4338d", - "merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb", + "f7f15e52351d22a47d1d1cba29ac6fa79cc33c01446dd198add258ae40452097": { + "hash": "f7f15e52351d22a47d1d1cba29ac6fa79cc33c01446dd198add258ae40452097", + "merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6", "network": "devnet", "beacon": { - "epoch": 20, - "immutable_file_number": 5 + "epoch": 14, + "immutable_file_number": 3 }, - "certificate_hash": "dfff7288d911f52422e7315b979191ccf74f736017ad7fc9741e4225c4e62482", - "total_db_size_uncompressed": 485200, + "certificate_hash": "2b91e654a62a5d34ee989101c4a2a8362cbed44280836122a7bdb2cbed3fed02", + "total_db_size_uncompressed": 317959, "digests": { - "size_uncompressed": 2089, + "size_uncompressed": 1393, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e20-i5.digests.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e14-i3.digests.tar.zst", "compression_algorithm": "zstandard" }, { @@ -220,7 +318,7 @@ ] }, "immutables": { - "average_size_uncompressed": 91988, + "average_size_uncompressed": 92188, "locations": [ { "type": "cloud_storage", @@ -232,34 +330,34 @@ ] }, "ancillary": { - "size_uncompressed": 25260, + "size_uncompressed": 41395, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e20-i5.ancillary.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e14-i3.ancillary.tar.zst", "compression_algorithm": "zstandard" } ] }, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:46.469270675Z" + "created_at": "2026-04-08T08:02:19.224537365Z" }, - "95cb75607e968eac556534f744bf1f1514422047084250885902faf76d0fafc1": { - "hash": "95cb75607e968eac556534f744bf1f1514422047084250885902faf76d0fafc1", - "merkle_root": "91381531385f9b95ca544297c9ee75010615661f720c117b0a0df24db19bf683", + "fc883452a34e5858086136cbb1b86aa88e82c63fe10ed6daafc61d4d97c5c7a6": { + "hash": "fc883452a34e5858086136cbb1b86aa88e82c63fe10ed6daafc61d4d97c5c7a6", + "merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6", "network": "devnet", "beacon": { - "epoch": 18, - "immutable_file_number": 4 + "epoch": 16, + "immutable_file_number": 3 }, - "certificate_hash": "b199a418cdc34f56221303bebf99ba838111ba3380c1f2022565a0332bfd551e", - "total_db_size_uncompressed": 428275, + "certificate_hash": "c58e8c4937329e4e3067b0efcf130d3f49009d4d2fde92b88dd7e018880f8636", + "total_db_size_uncompressed": 373039, "digests": { - "size_uncompressed": 1741, + "size_uncompressed": 1393, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e18-i4.digests.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e16-i3.digests.tar.zst", "compression_algorithm": "zstandard" }, { @@ -269,7 +367,7 @@ ] }, "immutables": { - "average_size_uncompressed": 91972, + "average_size_uncompressed": 92188, "locations": [ { "type": "cloud_storage", @@ -281,34 +379,34 @@ ] }, "ancillary": { - "size_uncompressed": 60386, + "size_uncompressed": 96475, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e18-i4.ancillary.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e16-i3.ancillary.tar.zst", "compression_algorithm": "zstandard" } ] }, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:40.221988419Z" + "created_at": "2026-04-08T08:02:25.219571641Z" }, - "fa516cca2bb9605626fbe2f01bead755218cc45cd7d66a356cfdb82aebb4a464": { - "hash": "fa516cca2bb9605626fbe2f01bead755218cc45cd7d66a356cfdb82aebb4a464", - "merkle_root": "91381531385f9b95ca544297c9ee75010615661f720c117b0a0df24db19bf683", + "fd669893dc54754a94530a291d84d194aed57f9c673ac63294fa9ba6e9af9300": { + "hash": "fd669893dc54754a94530a291d84d194aed57f9c673ac63294fa9ba6e9af9300", + "merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04", "network": "devnet", "beacon": { - "epoch": 17, - "immutable_file_number": 4 + "epoch": 12, + "immutable_file_number": 2 }, - "certificate_hash": "be1b94ed76fd39ff0e01277650a989abb0f12457d980a06bfb2866bcaf94de18", - "total_db_size_uncompressed": 400493, + "certificate_hash": "f00a3f5039195c81d3f9a47c566cdc549264b000287007f38fcf2a0b9d940d99", + "total_db_size_uncompressed": 261097, "digests": { - "size_uncompressed": 1741, + "size_uncompressed": 1045, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e17-i4.digests.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/digests/devnet-e12-i2.digests.tar.zst", "compression_algorithm": "zstandard" }, { @@ -318,7 +416,7 @@ ] }, "immutables": { - "average_size_uncompressed": 91972, + "average_size_uncompressed": 92256, "locations": [ { "type": "cloud_storage", @@ -330,16 +428,16 @@ ] }, "ancillary": { - "size_uncompressed": 32604, + "size_uncompressed": 76584, "locations": [ { "type": "cloud_storage", - "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e17-i4.ancillary.tar.zst", + "uri": "http://localhost:8080/aggregator/cardano-database-download/ancillary/devnet-e12-i2.ancillary.tar.zst", "compression_algorithm": "zstandard" } ] }, "cardano_node_version": "10.6.2", - "created_at": "2026-03-13T08:42:37.218888419Z" + "created_at": "2026-04-08T08:02:13.210452377Z" } } diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-stake-distributions-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-stake-distributions-list.json index 6ea609d015a..294d71e4519 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-stake-distributions-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-stake-distributions-list.json @@ -1,50 +1,50 @@ [ { - "epoch": 21, - "hash": "104203e6f1942ede28d1aafb87dc013e4b4bfbe78b5c396752511c83c1121340", - "certificate_hash": "2a85a93bce0b129313af050f56869bc26ce6bda7fafcc2d7604ccb54a1fde071", - "created_at": "2026-03-13T08:42:51.712652651Z" + "epoch": 15, + "hash": "194bcb5fe27755ac5559caa77ad85d0939a57ee0c26a3fffe804f45c5e27eb52", + "certificate_hash": "546eea37e5a92f7cc3769d3d0301b7007a7c4e1221d7fad522fe268f2229956f", + "created_at": "2026-04-08T08:02:24.700871886Z" }, { - "epoch": 20, - "hash": "8f0393f899392f8d98c9b4bcc7376c055a780a633c1198762641095833aef6c4", - "certificate_hash": "91a5d05e42aa076b4868e4d1b94dde08ac1595c4b2cf7146ffb00e6c6a84f9a5", - "created_at": "2026-03-13T08:42:48.710815405Z" + "epoch": 14, + "hash": "91137c1575cdfda6602b59c3012ddac7c0a5adffcd1a47868fe5b98ae9198cd9", + "certificate_hash": "3ac652f3c89444a7d0f36ea1714cb03f54dcb32e037bb733b07e41be8644962e", + "created_at": "2026-04-08T08:02:21.695785136Z" }, { - "epoch": 19, - "hash": "d7867c16e864d929210e4c626a44a79f3b160d61753adff8f508b95f8820d888", - "certificate_hash": "fb29c6dd8527914601072217ce2db9573c05ea5c485144c53f22f3713d021ce3", - "created_at": "2026-03-13T08:42:45.714366473Z" + "epoch": 13, + "hash": "8ec30d6ecfbf24f59e59426db18deb303deffa07c7dfca3c5228ffae93262ba5", + "certificate_hash": "539ffd9d5f7aa7d33a090bf0a324902094356e27537ada146cfb7fd14acc9985", + "created_at": "2026-04-08T08:02:18.694712966Z" }, { - "epoch": 18, - "hash": "a9ffb71f5dc9dfb5f27b621ca68c4490b6b2251228be7af6b2b6d7c215369b7c", - "certificate_hash": "9bebeed7a38d9c491c6a9f2fa096dcc662c094759fb7eddbcfc5cea4ff7ba01d", - "created_at": "2026-03-13T08:42:42.710123380Z" + "epoch": 12, + "hash": "27517ccee3ef74046d2efb041f31e30aeb1b4df97366e16e3d93f5aa68bff0f9", + "certificate_hash": "8743d92594f2d15fa4d79b73c12ea6c943957eb661ae45a31a25682ff7acca83", + "created_at": "2026-04-08T08:02:15.701712857Z" }, { - "epoch": 17, - "hash": "1b4a0a75b0f0aa114a480585696dd4e74eb4680d1d0f15cccd694222ed104427", - "certificate_hash": "06837b0ee15a01f86789e38199084b77003799fc7a824eed268ebf2c590c3576", - "created_at": "2026-03-13T08:42:39.709263969Z" + "epoch": 11, + "hash": "7e9f0311382771ba8246f2f1ad7268e700a9cb83b57bc1d1fb7615f48546e858", + "certificate_hash": "bb3b5a1929b1c3eae110e9d134c3444260110302b5635fbb23430935d71cfba2", + "created_at": "2026-04-08T08:02:12.709698812Z" }, { - "epoch": 16, - "hash": "85343b3276feda41e1f6e759a47503d36f5b49734eefd7a00c1725cbb51c6200", - "certificate_hash": "0f55549ae8d874d0fb26aef9f6f2373e1dad79a5a68dbbfbcee3a1b4e2cd28bc", - "created_at": "2026-03-13T08:42:36.708068570Z" + "epoch": 10, + "hash": "6d9b2bb94497270b2dbe19079d43e0194e5a73ed353e1f4eb9abe35bb160ceeb", + "certificate_hash": "e77c90fe8e6f5840f53adb328e9e0cebcdbfc177097820ca648ea5a70a2fe23c", + "created_at": "2026-04-08T08:02:09.711787429Z" }, { - "epoch": 15, - "hash": "baf3b2a495f56a113d240d6f620a73d6995dcd25e5f5171953eeadfd634a8a1b", - "certificate_hash": "c8c9cb1b140f17d0b0cb115a6e673fb80bb1547a4fc97840ac96c1cdadd5e8a2", - "created_at": "2026-03-13T08:42:33.709845925Z" + "epoch": 9, + "hash": "5d0267c7dd6dab2227d7fd9ae918b9d882a7ba6d01ce220323f549f2feee98ee", + "certificate_hash": "7647ae201755589ca749765950d2d45dce03a1a40bc6fa9db0f429a43064ea3a", + "created_at": "2026-04-08T08:02:06.698312707Z" }, { - "epoch": 14, - "hash": "07f8254fde80d4ca6a32497741279f5671bb5c4a7c828fe970f3f283f8b3f81f", - "certificate_hash": "a0416b473bc0ffdb8c8c9c8bbd9c1f8c452c4be135dc6f521e563d12c5be059c", - "created_at": "2026-03-13T08:42:30.711827630Z" + "epoch": 8, + "hash": "228c7e33d7a64b78eec4cd79dd9eda4ac6505f5bba62123856d3e13e2cd2fa4f", + "certificate_hash": "82c790636808b41d3cfbcf7b34989a16c67caa20103a4fa86af976d2e8850e28", + "created_at": "2026-04-08T08:02:03.700642466Z" } ] diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-stake-distributions.json b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-stake-distributions.json index a08686521fc..a7bf3f936bf 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-stake-distributions.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/cardano-stake-distributions.json @@ -1,82 +1,82 @@ { - "07f8254fde80d4ca6a32497741279f5671bb5c4a7c828fe970f3f283f8b3f81f": { - "epoch": 14, - "hash": "07f8254fde80d4ca6a32497741279f5671bb5c4a7c828fe970f3f283f8b3f81f", - "certificate_hash": "a0416b473bc0ffdb8c8c9c8bbd9c1f8c452c4be135dc6f521e563d12c5be059c", + "194bcb5fe27755ac5559caa77ad85d0939a57ee0c26a3fffe804f45c5e27eb52": { + "epoch": 15, + "hash": "194bcb5fe27755ac5559caa77ad85d0939a57ee0c26a3fffe804f45c5e27eb52", + "certificate_hash": "546eea37e5a92f7cc3769d3d0301b7007a7c4e1221d7fad522fe268f2229956f", "stake_distribution": { - "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw": 20000000001, - "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f": 20000000001 + "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a": 20000000001, + "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r": 20000000001 }, - "created_at": "2026-03-13T08:42:30.711827630Z" + "created_at": "2026-04-08T08:02:24.700871886Z" }, - "104203e6f1942ede28d1aafb87dc013e4b4bfbe78b5c396752511c83c1121340": { - "epoch": 21, - "hash": "104203e6f1942ede28d1aafb87dc013e4b4bfbe78b5c396752511c83c1121340", - "certificate_hash": "2a85a93bce0b129313af050f56869bc26ce6bda7fafcc2d7604ccb54a1fde071", + "228c7e33d7a64b78eec4cd79dd9eda4ac6505f5bba62123856d3e13e2cd2fa4f": { + "epoch": 8, + "hash": "228c7e33d7a64b78eec4cd79dd9eda4ac6505f5bba62123856d3e13e2cd2fa4f", + "certificate_hash": "82c790636808b41d3cfbcf7b34989a16c67caa20103a4fa86af976d2e8850e28", "stake_distribution": { - "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw": 20000000001, - "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f": 20000000001 + "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a": 20000000001, + "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r": 20000000001 }, - "created_at": "2026-03-13T08:42:51.712652651Z" + "created_at": "2026-04-08T08:02:03.700642466Z" }, - "1b4a0a75b0f0aa114a480585696dd4e74eb4680d1d0f15cccd694222ed104427": { - "epoch": 17, - "hash": "1b4a0a75b0f0aa114a480585696dd4e74eb4680d1d0f15cccd694222ed104427", - "certificate_hash": "06837b0ee15a01f86789e38199084b77003799fc7a824eed268ebf2c590c3576", + "27517ccee3ef74046d2efb041f31e30aeb1b4df97366e16e3d93f5aa68bff0f9": { + "epoch": 12, + "hash": "27517ccee3ef74046d2efb041f31e30aeb1b4df97366e16e3d93f5aa68bff0f9", + "certificate_hash": "8743d92594f2d15fa4d79b73c12ea6c943957eb661ae45a31a25682ff7acca83", "stake_distribution": { - "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw": 20000000001, - "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f": 20000000001 + "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a": 20000000001, + "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r": 20000000001 }, - "created_at": "2026-03-13T08:42:39.709263969Z" + "created_at": "2026-04-08T08:02:15.701712857Z" }, - "85343b3276feda41e1f6e759a47503d36f5b49734eefd7a00c1725cbb51c6200": { - "epoch": 16, - "hash": "85343b3276feda41e1f6e759a47503d36f5b49734eefd7a00c1725cbb51c6200", - "certificate_hash": "0f55549ae8d874d0fb26aef9f6f2373e1dad79a5a68dbbfbcee3a1b4e2cd28bc", + "5d0267c7dd6dab2227d7fd9ae918b9d882a7ba6d01ce220323f549f2feee98ee": { + "epoch": 9, + "hash": "5d0267c7dd6dab2227d7fd9ae918b9d882a7ba6d01ce220323f549f2feee98ee", + "certificate_hash": "7647ae201755589ca749765950d2d45dce03a1a40bc6fa9db0f429a43064ea3a", "stake_distribution": { - "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw": 20000000001, - "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f": 20000000001 + "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a": 20000000001, + "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r": 20000000001 }, - "created_at": "2026-03-13T08:42:36.708068570Z" + "created_at": "2026-04-08T08:02:06.698312707Z" }, - "8f0393f899392f8d98c9b4bcc7376c055a780a633c1198762641095833aef6c4": { - "epoch": 20, - "hash": "8f0393f899392f8d98c9b4bcc7376c055a780a633c1198762641095833aef6c4", - "certificate_hash": "91a5d05e42aa076b4868e4d1b94dde08ac1595c4b2cf7146ffb00e6c6a84f9a5", + "6d9b2bb94497270b2dbe19079d43e0194e5a73ed353e1f4eb9abe35bb160ceeb": { + "epoch": 10, + "hash": "6d9b2bb94497270b2dbe19079d43e0194e5a73ed353e1f4eb9abe35bb160ceeb", + "certificate_hash": "e77c90fe8e6f5840f53adb328e9e0cebcdbfc177097820ca648ea5a70a2fe23c", "stake_distribution": { - "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw": 20000000001, - "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f": 20000000001 + "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a": 20000000001, + "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r": 20000000001 }, - "created_at": "2026-03-13T08:42:48.710815405Z" + "created_at": "2026-04-08T08:02:09.711787429Z" }, - "a9ffb71f5dc9dfb5f27b621ca68c4490b6b2251228be7af6b2b6d7c215369b7c": { - "epoch": 18, - "hash": "a9ffb71f5dc9dfb5f27b621ca68c4490b6b2251228be7af6b2b6d7c215369b7c", - "certificate_hash": "9bebeed7a38d9c491c6a9f2fa096dcc662c094759fb7eddbcfc5cea4ff7ba01d", + "7e9f0311382771ba8246f2f1ad7268e700a9cb83b57bc1d1fb7615f48546e858": { + "epoch": 11, + "hash": "7e9f0311382771ba8246f2f1ad7268e700a9cb83b57bc1d1fb7615f48546e858", + "certificate_hash": "bb3b5a1929b1c3eae110e9d134c3444260110302b5635fbb23430935d71cfba2", "stake_distribution": { - "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw": 20000000001, - "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f": 20000000001 + "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a": 20000000001, + "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r": 20000000001 }, - "created_at": "2026-03-13T08:42:42.710123380Z" + "created_at": "2026-04-08T08:02:12.709698812Z" }, - "baf3b2a495f56a113d240d6f620a73d6995dcd25e5f5171953eeadfd634a8a1b": { - "epoch": 15, - "hash": "baf3b2a495f56a113d240d6f620a73d6995dcd25e5f5171953eeadfd634a8a1b", - "certificate_hash": "c8c9cb1b140f17d0b0cb115a6e673fb80bb1547a4fc97840ac96c1cdadd5e8a2", + "8ec30d6ecfbf24f59e59426db18deb303deffa07c7dfca3c5228ffae93262ba5": { + "epoch": 13, + "hash": "8ec30d6ecfbf24f59e59426db18deb303deffa07c7dfca3c5228ffae93262ba5", + "certificate_hash": "539ffd9d5f7aa7d33a090bf0a324902094356e27537ada146cfb7fd14acc9985", "stake_distribution": { - "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw": 20000000001, - "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f": 20000000001 + "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a": 20000000001, + "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r": 20000000001 }, - "created_at": "2026-03-13T08:42:33.709845925Z" + "created_at": "2026-04-08T08:02:18.694712966Z" }, - "d7867c16e864d929210e4c626a44a79f3b160d61753adff8f508b95f8820d888": { - "epoch": 19, - "hash": "d7867c16e864d929210e4c626a44a79f3b160d61753adff8f508b95f8820d888", - "certificate_hash": "fb29c6dd8527914601072217ce2db9573c05ea5c485144c53f22f3713d021ce3", + "91137c1575cdfda6602b59c3012ddac7c0a5adffcd1a47868fe5b98ae9198cd9": { + "epoch": 14, + "hash": "91137c1575cdfda6602b59c3012ddac7c0a5adffcd1a47868fe5b98ae9198cd9", + "certificate_hash": "3ac652f3c89444a7d0f36ea1714cb03f54dcb32e037bb733b07e41be8644962e", "stake_distribution": { - "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw": 20000000001, - "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f": 20000000001 + "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a": 20000000001, + "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r": 20000000001 }, - "created_at": "2026-03-13T08:42:45.714366473Z" + "created_at": "2026-04-08T08:02:21.695785136Z" } } diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/cblk-proofs-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/cblk-proofs-list.json index c5022f54a6e..2309a0232f0 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/cblk-proofs-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/cblk-proofs-list.json @@ -1,62 +1,62 @@ [ { - "block_hash": "a2a6553f1cb9012f7015e3ce59793c24cb3fa4afc1993d03414c0673cfd4c4d3" + "block_hash": "8c1d340111b5e4706401933f3b1e99adfb3d0b84e5f4ec5f26368d221428931e" }, { - "block_hash": "83c2d245c9fbe49114457d9155ee7b121bd35efc1f7c08b985ee7e32b8bfdc97" + "block_hash": "e0ce9cd2e0a2627d6cefbddb1627a2d2c3d2f1b3baeebb85615da72ebf853ada" }, { - "block_hash": "1be39f9b5301509a484726c47da1ef2ead2c05a610f097b1b3f6bed989b43d49" + "block_hash": "e25ca52d5097529cca27082bbc696baab163f7724f97765c8f0046de2fe52e3c" }, { - "block_hash": "dbb79abd99cb64aa204d54586aa1b53906f9192301d7ac8bf3fcaed70831e11f" + "block_hash": "bc9f1c469c292eef102f7f1b8a4371dd25f7a3649b5012078c91097fcc3997dc" }, { - "block_hash": "6f7d86c05f9ca36c22d998b55f61db257df6ba236aa10c5ba2011c9d46ca58ee" + "block_hash": "18eb6c7b60bd17cfd2f0beafe339ba8445c91cda4140687573089f09f692b802" }, { - "block_hash": "d6bbe043f0a011026487dcb36a40f285d825d396ce757d236c144c59404763ad" + "block_hash": "acd49f0837ecb6e140d80bba8550a1597d27eed52c649f7640eea17b49d60ef3" }, { - "block_hash": "3abe86be097fe293506ae38f1901f30935173853692de16e79d8235524f1a233" + "block_hash": "9ad4a93a7489b15040c72b9faf8f50db45b1d01c079685fb5af3717e90c4a748" }, { - "block_hash": "6008a0b783ff2cfd6e8b98fdf326d226bc8002b55e4880c299043a79ad2817a0" + "block_hash": "711f6ea23e76dbb78ec4106acf99fb56a6ff60ba1390f0790ec72cc53c98dd17" }, { - "block_hash": "d32063768dc3f0f8567b452adf657bbfffcc152c7e30df3ac8449ec364510457" + "block_hash": "5b2e289b2f1d1d58528b62d9b9300b06194ccdbf985434c77abfc2162be45904" }, { - "block_hash": "68cf1e90273cab44106c0c04ddc89d1d4885bdb62fab627e305cbc18a7101655" + "block_hash": "4daea4e644a4cae98bb9f1bbc7fdd0631851587b160282bf5ea5f94dce410519" }, { - "block_hash": "b89754a8b258f2edb1f876fb7d6dca3f0d12e3c044cdd45fa1c1a8f603b19f90" + "block_hash": "f163ac7a74117a089645dc039bbae775311ae0fcf6347c0d7eb0f98c5e0e04da" }, { - "block_hash": "f9c44d40ae090bc9f7a466aa7ae49179d665efccaa79d6060532539d1568421c" + "block_hash": "291133ba21279f3553691d59b2f1bca14c9c550de77d67d764fde34b3c47e1bd" }, { - "block_hash": "24c2844970bb6d1f3521466e8aa91eccd991d56195071f1a8b14891a0eabdb44" + "block_hash": "f5a392f3b31a1f882820a641fb47a7e0d265de69849343a0a78e6d0eb8ea8d84" }, { - "block_hash": "e97360daa76613c3d1d09a6f39965166c359fe69f105aaac6f2ca39e8d1e279b" + "block_hash": "424ae1e5570654e062b45788abe16023dff387c339f2713a57cdc024e2944164" }, { - "block_hash": "aff37d7000c4c5242d9af161d3b44efe4fc57a3eb82f21e3e560a7373cea8aa8" + "block_hash": "e71c83616eb4632adf0db651c5bd66950daf7cfce9d895450c2a6a38c370ade9" }, { - "block_hash": "72e5665b70ad070040e3caa763cc51dba2d92dbafab248d72af4153d7603bd96" + "block_hash": "c640ab25679648f2a893087a8d6847e7749f53bc6ee4d734567931da16fef6aa" }, { - "block_hash": "7962c39b3dec96dc94d7df03dd5b75de034be9657288a357eef982960ce4a1b6" + "block_hash": "80986602477680e20f08a518b5949c795a917ce7a1bce283887534b20da72bdf" }, { - "block_hash": "6ec15508b5fa16586f49225ad840eeef84a93b4dba061fcfc63cfa5fcbdcc952" + "block_hash": "eb455206dac90518949c329fc5e107524ddbafea44549922b9a57bf4453cee25" }, { - "block_hash": "c0472c148f30409be757c2bd85103a4f83b6c9576ce348c5c167814775925218" + "block_hash": "b762ee02a7be0a5d3e8300ebd821f2f3cd0c28c5797421a597d114ac212d25c5" }, { - "block_hash": "69ef89818ad05f4e0b5957aa6bf839ea1c038f094d1f64c27373e9d2a96ec614" + "block_hash": "bb499f9655182f3e96633c7c911f257e1d941d292687cb6576a9fc749c37bfe2" } ] diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/cblk-proofs.json b/mithril-test-lab/mithril-aggregator-fake/default_data/cblk-proofs.json index 44f5939455c..5a36a572c56 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/cblk-proofs.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/cblk-proofs.json @@ -1,302 +1,322 @@ { - "1be39f9b5301509a484726c47da1ef2ead2c05a610f097b1b3f6bed989b43d49": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "18eb6c7b60bd17cfd2f0beafe339ba8445c91cda4140687573089f09f692b802": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "1be39f9b5301509a484726c47da1ef2ead2c05a610f097b1b3f6bed989b43d49", - "block_number": 582, - "slot_number": 582 + "block_hash": "18eb6c7b60bd17cfd2f0beafe339ba8445c91cda4140687573089f09f692b802", + "block_number": 490, + "slot_number": 490 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801164e426c6f636b2f316265333966396235333031353039613438343732366334376461316566326561643263303561363130663039376231623366366265643938396234336434392f3538322f3538321a04205860cb04c4460ec3610564d678d6730565119ad72d68b4be8465d52d252b44f920ad771485bb16ed29e7fb8c87aab4457a07e46acb7110506c586c7d0d0fd262514e426c6f636b2f383363326432343563396662653439313134343537643931353565653762313231626433356566633166376330386239383565653765333262386266646339372f3538332f3538334e426c6f636b2f613261363535336631636239303132663730313565336365353937393363323463623366613461666331393933643033343134633036373363666434633464332f3538342f35383400" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501124e426c6f636b2f313865623663376236306264313763666432663062656166653333396261383434356339316364613431343036383735373330383966303966363932623830322f3439302f3439301a04207fffd0fd4f9cead23ccd18ea0a84f969bda6f1643e100465c53a3c0e3383b9204e426c6f636b2f626339663163343639633239326565663130326637663162386134333731646432356637613336343962353031323037386339313039376663633339393764632f3439312f34393120c53d68d8a1a5cebf3fccfc73f70bfc48cf9e99871ead50dc75492821919e86e220df6d7300c7bf4d121881035d455ea2d8484ac812654dbc9564daffc38067b45500" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "24c2844970bb6d1f3521466e8aa91eccd991d56195071f1a8b14891a0eabdb44": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "291133ba21279f3553691d59b2f1bca14c9c550de77d67d764fde34b3c47e1bd": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "24c2844970bb6d1f3521466e8aa91eccd991d56195071f1a8b14891a0eabdb44", - "block_number": 572, - "slot_number": 572 + "block_hash": "291133ba21279f3553691d59b2f1bca14c9c550de77d67d764fde34b3c47e1bd", + "block_number": 483, + "slot_number": 483 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801034e426c6f636b2f323463323834343937306262366431663335323134363665386161393165636364393931643536313935303731663161386231343839316130656162646234342f3537322f3537321a044e426c6f636b2f663963343464343061653039306263396637613436366161376165343931373964363635656663636161373964363036303533323533396431353638343231632f3537332f353733203eb3c8e78e86503f30056f69249a2480a179edef0b17b6a40d0aa82128f119eb20304bfbefd02b5548fa6054bb17594cb543ccdb13c3a2c51a530e59e57a926b9d2031ee3342675c972e30d9c814756b7fa5d80f5dbf5d7f471166f262c6d1d49b4b00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501044e426c6f636b2f323931313333626132313237396633353533363931643539623266316263613134633963353530646537376436376437363466646533346233633437653162642f3438332f3438331a044e426c6f636b2f663561333932663362333161316638383238323061363431666234376137653064323635646536393834393334336130613738653664306562386561386438342f3438322f343832203095920930c23115eda3263120318b94d5d6a0beeb7b2630132d42e46b250b66206511ce434bb70c3efdedd3283044b5f24975eb85ca77f50d7ccfeb2f215a85f82087fac71ab94eaeebc65b7b3c85f571e2289d28ad4a8d41ec20c0be826119090b00" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "3abe86be097fe293506ae38f1901f30935173853692de16e79d8235524f1a233": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "424ae1e5570654e062b45788abe16023dff387c339f2713a57cdc024e2944164": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "3abe86be097fe293506ae38f1901f30935173853692de16e79d8235524f1a233", - "block_number": 578, - "slot_number": 578 + "block_hash": "424ae1e5570654e062b45788abe16023dff387c339f2713a57cdc024e2944164", + "block_number": 481, + "slot_number": 481 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb448010f4e426c6f636b2f336162653836626530393766653239333530366165333866313930316633303933353137333835333639326465313665373964383233353532346631613233332f3537382f3537381a04205860cb04c4460ec3610564d678d6730565119ad72d68b4be8465d52d252b44f94e426c6f636b2f643662626530343366306130313130323634383764636233366134306632383564383235643339366365373537643233366331343463353934303437363361642f3537392f35373920a1766c47f69c2671f4882c50609989afac389c8f2c04ec947d3206e179f60fbf20f6aec4340e36b9ad8b702cad534f18aa9b186e7cc4fc3a17c511c7a14016d13900" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501014e426c6f636b2f343234616531653535373036353465303632623435373838616265313630323364666633383763333339663237313361353763646330323465323934343136342f3438312f3438311a044e426c6f636b2f653731633833363136656234363332616466306462363531633562643636393530646166376366636539643839353435306332613661333863333730616465392f3438302f3438302057a000e12373e73f7a32f3b2871118601a8c1ceecfb2d88fb95c1b2cf6c35656206511ce434bb70c3efdedd3283044b5f24975eb85ca77f50d7ccfeb2f215a85f82087fac71ab94eaeebc65b7b3c85f571e2289d28ad4a8d41ec20c0be826119090b00" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "6008a0b783ff2cfd6e8b98fdf326d226bc8002b55e4880c299043a79ad2817a0": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "4daea4e644a4cae98bb9f1bbc7fdd0631851587b160282bf5ea5f94dce410519": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "6008a0b783ff2cfd6e8b98fdf326d226bc8002b55e4880c299043a79ad2817a0", - "block_number": 577, - "slot_number": 577 + "block_hash": "4daea4e644a4cae98bb9f1bbc7fdd0631851587b160282bf5ea5f94dce410519", + "block_number": 485, + "slot_number": 485 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb448010b4e426c6f636b2f363030386130623738336666326366643665386239386664663332366432323662633830303262353565343838306332393930343361373961643238313761302f3537372f3537371a044e426c6f636b2f643332303633373638646333663066383536376234353261646636353762626666666363313532633765333064663361633834343965633336343531303435372f3537362f353736203d005cce497c2a4219f08c4f812241af053a5ba9eb90933f89f7054a476ed421208068d8f94835d4dd884f4d471fc5f57d0389b34108e866b73e342d09486e46552031ee3342675c972e30d9c814756b7fa5d80f5dbf5d7f471166f262c6d1d49b4b00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501084e426c6f636b2f346461656134653634346134636165393862623966316262633766646430363331383531353837623136303238326266356561356639346463653431303531392f3438352f3438351a044e426c6f636b2f663136336163376137343131376130383936343564633033396262616537373533313161653066636636333437633064376562306639386335653065303464612f3438342f3438342089181283993216433a31903ff54abb22a6079273a70e5abcd570cf761498426b2004f28d9e97f6925f35cc4a6b355197f000179daa982020f34b6dd27c6a15080c2087fac71ab94eaeebc65b7b3c85f571e2289d28ad4a8d41ec20c0be826119090b00" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "68cf1e90273cab44106c0c04ddc89d1d4885bdb62fab627e305cbc18a7101655": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "5b2e289b2f1d1d58528b62d9b9300b06194ccdbf985434c77abfc2162be45904": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "68cf1e90273cab44106c0c04ddc89d1d4885bdb62fab627e305cbc18a7101655", - "block_number": 575, - "slot_number": 575 + "block_hash": "5b2e289b2f1d1d58528b62d9b9300b06194ccdbf985434c77abfc2162be45904", + "block_number": 486, + "slot_number": 486 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801084e426c6f636b2f363863663165393032373363616234343130366330633034646463383964316434383835626462363266616236323765333035636263313861373130313635352f3537352f3537351a044e426c6f636b2f623839373534613862323538663265646231663837366662376436646361336630643132653363303434636464343566613163316138663630336231396639302f3537342f35373420cbbbf13ed7bcc29ad928faa2a463e20db317b229ca8ce8b1d4b1d61f8148cd9c208068d8f94835d4dd884f4d471fc5f57d0389b34108e866b73e342d09486e46552031ee3342675c972e30d9c814756b7fa5d80f5dbf5d7f471166f262c6d1d49b4b00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd5010a4e426c6f636b2f356232653238396232663164316435383532386236326439623933303062303631393463636462663938353433346337376162666332313632626534353930342f3438362f3438361a044e426c6f636b2f373131663665613233653736646262373865633431303661636639396662353661366666363062613133393066303739306563373263633533633938646431372f3438372f343837207c178490b1790eb2676dbdd3ab0121581a5dbf9f545228fa45dd71339c90d0622004f28d9e97f6925f35cc4a6b355197f000179daa982020f34b6dd27c6a15080c2087fac71ab94eaeebc65b7b3c85f571e2289d28ad4a8d41ec20c0be826119090b00" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "69ef89818ad05f4e0b5957aa6bf839ea1c038f094d1f64c27373e9d2a96ec614": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "711f6ea23e76dbb78ec4106acf99fb56a6ff60ba1390f0790ec72cc53c98dd17": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "69ef89818ad05f4e0b5957aa6bf839ea1c038f094d1f64c27373e9d2a96ec614", - "block_number": 565, - "slot_number": 565 + "block_hash": "711f6ea23e76dbb78ec4106acf99fb56a6ff60ba1390f0790ec72cc53c98dd17", + "block_number": 487, + "slot_number": 487 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0147203323d76c9463081b3f430a4982ac13935d388b111385a8c29d73f5d00d241ff85205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e2220851b60407c3a7ba75852e9f489432394ade2fdd50aa2d10eea2c6f34f0c7d6e620b451621aaedaf364f621183371d060fcd7528cfd5d6c791356bbe492333e6cda200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb2b02fb3a022045e7d7f5933735705551990047c3362819d254352578d20a0785647fc841a48501124e426c6f636b2f363965663839383138616430356634653062353935376161366266383339656131633033386630393464316636346332373337336539643261393665633631342f3536352f3536351a04209fda676d3b0247f8345338b8cbce7eb32f67a49015dddf35ba3a73f2a4b1515a4e426c6f636b2f633034373263313438663330343039626537353763326264383531303361346638336236633935373663653334386335633136373831343737353932353231382f3536362f35363620e7ea0c9b00b015a1cffcf8c3c96e237b850deefa1358513277331b56954b2ed6206c7c2ea78f8e9e3153f28f371aa76f40cf7660b750be34acd5c6689a92fbabc600" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd5010b4e426c6f636b2f373131663665613233653736646262373865633431303661636639396662353661366666363062613133393066303739306563373263633533633938646431372f3438372f3438371a044e426c6f636b2f356232653238396232663164316435383532386236326439623933303062303631393463636462663938353433346337376162666332313632626534353930342f3438362f343836207c178490b1790eb2676dbdd3ab0121581a5dbf9f545228fa45dd71339c90d0622004f28d9e97f6925f35cc4a6b355197f000179daa982020f34b6dd27c6a15080c2087fac71ab94eaeebc65b7b3c85f571e2289d28ad4a8d41ec20c0be826119090b00" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "6ec15508b5fa16586f49225ad840eeef84a93b4dba061fcfc63cfa5fcbdcc952": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "80986602477680e20f08a518b5949c795a917ce7a1bce283887534b20da72bdf": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "6ec15508b5fa16586f49225ad840eeef84a93b4dba061fcfc63cfa5fcbdcc952", - "block_number": 567, - "slot_number": 567 + "block_hash": "80986602477680e20f08a518b5949c795a917ce7a1bce283887534b20da72bdf", + "block_number": 478, + "slot_number": 478 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0147203323d76c9463081b3f430a4982ac13935d388b111385a8c29d73f5d00d241ff85205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e2220851b60407c3a7ba75852e9f489432394ade2fdd50aa2d10eea2c6f34f0c7d6e620b451621aaedaf364f621183371d060fcd7528cfd5d6c791356bbe492333e6cda200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb2b02fb3a022045e7d7f5933735705551990047c3362819d254352578d20a0785647fc841a48501164e426c6f636b2f366563313535303862356661313635383666343932323561643834306565656638346139336234646261303631666366633633636661356663626463633935322f3536372f3536371a04209fda676d3b0247f8345338b8cbce7eb32f67a49015dddf35ba3a73f2a4b1515a205f5af1f6679e2da62cef012a9abc989c8887fb9861843fb8f98a4662fa0d65654e426c6f636b2f373936326333396233646563393664633934643764663033646435623735646530333462653936353732383861333537656566393832393630636534613162362f3536382f3536384e426c6f636b2f373265353636356237306164303730303430653363616137363363633531646261326439326462616661623234386437326166343135336437363033626439362f3536392f35363900" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013920592cdae40f309306115ea64653a03cc7f4bf9edadcb63982b1f4d1a89ab2f4354006207a24c35253f8bfc951edd19e959a864360d96864b212c5c008469f0037af9d4020a5bf28f5bf583921095e33987aa1508f91f1299432e7d75534c50458dcf8246d20d6c1064dc87208f887bcfaf46feee3b16157d566da7d26416587d46fd97118092048f9f3f606c2aef13fa0ec86e3bf46b6a4e7a358e0c5ca3da48c02a4569c17ca205c3f7d059675b16423fc33ee2d34ad6aab333b219feb16fb6c72e7eb72869f5920dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e01fbd101fbe0012099ef461cd4c8463f386031239f0e53cd07ea84e8fb671013b14950e0388efea001174e426c6f636b2f383039383636303234373736383065323066303861353138623539343963373935613931376365376131626365323833383837353334623230646137326264662f3437382f3437381a0420f528cafe36708fac93f780b4f17a495f80c3a0d43a9ecc9f8d43a9756de7a02c20f6f0e54ef1fcadb8ce53e6abd9670220f91ac86f3b6f34216e9ad4232c0890484e426c6f636b2f656234353532303664616339303531383934396333323966633565313037353234646462616665613434353439393232623961353762663434353363656532352f3437372f3437374e426c6f636b2f633634306162323536373936343866326138393330383761386436383437653737343966353362633665653464373334353637393331646131366665663661612f3437392f34373900" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "6f7d86c05f9ca36c22d998b55f61db257df6ba236aa10c5ba2011c9d46ca58ee": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "8c1d340111b5e4706401933f3b1e99adfb3d0b84e5f4ec5f26368d221428931e": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "6f7d86c05f9ca36c22d998b55f61db257df6ba236aa10c5ba2011c9d46ca58ee", - "block_number": 580, - "slot_number": 580 + "block_hash": "8c1d340111b5e4706401933f3b1e99adfb3d0b84e5f4ec5f26368d221428931e", + "block_number": 494, + "slot_number": 494 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801124e426c6f636b2f366637643836633035663963613336633232643939386235356636316462323537646636626132333661613130633562613230313163396434366361353865652f3538302f3538301a04205860cb04c4460ec3610564d678d6730565119ad72d68b4be8465d52d252b44f94e426c6f636b2f646262373961626439396362363461613230346435343538366161316235333930366639313932333031643761633862663366636165643730383331653131662f3538312f353831203a3d79b8a3f1e9509f1138fe79efc2de776f7b90e22339d68eedb57817db2fbb20f6aec4340e36b9ad8b702cad534f18aa9b186e7cc4fc3a17c511c7a14016d13900" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501194e426c6f636b2f386331643334303131316235653437303634303139333366336231653939616466623364306238346535663465633566323633363864323231343238393331652f3439342f3439341a03207fffd0fd4f9cead23ccd18ea0a84f969bda6f1643e100465c53a3c0e3383b920200d4aa7852a27360d4887c1ab1c2140b929ff45de58df349dbf2f8e89b684efc2204b4ba8ee4bb5363aececb7504ab5589da35618273a60c0e913c4005e4cb343af00" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "72e5665b70ad070040e3caa763cc51dba2d92dbafab248d72af4153d7603bd96": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "9ad4a93a7489b15040c72b9faf8f50db45b1d01c079685fb5af3717e90c4a748": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "72e5665b70ad070040e3caa763cc51dba2d92dbafab248d72af4153d7603bd96", - "block_number": 569, - "slot_number": 569 + "block_hash": "9ad4a93a7489b15040c72b9faf8f50db45b1d01c079685fb5af3717e90c4a748", + "block_number": 488, + "slot_number": 488 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0147203323d76c9463081b3f430a4982ac13935d388b111385a8c29d73f5d00d241ff85205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e2220851b60407c3a7ba75852e9f489432394ade2fdd50aa2d10eea2c6f34f0c7d6e620b451621aaedaf364f621183371d060fcd7528cfd5d6c791356bbe492333e6cda200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb2b02fb3a022045e7d7f5933735705551990047c3362819d254352578d20a0785647fc841a48501194e426c6f636b2f373265353636356237306164303730303430653363616137363363633531646261326439326462616661623234386437326166343135336437363033626439362f3536392f3536391a03209fda676d3b0247f8345338b8cbce7eb32f67a49015dddf35ba3a73f2a4b1515a205f5af1f6679e2da62cef012a9abc989c8887fb9861843fb8f98a4662fa0d6565200c4076d95d450ed8db8ef0aeb9ad4ab561af8a0ea740c4671c7fda72d8db177600" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd5010f4e426c6f636b2f396164346139336137343839623135303430633732623966616638663530646234356231643031633037393638356662356166333731376539306334613734382f3438382f3438381a04207fffd0fd4f9cead23ccd18ea0a84f969bda6f1643e100465c53a3c0e3383b9204e426c6f636b2f616364343966303833376563623665313430643830626261383535306131353937643237656564353263363439663736343065656131376234396436306566332f3438392f34383920e8b430bc4870a5f4806a79cc9b38e0ba60b617ffa3294139e6de5df57e34ebc220df6d7300c7bf4d121881035d455ea2d8484ac812654dbc9564daffc38067b45500" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "7962c39b3dec96dc94d7df03dd5b75de034be9657288a357eef982960ce4a1b6": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "acd49f0837ecb6e140d80bba8550a1597d27eed52c649f7640eea17b49d60ef3": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "7962c39b3dec96dc94d7df03dd5b75de034be9657288a357eef982960ce4a1b6", - "block_number": 568, - "slot_number": 568 + "block_hash": "acd49f0837ecb6e140d80bba8550a1597d27eed52c649f7640eea17b49d60ef3", + "block_number": 489, + "slot_number": 489 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0147203323d76c9463081b3f430a4982ac13935d388b111385a8c29d73f5d00d241ff85205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e2220851b60407c3a7ba75852e9f489432394ade2fdd50aa2d10eea2c6f34f0c7d6e620b451621aaedaf364f621183371d060fcd7528cfd5d6c791356bbe492333e6cda200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb2b02fb3a022045e7d7f5933735705551990047c3362819d254352578d20a0785647fc841a48501174e426c6f636b2f373936326333396233646563393664633934643764663033646435623735646530333462653936353732383861333537656566393832393630636534613162362f3536382f3536381a04209fda676d3b0247f8345338b8cbce7eb32f67a49015dddf35ba3a73f2a4b1515a205f5af1f6679e2da62cef012a9abc989c8887fb9861843fb8f98a4662fa0d65654e426c6f636b2f366563313535303862356661313635383666343932323561643834306565656638346139336234646261303631666366633633636661356663626463633935322f3536372f3536374e426c6f636b2f373265353636356237306164303730303430653363616137363363633531646261326439326462616661623234386437326166343135336437363033626439362f3536392f35363900" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501104e426c6f636b2f616364343966303833376563623665313430643830626261383535306131353937643237656564353263363439663736343065656131376234396436306566332f3438392f3438391a04207fffd0fd4f9cead23ccd18ea0a84f969bda6f1643e100465c53a3c0e3383b9204e426c6f636b2f396164346139336137343839623135303430633732623966616638663530646234356231643031633037393638356662356166333731376539306334613734382f3438382f34383820e8b430bc4870a5f4806a79cc9b38e0ba60b617ffa3294139e6de5df57e34ebc220df6d7300c7bf4d121881035d455ea2d8484ac812654dbc9564daffc38067b45500" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "83c2d245c9fbe49114457d9155ee7b121bd35efc1f7c08b985ee7e32b8bfdc97": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "b762ee02a7be0a5d3e8300ebd821f2f3cd0c28c5797421a597d114ac212d25c5": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "83c2d245c9fbe49114457d9155ee7b121bd35efc1f7c08b985ee7e32b8bfdc97", - "block_number": 583, - "slot_number": 583 + "block_hash": "b762ee02a7be0a5d3e8300ebd821f2f3cd0c28c5797421a597d114ac212d25c5", + "block_number": 476, + "slot_number": 476 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801174e426c6f636b2f383363326432343563396662653439313134343537643931353565653762313231626433356566633166376330386239383565653765333262386266646339372f3538332f3538331a04205860cb04c4460ec3610564d678d6730565119ad72d68b4be8465d52d252b44f920ad771485bb16ed29e7fb8c87aab4457a07e46acb7110506c586c7d0d0fd262514e426c6f636b2f316265333966396235333031353039613438343732366334376461316566326561643263303561363130663039376231623366366265643938396234336434392f3538322f3538324e426c6f636b2f613261363535336631636239303132663730313565336365353937393363323463623366613461666331393933643033343134633036373363666434633464332f3538342f35383400" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013920592cdae40f309306115ea64653a03cc7f4bf9edadcb63982b1f4d1a89ab2f4354006207a24c35253f8bfc951edd19e959a864360d96864b212c5c008469f0037af9d4020a5bf28f5bf583921095e33987aa1508f91f1299432e7d75534c50458dcf8246d20d6c1064dc87208f887bcfaf46feee3b16157d566da7d26416587d46fd97118092048f9f3f606c2aef13fa0ec86e3bf46b6a4e7a358e0c5ca3da48c02a4569c17ca205c3f7d059675b16423fc33ee2d34ad6aab333b219feb16fb6c72e7eb72869f5920dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e01fbd101fbe0012099ef461cd4c8463f386031239f0e53cd07ea84e8fb671013b14950e0388efea001134e426c6f636b2f623736326565303261376265306135643365383330306562643832316632663363643063323863353739373432316135393764313134616332313264323563352f3437362f3437361a0420f528cafe36708fac93f780b4f17a495f80c3a0d43a9ecc9f8d43a9756de7a02c4e426c6f636b2f626234393966393635353138326633653936363333633763393131663235376531643934316432393236383763623635373661396663373439633337626665322f3437352f34373520c69669e562babedc109b107c639ac6ac73dea6faec408c32daa0ba1300084a812092b3d55fda639db1986d65188aebf3bafb1692b5fc6db2d231801fe84eb7e49900" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "a2a6553f1cb9012f7015e3ce59793c24cb3fa4afc1993d03414c0673cfd4c4d3": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "bb499f9655182f3e96633c7c911f257e1d941d292687cb6576a9fc749c37bfe2": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "a2a6553f1cb9012f7015e3ce59793c24cb3fa4afc1993d03414c0673cfd4c4d3", - "block_number": 584, - "slot_number": 584 + "block_hash": "bb499f9655182f3e96633c7c911f257e1d941d292687cb6576a9fc749c37bfe2", + "block_number": 475, + "slot_number": 475 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801194e426c6f636b2f613261363535336631636239303132663730313565336365353937393363323463623366613461666331393933643033343134633036373363666434633464332f3538342f3538341a03205860cb04c4460ec3610564d678d6730565119ad72d68b4be8465d52d252b44f920ad771485bb16ed29e7fb8c87aab4457a07e46acb7110506c586c7d0d0fd2625120c8fdba43d96bca5282a0e786f2b200001a037c8a51514dc26cd6730911986f3f00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013920592cdae40f309306115ea64653a03cc7f4bf9edadcb63982b1f4d1a89ab2f4354006207a24c35253f8bfc951edd19e959a864360d96864b212c5c008469f0037af9d4020a5bf28f5bf583921095e33987aa1508f91f1299432e7d75534c50458dcf8246d20d6c1064dc87208f887bcfaf46feee3b16157d566da7d26416587d46fd97118092048f9f3f606c2aef13fa0ec86e3bf46b6a4e7a358e0c5ca3da48c02a4569c17ca205c3f7d059675b16423fc33ee2d34ad6aab333b219feb16fb6c72e7eb72869f5920dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e01fbd101fbe0012099ef461cd4c8463f386031239f0e53cd07ea84e8fb671013b14950e0388efea001124e426c6f636b2f626234393966393635353138326633653936363333633763393131663235376531643934316432393236383763623635373661396663373439633337626665322f3437352f3437351a0420f528cafe36708fac93f780b4f17a495f80c3a0d43a9ecc9f8d43a9756de7a02c4e426c6f636b2f623736326565303261376265306135643365383330306562643832316632663363643063323863353739373432316135393764313134616332313264323563352f3437362f34373620c69669e562babedc109b107c639ac6ac73dea6faec408c32daa0ba1300084a812092b3d55fda639db1986d65188aebf3bafb1692b5fc6db2d231801fe84eb7e49900" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "aff37d7000c4c5242d9af161d3b44efe4fc57a3eb82f21e3e560a7373cea8aa8": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "bc9f1c469c292eef102f7f1b8a4371dd25f7a3649b5012078c91097fcc3997dc": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "aff37d7000c4c5242d9af161d3b44efe4fc57a3eb82f21e3e560a7373cea8aa8", - "block_number": 570, - "slot_number": 570 + "block_hash": "bc9f1c469c292eef102f7f1b8a4371dd25f7a3649b5012078c91097fcc3997dc", + "block_number": 491, + "slot_number": 491 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801004e426c6f636b2f616666333764373030306334633532343264396166313631643362343465666534666335376133656238326632316533653536306137333733636561386161382f3537302f3537301a044e426c6f636b2f653937333630646161373636313363336431643039613666333939363531363663333539666536396631303561616163366632636133396538643165323739622f3537312f353731200d33c2debbcc499f7d1ca8165c8d19779b08f732ef8b0d11181c415f3422075420304bfbefd02b5548fa6054bb17594cb543ccdb13c3a2c51a530e59e57a926b9d2031ee3342675c972e30d9c814756b7fa5d80f5dbf5d7f471166f262c6d1d49b4b00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501134e426c6f636b2f626339663163343639633239326565663130326637663162386134333731646432356637613336343962353031323037386339313039376663633339393764632f3439312f3439311a04207fffd0fd4f9cead23ccd18ea0a84f969bda6f1643e100465c53a3c0e3383b9204e426c6f636b2f313865623663376236306264313763666432663062656166653333396261383434356339316364613431343036383735373330383966303966363932623830322f3439302f34393020c53d68d8a1a5cebf3fccfc73f70bfc48cf9e99871ead50dc75492821919e86e220df6d7300c7bf4d121881035d455ea2d8484ac812654dbc9564daffc38067b45500" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "b89754a8b258f2edb1f876fb7d6dca3f0d12e3c044cdd45fa1c1a8f603b19f90": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "c640ab25679648f2a893087a8d6847e7749f53bc6ee4d734567931da16fef6aa": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "b89754a8b258f2edb1f876fb7d6dca3f0d12e3c044cdd45fa1c1a8f603b19f90", - "block_number": 574, - "slot_number": 574 + "block_hash": "c640ab25679648f2a893087a8d6847e7749f53bc6ee4d734567931da16fef6aa", + "block_number": 479, + "slot_number": 479 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801074e426c6f636b2f623839373534613862323538663265646231663837366662376436646361336630643132653363303434636464343566613163316138663630336231396639302f3537342f3537341a044e426c6f636b2f363863663165393032373363616234343130366330633034646463383964316434383835626462363266616236323765333035636263313861373130313635352f3537352f35373520cbbbf13ed7bcc29ad928faa2a463e20db317b229ca8ce8b1d4b1d61f8148cd9c208068d8f94835d4dd884f4d471fc5f57d0389b34108e866b73e342d09486e46552031ee3342675c972e30d9c814756b7fa5d80f5dbf5d7f471166f262c6d1d49b4b00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013920592cdae40f309306115ea64653a03cc7f4bf9edadcb63982b1f4d1a89ab2f4354006207a24c35253f8bfc951edd19e959a864360d96864b212c5c008469f0037af9d4020a5bf28f5bf583921095e33987aa1508f91f1299432e7d75534c50458dcf8246d20d6c1064dc87208f887bcfaf46feee3b16157d566da7d26416587d46fd97118092048f9f3f606c2aef13fa0ec86e3bf46b6a4e7a358e0c5ca3da48c02a4569c17ca205c3f7d059675b16423fc33ee2d34ad6aab333b219feb16fb6c72e7eb72869f5920dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e01fbd101fbe0012099ef461cd4c8463f386031239f0e53cd07ea84e8fb671013b14950e0388efea001194e426c6f636b2f633634306162323536373936343866326138393330383761386436383437653737343966353362633665653464373334353637393331646131366665663661612f3437392f3437391a0320f528cafe36708fac93f780b4f17a495f80c3a0d43a9ecc9f8d43a9756de7a02c20f6f0e54ef1fcadb8ce53e6abd9670220f91ac86f3b6f34216e9ad4232c0890482003d4bb279a827e13b997663690c36a559285ee17cc83d94f25ce5e865745042400" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "c0472c148f30409be757c2bd85103a4f83b6c9576ce348c5c167814775925218": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "e0ce9cd2e0a2627d6cefbddb1627a2d2c3d2f1b3baeebb85615da72ebf853ada": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "c0472c148f30409be757c2bd85103a4f83b6c9576ce348c5c167814775925218", - "block_number": 566, - "slot_number": 566 + "block_hash": "e0ce9cd2e0a2627d6cefbddb1627a2d2c3d2f1b3baeebb85615da72ebf853ada", + "block_number": 493, + "slot_number": 493 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0147203323d76c9463081b3f430a4982ac13935d388b111385a8c29d73f5d00d241ff85205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e2220851b60407c3a7ba75852e9f489432394ade2fdd50aa2d10eea2c6f34f0c7d6e620b451621aaedaf364f621183371d060fcd7528cfd5d6c791356bbe492333e6cda200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb2b02fb3a022045e7d7f5933735705551990047c3362819d254352578d20a0785647fc841a48501134e426c6f636b2f633034373263313438663330343039626537353763326264383531303361346638336236633935373663653334386335633136373831343737353932353231382f3536362f3536361a04209fda676d3b0247f8345338b8cbce7eb32f67a49015dddf35ba3a73f2a4b1515a4e426c6f636b2f363965663839383138616430356634653062353935376161366266383339656131633033386630393464316636346332373337336539643261393665633631342f3536352f35363520e7ea0c9b00b015a1cffcf8c3c96e237b850deefa1358513277331b56954b2ed6206c7c2ea78f8e9e3153f28f371aa76f40cf7660b750be34acd5c6689a92fbabc600" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501174e426c6f636b2f653063653963643265306132363237643663656662646462313632376132643263336432663162336261656562623835363135646137326562663835336164612f3439332f3439331a04207fffd0fd4f9cead23ccd18ea0a84f969bda6f1643e100465c53a3c0e3383b920200d4aa7852a27360d4887c1ab1c2140b929ff45de58df349dbf2f8e89b684efc24e426c6f636b2f653235636135326435303937353239636361323730383262626336393662616162313633663737323466393737363563386630303436646532666535326533632f3439322f3439324e426c6f636b2f386331643334303131316235653437303634303139333366336231653939616466623364306238346535663465633566323633363864323231343238393331652f3439342f34393400" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "d32063768dc3f0f8567b452adf657bbfffcc152c7e30df3ac8449ec364510457": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "e25ca52d5097529cca27082bbc696baab163f7724f97765c8f0046de2fe52e3c": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "d32063768dc3f0f8567b452adf657bbfffcc152c7e30df3ac8449ec364510457", - "block_number": 576, - "slot_number": 576 + "block_hash": "e25ca52d5097529cca27082bbc696baab163f7724f97765c8f0046de2fe52e3c", + "block_number": 492, + "slot_number": 492 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb448010a4e426c6f636b2f643332303633373638646333663066383536376234353261646636353762626666666363313532633765333064663361633834343965633336343531303435372f3537362f3537361a044e426c6f636b2f363030386130623738336666326366643665386239386664663332366432323662633830303262353565343838306332393930343361373961643238313761302f3537372f353737203d005cce497c2a4219f08c4f812241af053a5ba9eb90933f89f7054a476ed421208068d8f94835d4dd884f4d471fc5f57d0389b34108e866b73e342d09486e46552031ee3342675c972e30d9c814756b7fa5d80f5dbf5d7f471166f262c6d1d49b4b00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501164e426c6f636b2f653235636135326435303937353239636361323730383262626336393662616162313633663737323466393737363563386630303436646532666535326533632f3439322f3439321a04207fffd0fd4f9cead23ccd18ea0a84f969bda6f1643e100465c53a3c0e3383b920200d4aa7852a27360d4887c1ab1c2140b929ff45de58df349dbf2f8e89b684efc24e426c6f636b2f653063653963643265306132363237643663656662646462313632376132643263336432663162336261656562623835363135646137326562663835336164612f3439332f3439334e426c6f636b2f386331643334303131316235653437303634303139333366336231653939616466623364306238346535663465633566323633363864323231343238393331652f3439342f34393400" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "d6bbe043f0a011026487dcb36a40f285d825d396ce757d236c144c59404763ad": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "e71c83616eb4632adf0db651c5bd66950daf7cfce9d895450c2a6a38c370ade9": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "d6bbe043f0a011026487dcb36a40f285d825d396ce757d236c144c59404763ad", - "block_number": 579, - "slot_number": 579 + "block_hash": "e71c83616eb4632adf0db651c5bd66950daf7cfce9d895450c2a6a38c370ade9", + "block_number": 480, + "slot_number": 480 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801104e426c6f636b2f643662626530343366306130313130323634383764636233366134306632383564383235643339366365373537643233366331343463353934303437363361642f3537392f3537391a04205860cb04c4460ec3610564d678d6730565119ad72d68b4be8465d52d252b44f94e426c6f636b2f336162653836626530393766653239333530366165333866313930316633303933353137333835333639326465313665373964383233353532346631613233332f3537382f35373820a1766c47f69c2671f4882c50609989afac389c8f2c04ec947d3206e179f60fbf20f6aec4340e36b9ad8b702cad534f18aa9b186e7cc4fc3a17c511c7a14016d13900" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501004e426c6f636b2f653731633833363136656234363332616466306462363531633562643636393530646166376366636539643839353435306332613661333863333730616465392f3438302f3438301a044e426c6f636b2f343234616531653535373036353465303632623435373838616265313630323364666633383763333339663237313361353763646330323465323934343136342f3438312f3438312057a000e12373e73f7a32f3b2871118601a8c1ceecfb2d88fb95c1b2cf6c35656206511ce434bb70c3efdedd3283044b5f24975eb85ca77f50d7ccfeb2f215a85f82087fac71ab94eaeebc65b7b3c85f571e2289d28ad4a8d41ec20c0be826119090b00" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "dbb79abd99cb64aa204d54586aa1b53906f9192301d7ac8bf3fcaed70831e11f": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "eb455206dac90518949c329fc5e107524ddbafea44549922b9a57bf4453cee25": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "dbb79abd99cb64aa204d54586aa1b53906f9192301d7ac8bf3fcaed70831e11f", - "block_number": 581, - "slot_number": 581 + "block_hash": "eb455206dac90518949c329fc5e107524ddbafea44549922b9a57bf4453cee25", + "block_number": 477, + "slot_number": 477 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801134e426c6f636b2f646262373961626439396362363461613230346435343538366161316235333930366639313932333031643761633862663366636165643730383331653131662f3538312f3538311a04205860cb04c4460ec3610564d678d6730565119ad72d68b4be8465d52d252b44f94e426c6f636b2f366637643836633035663963613336633232643939386235356636316462323537646636626132333661613130633562613230313163396434366361353865652f3538302f353830203a3d79b8a3f1e9509f1138fe79efc2de776f7b90e22339d68eedb57817db2fbb20f6aec4340e36b9ad8b702cad534f18aa9b186e7cc4fc3a17c511c7a14016d13900" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013920592cdae40f309306115ea64653a03cc7f4bf9edadcb63982b1f4d1a89ab2f4354006207a24c35253f8bfc951edd19e959a864360d96864b212c5c008469f0037af9d4020a5bf28f5bf583921095e33987aa1508f91f1299432e7d75534c50458dcf8246d20d6c1064dc87208f887bcfaf46feee3b16157d566da7d26416587d46fd97118092048f9f3f606c2aef13fa0ec86e3bf46b6a4e7a358e0c5ca3da48c02a4569c17ca205c3f7d059675b16423fc33ee2d34ad6aab333b219feb16fb6c72e7eb72869f5920dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e01fbd101fbe0012099ef461cd4c8463f386031239f0e53cd07ea84e8fb671013b14950e0388efea001164e426c6f636b2f656234353532303664616339303531383934396333323966633565313037353234646462616665613434353439393232623961353762663434353363656532352f3437372f3437371a0420f528cafe36708fac93f780b4f17a495f80c3a0d43a9ecc9f8d43a9756de7a02c20f6f0e54ef1fcadb8ce53e6abd9670220f91ac86f3b6f34216e9ad4232c0890484e426c6f636b2f383039383636303234373736383065323066303861353138623539343963373935613931376365376131626365323833383837353334623230646137326264662f3437382f3437384e426c6f636b2f633634306162323536373936343866326138393330383761386436383437653737343966353362633665653464373334353637393331646131366665663661612f3437392f34373900" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "e97360daa76613c3d1d09a6f39965166c359fe69f105aaac6f2ca39e8d1e279b": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "f163ac7a74117a089645dc039bbae775311ae0fcf6347c0d7eb0f98c5e0e04da": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "e97360daa76613c3d1d09a6f39965166c359fe69f105aaac6f2ca39e8d1e279b", - "block_number": 571, - "slot_number": 571 + "block_hash": "f163ac7a74117a089645dc039bbae775311ae0fcf6347c0d7eb0f98c5e0e04da", + "block_number": 484, + "slot_number": 484 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801014e426c6f636b2f653937333630646161373636313363336431643039613666333939363531363663333539666536396631303561616163366632636133396538643165323739622f3537312f3537311a044e426c6f636b2f616666333764373030306334633532343264396166313631643362343465666534666335376133656238326632316533653536306137333733636561386161382f3537302f353730200d33c2debbcc499f7d1ca8165c8d19779b08f732ef8b0d11181c415f3422075420304bfbefd02b5548fa6054bb17594cb543ccdb13c3a2c51a530e59e57a926b9d2031ee3342675c972e30d9c814756b7fa5d80f5dbf5d7f471166f262c6d1d49b4b00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501074e426c6f636b2f663136336163376137343131376130383936343564633033396262616537373533313161653066636636333437633064376562306639386335653065303464612f3438342f3438341a044e426c6f636b2f346461656134653634346134636165393862623966316262633766646430363331383531353837623136303238326266356561356639346463653431303531392f3438352f3438352089181283993216433a31903ff54abb22a6079273a70e5abcd570cf761498426b2004f28d9e97f6925f35cc4a6b355197f000179daa982020f34b6dd27c6a15080c2087fac71ab94eaeebc65b7b3c85f571e2289d28ad4a8d41ec20c0be826119090b00" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "f9c44d40ae090bc9f7a466aa7ae49179d665efccaa79d6060532539d1568421c": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "f5a392f3b31a1f882820a641fb47a7e0d265de69849343a0a78e6d0eb8ea8d84": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_blocks": { "items": [ { - "block_hash": "f9c44d40ae090bc9f7a466aa7ae49179d665efccaa79d6060532539d1568421c", - "block_number": 573, - "slot_number": 573 + "block_hash": "f5a392f3b31a1f882820a641fb47a7e0d265de69849343a0a78e6d0eb8ea8d84", + "block_number": 482, + "slot_number": 482 } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0149205af3af3261d410d97cfcf21f8c6e2db163714a25bf35177e1c466dacea505f245205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22207778b730996c54c7244b2ed1293bb853e54b1ddd5490ec59aa59d123f0af1de820d938430bdbf2cdb4a04916d010092dac1517e2b649f10b660a47fe53769058f0200d34b2a97f68697a9b6776d4dfd8b2770d3b75cab12c433506d24f4b73465ff6208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fb3a02fb490220525ade611cd13253cd8bc5ff2bc527f210a285d32bebaa7089f43168264bb44801044e426c6f636b2f663963343464343061653039306263396637613436366161376165343931373964363635656663636161373964363036303533323533396431353638343231632f3537332f3537331a044e426c6f636b2f323463323834343937306262366431663335323134363665386161393165636364393931643536313935303731663161386231343839316130656162646234342f3537322f353732203eb3c8e78e86503f30056f69249a2480a179edef0b17b6a40d0aa82128f119eb20304bfbefd02b5548fa6054bb17594cb543ccdb13c3a2c51a530e59e57a926b9d2031ee3342675c972e30d9c814756b7fa5d80f5dbf5d7f471166f262c6d1d49b4b00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9013f20dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e400120777bf48372656440207bb6a63f9bb9788e18600b6847555308ec253bd10f9c6501fbe001fbef0120489c15e9c5e1e7911001ca4ddf08428f5a528d685b45e642f536185b3a93ddd501034e426c6f636b2f663561333932663362333161316638383238323061363431666234376137653064323635646536393834393334336130613738653664306562386561386438342f3438322f3438321a044e426c6f636b2f323931313333626132313237396633353533363931643539623266316263613134633963353530646537376436376437363466646533346233633437653162642f3438332f343833203095920930c23115eda3263120318b94d5d6a0beeb7b2630132d42e46b250b66206511ce434bb70c3efdedd3283044b5f24975eb85ca77f50d7ccfeb2f215a85f82087fac71ab94eaeebc65b7b3c85f571e2289d28ad4a8d41ec20c0be826119090b00" }, "non_certified_blocks": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 } } diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/certificates-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/certificates-list.json index 719b0d2f4ef..789e14a791e 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/certificates-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/certificates-list.json @@ -1,13 +1,13 @@ [ { - "hash": "0dd2444f11aee61608d5a3f2659267475c7738225b2510977e96a9670776a9a6", - "previous_hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "epoch": 22, + "hash": "915a2494918a9875f0e973d55bf8ceaffd2ccc20414188380a62e1bfaddacd0a", + "previous_hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", + "epoch": 17, "signed_entity_type": { - "CardanoDatabase": { - "epoch": 22, - "immutable_file_number": 5 - } + "CardanoTransactions": [ + 17, + 509 + ] }, "metadata": { "network": "devnet", @@ -17,29 +17,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:52.069020478Z", - "sealed_at": "2026-03-13T08:42:52.207499828Z", + "initiated_at": "2026-04-08T08:02:28.478369274Z", + "sealed_at": "2026-04-08T08:02:28.578050068Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c3135372c3232362c3234352c31332c3231352c37382c3230392c3136312c32302c32392c3139342c35372c3233382c36352c3132332c3234342c39302c3235312c3130382c32342c3131352c39332c372c3230352c34382c3133342c3137392c3234302c38322c33382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "22", - "cardano_database_merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb" + "current_epoch": "17", + "latest_block_number": "509" } }, - "signed_message": "b74acf35f5b717e605e4de521613b39608aec6a6996e06ba737eee85e94f5eec", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "c1c158542cef77111f99f9e28cd0ace06b9c1eaedc343086806d58dae844c7a4", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "88fd9bd8db94b87b5c5cfa8da344346bc287d31fcea1cd4aafc0a7712727d097", - "previous_hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "epoch": 22, + "hash": "597c7a0a0d8cfb7b7d9314df15f7eb30411be17fa1efacf5f10730708bf780fe", + "previous_hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", + "epoch": 17, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "epoch": 22, - "immutable_file_number": 5 + "CardanoDatabase": { + "epoch": 17, + "immutable_file_number": 4 } }, "metadata": { @@ -50,27 +51,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:51.818144001Z", - "sealed_at": "2026-03-13T08:42:51.954758805Z", + "initiated_at": "2026-04-08T08:02:28.180312850Z", + "sealed_at": "2026-04-08T08:02:28.331395462Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "b60fe8016bfbc78164183d4ea7e5b5de3daa504fbff969c579aceccfc19c9383", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c3135372c3232362c3234352c31332c3231352c37382c3230392c3136312c32302c32392c3139342c35372c3233382c36352c3132332c3234342c39302c3235312c3130382c32342c3131352c39332c372c3230352c34382c3133342c3137392c3234302c38322c33382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "22" + "current_epoch": "17", + "cardano_database_merkle_root": "6d9d93883126e62da2763756219dc3dd6ee0836a08ca09595f86e7b877870e88" } }, - "signed_message": "8146d7dcd680dce29c32601759291c18a5353c9c9006a61583fba50e23e48359", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "ff9a1ea95ad95b09533f44614339e2eb9dc394445a7600068a5a2fd8bcc77839", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "2a85a93bce0b129313af050f56869bc26ce6bda7fafcc2d7604ccb54a1fde071", - "previous_hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "epoch": 22, + "hash": "d94bac35c8a7714af1a847330bd52ce8fb16cab8e7a95830187ce922c7840f68", + "previous_hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", + "epoch": 17, "signed_entity_type": { - "CardanoStakeDistribution": 21 + "CardanoImmutableFilesFull": { + "epoch": 17, + "immutable_file_number": 4 + } }, "metadata": { "network": "devnet", @@ -80,28 +84,27 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:51.568526586Z", - "sealed_at": "2026-03-13T08:42:51.705488277Z", + "initiated_at": "2026-04-08T08:02:27.931401335Z", + "sealed_at": "2026-04-08T08:02:28.071838272Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c3135372c3232362c3234352c31332c3231352c37382c3230392c3136312c32302c32392c3139342c35372c3233382c36352c3132332c3234342c39302c3235312c3130382c32342c3131352c39332c372c3230352c34382c3133342c3137392c3234302c38322c33382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "d60da3b743243914e1df9a73d3c5f16bb65a4d17254fba631b64ab0752c606f7", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "22", - "cardano_stake_distribution_epoch": "21", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "17" } }, - "signed_message": "4d9df8d89fef8005d4b6d5cb1ce5582573fc373bc505e36ecf64b350a8bb81cc", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "736e1c8fbf8a6c28efe475379ed73afc8c3a39ddb700da4e3d275b81536d1209", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 22, + "hash": "f07c5c3ec905ddb20c360c38f1606c55efd4d5ec47da5479daa7a60aaedab944", + "previous_hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", + "epoch": 17, "signed_entity_type": { - "MithrilStakeDistribution": 22 + "CardanoStakeDistribution": 16 }, "metadata": { "network": "devnet", @@ -111,29 +114,28 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:51.318502987Z", - "sealed_at": "2026-03-13T08:42:51.455763865Z", + "initiated_at": "2026-04-08T08:02:27.687256722Z", + "sealed_at": "2026-04-08T08:02:27.814821322Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c3135372c3232362c3234352c31332c3231352c37382c3230392c3136312c32302c32392c3139342c35372c3233382c36352c3132332c3234342c39302c3235312c3130382c32342c3131352c39332c372c3230352c34382c3133342c3137392c3234302c38322c33382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "22" + "current_epoch": "17", + "cardano_stake_distribution_epoch": "16", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "d6f1db4f60b70f8050b44cf8ee6e1883515d0e52691888e5a31ed50976a7019d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "1a2a0a3e3f02b1f41612d4c4a72375660322ee6b2d29b4441492909b86fb7b2f", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 17, "signed_entity_type": { - "CardanoBlocksTransactions": [ - 21, - 644 - ] + "MithrilStakeDistribution": 17 }, "metadata": { "network": "devnet", @@ -143,30 +145,29 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:50.075645620Z", - "sealed_at": "2026-03-13T08:42:50.204328640Z", + "initiated_at": "2026-04-08T08:02:27.325491740Z", + "sealed_at": "2026-04-08T08:02:27.579164548Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "cardano_blocks_transactions_merkle_root": "a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "latest_block_number": "644" + "current_epoch": "17" } }, - "signed_message": "6b5012567e8e6e7291fd4f6eafa7cd5499910c44851610009ec65d7da9ed6696", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "45798119106e8eb884db02764595d0630a9a66621ea46c983e4d785d192ea782", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "2a9785896933f0fe7a4715a7bb73d1d03cffe68b6a2e91508c405a8eda48b441", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { - "CardanoTransactions": [ - 21, - 644 + "CardanoBlocksTransactions": [ + 16, + 494, + 1 ] }, "metadata": { @@ -177,30 +178,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:49.913920992Z", - "sealed_at": "2026-03-13T08:42:49.950892993Z", + "initiated_at": "2026-04-08T08:02:26.055835813Z", + "sealed_at": "2026-04-08T08:02:26.197380753Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_blocks_transactions_merkle_root": "6afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "latest_block_number": "644" + "current_epoch": "16", + "latest_block_number": "494", + "cardano_blocks_transactions_block_number_offset": "1" } }, - "signed_message": "2ad8ebe513196881eb87ad3d0c84d395dac63de2337a5cf5e393da86689d3249", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "7c48a13c3ddfa2d9405d4daf6ac2bfe918041594b9ffa37ec6ebdf862f96a97d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "76e327c7c3d155f90a46a5e754c7e55851ffd126d8125d745f65164635302015", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "hash": "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { "CardanoTransactions": [ - 21, - 629 + 16, + 494 ] }, "metadata": { @@ -211,31 +213,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:49.386000365Z", - "sealed_at": "2026-03-13T08:42:49.451992193Z", + "initiated_at": "2026-04-08T08:02:25.843337934Z", + "sealed_at": "2026-04-08T08:02:25.936151098Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "latest_block_number": "629" + "current_epoch": "16", + "latest_block_number": "494" } }, - "signed_message": "b8e3d4cfce264a7815a16e05e3c8f046e6747d2c7c0a3fa906a7562ddb28333d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "56413aecfcfc83d8ed2490400b572de3ed9f4a3238989b445552a4736327143b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "23e332c7ce982bbde143fa68f97b69ee4ca0c3b08821836b7e52e5f7ee81aa21", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "hash": "f664ef08a4591bbaedb182fcb214bd298b0d47ffec4dcaf269c7adabc5abd4a0", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { - "CardanoDatabase": { - "epoch": 21, - "immutable_file_number": 5 - } + "CardanoTransactions": [ + 16, + 479 + ] }, "metadata": { "network": "devnet", @@ -245,29 +247,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:49.069541073Z", - "sealed_at": "2026-03-13T08:42:49.203431614Z", + "initiated_at": "2026-04-08T08:02:25.344858195Z", + "sealed_at": "2026-04-08T08:02:25.449502567Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "cardano_database_merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb" + "current_epoch": "16", + "latest_block_number": "479" } }, - "signed_message": "116a92deb80cbc87c2894e2a2408e3def1ea983463e5512efa7e649c28e2f647", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "dd04faeaaa4527ec2a71e82149bf4dfd2fc3225348a6d1729652cf8c37927dd3", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "97c07626c103e427099969cfc6b31e989e51e9789cab4d94b7f8859a707ffeb0", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "hash": "c58e8c4937329e4e3067b0efcf130d3f49009d4d2fde92b88dd7e018880f8636", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "epoch": 21, - "immutable_file_number": 5 + "CardanoDatabase": { + "epoch": 16, + "immutable_file_number": 3 } }, "metadata": { @@ -278,27 +281,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:48.819762961Z", - "sealed_at": "2026-03-13T08:42:48.952227097Z", + "initiated_at": "2026-04-08T08:02:25.052204157Z", + "sealed_at": "2026-04-08T08:02:25.187631304Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "d4ef84853eb11b5ca409b0c75a2a5e3c5affe6fbe18a20fc9c15340671fa7745", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21" + "current_epoch": "16", + "cardano_database_merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6" } }, - "signed_message": "dca4a94fa2968c62296be8a2a712f5ba4e7becf38f8e3322646a48a3ab6931d5", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "0383df28562a4d4ed4f8a45f27da1e8958a7fc58570ca243855aa5361c74843c", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "91a5d05e42aa076b4868e4d1b94dde08ac1595c4b2cf7146ffb00e6c6a84f9a5", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "hash": "d2a42057e168a0f385d4652c07bf1de65b433442f4576079d21f751ec4261879", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { - "CardanoStakeDistribution": 20 + "CardanoImmutableFilesFull": { + "epoch": 16, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -308,28 +314,27 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:48.569109616Z", - "sealed_at": "2026-03-13T08:42:48.702523983Z", + "initiated_at": "2026-04-08T08:02:24.814356659Z", + "sealed_at": "2026-04-08T08:02:24.951098750Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "6e0d192003c2bd6c8308388224d4eb4ebaf1d8594862045182dbc9dac49c1dff", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "cardano_stake_distribution_epoch": "20", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "16" } }, - "signed_message": "75b0994dd8adc47586c6639ca656ad0b3b737323bb2b767a206915459fb24036", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "eb3e75d3930ad7f96c392523919d8b3c3cce2a17664ed2d67fba64bb6cf94820", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 21, + "hash": "546eea37e5a92f7cc3769d3d0301b7007a7c4e1221d7fad522fe268f2229956f", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { - "MithrilStakeDistribution": 21 + "CardanoStakeDistribution": 15 }, "metadata": { "network": "devnet", @@ -339,29 +344,28 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:48.317134266Z", - "sealed_at": "2026-03-13T08:42:48.451602039Z", + "initiated_at": "2026-04-08T08:02:24.553683789Z", + "sealed_at": "2026-04-08T08:02:24.690388716Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21" + "current_epoch": "16", + "cardano_stake_distribution_epoch": "15", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "909589854b9fc0e32b8c029e8720e8cb361f964f94c27733a0fbed0e9d121cd9", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "f136d7328de0928ad89b173d6fd2ba79a3d6d7f5d9511725d8458b6c883b3bd2", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "9f2887a27d2300529dfa6a1992c38a3817f8514e0f22a347b4b4ba9d06280369", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 16, "signed_entity_type": { - "CardanoBlocksTransactions": [ - 20, - 614 - ] + "MithrilStakeDistribution": 16 }, "metadata": { "network": "devnet", @@ -371,30 +375,29 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:47.072315294Z", - "sealed_at": "2026-03-13T08:42:47.201644010Z", - "total_signers": 2 + "initiated_at": "2026-04-08T08:02:24.302695588Z", + "sealed_at": "2026-04-08T08:02:24.446287828Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "cardano_blocks_transactions_merkle_root": "88311addfa37d60dcaf4de731c7678179eb3ab0b82a9e59f6b8ebc867a83e9eb", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20", - "latest_block_number": "614" + "current_epoch": "16" } }, - "signed_message": "6464e0862ec72f61016ff366358d4f45b5126556e956749c06947483cacd6fc7", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "250b2523472c9895f789d736ce6835ff69190f2e4023da20d1d2fdf8c8bac57b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "f74444221dd32e37435b8178d01d39ef42ab525e23022f854019f5e0bf5e8838", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "hash": "e3d280143c9b4364a34cdc69131c2c2e85779fa830f4a8a08ced9cf92cbe4e33", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "CardanoTransactions": [ - 20, - 614 + "CardanoBlocksTransactions": [ + 15, + 464, + 1 ] }, "metadata": { @@ -405,31 +408,32 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:46.922305365Z", - "sealed_at": "2026-03-13T08:42:46.952678832Z", + "initiated_at": "2026-04-08T08:02:23.055543344Z", + "sealed_at": "2026-04-08T08:02:23.189734758Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_blocks_transactions_merkle_root": "ce70d091af27bef03f7b9c4eaf87393c265490f7cf97b6505d3fbe60c9ac342f", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20", - "latest_block_number": "614" + "current_epoch": "15", + "latest_block_number": "464", + "cardano_blocks_transactions_block_number_offset": "1" } }, - "signed_message": "341faa41c4c22a1c7e0eb8fe788d81466860efdfb2e4504003f899abe946273d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "043bfe07d5c25751ce3a0db5e2f4cbffc4ad9aab3fdb844228bb6bc69b73490a", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "dfff7288d911f52422e7315b979191ccf74f736017ad7fc9741e4225c4e62482", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "hash": "06523f052e146468e7b64772a4521a827887e34002eb609c05a2276a25f40ccb", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "CardanoDatabase": { - "epoch": 20, - "immutable_file_number": 5 - } + "CardanoTransactions": [ + 15, + 464 + ] }, "metadata": { "network": "devnet", @@ -439,30 +443,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:46.320213073Z", - "sealed_at": "2026-03-13T08:42:46.451316918Z", + "initiated_at": "2026-04-08T08:02:22.855177733Z", + "sealed_at": "2026-04-08T08:02:22.946300661Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20", - "cardano_database_merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb" + "current_epoch": "15", + "latest_block_number": "464" } }, - "signed_message": "6831c876b585cfbc314918d9df348593e56be9a2689311622fb2cef1bc66e874", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "bbbb6eaae3217265b472a9ebb7517c0f08808f35050e1ef3292b9f72eecadfbc", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "70cfef9c00b300cf13dd2a1ae66c3568800403642551a250e9407f8a28edc0d4", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "hash": "d1d3ad13672fcec93c4b5ddbada8221a115d2fc23dd4776cffa104cd73bd3180", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "epoch": 20, - "immutable_file_number": 5 - } + "CardanoTransactions": [ + 15, + 449 + ] }, "metadata": { "network": "devnet", @@ -472,29 +477,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:46.070037598Z", - "sealed_at": "2026-03-13T08:42:46.202186486Z", + "initiated_at": "2026-04-08T08:02:22.344438076Z", + "sealed_at": "2026-04-08T08:02:22.440938766Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "669fc81b08700272b49b9f2988999e56840ce0ce63640a6f7729616e0ed764de", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20" + "current_epoch": "15", + "latest_block_number": "449" } }, - "signed_message": "59322f889df816e97c9d65b620a4f4b5ce0c1414024c6faf1160f9e68b2c4e0e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "55ebfdbbe03c2ad123af359533f4284477b040f0492e288335fcca2327fabd80", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "48e8b106fd1f11413d1eb4ca927c3ce35f0e080c88b3ca72fe02c007923129e9", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "hash": "232fa5b6c75f1d29809e51f90e4a912f88a519a0aae3dd9046daad631568ccbb", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "epoch": 20, - "immutable_file_number": 4 + "CardanoDatabase": { + "epoch": 15, + "immutable_file_number": 3 } }, "metadata": { @@ -505,27 +511,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:45.820203985Z", - "sealed_at": "2026-03-13T08:42:45.951669674Z", + "initiated_at": "2026-04-08T08:02:22.056121622Z", + "sealed_at": "2026-04-08T08:02:22.199967029Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "2408915ca6aff6294c72aee3ced0d2cbae8df0f799df5768194ca8a328ff6f5d", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20" + "current_epoch": "15", + "cardano_database_merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6" } }, - "signed_message": "d18baf1a3d4510e83e2a156eff95573ab3853bd740ed47da1ac21529bfa01f72", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "5111089626b1311f9c19eb3ebc7176be5e4edaef011e63f6bb803c161062f193", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "fb29c6dd8527914601072217ce2db9573c05ea5c485144c53f22f3713d021ce3", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "hash": "af506818c7a9806c527dcc7d97a95f3719254d8cf33938213b70ef8c26c5f212", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "CardanoStakeDistribution": 19 + "CardanoImmutableFilesFull": { + "epoch": 15, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -535,28 +544,27 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:45.569181519Z", - "sealed_at": "2026-03-13T08:42:45.705183808Z", + "initiated_at": "2026-04-08T08:02:21.806377100Z", + "sealed_at": "2026-04-08T08:02:21.950363617Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "0a74b1872774e7fe4d404b94cb554a88359e554ba232939b1c3323db1c2c0e43", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20", - "cardano_stake_distribution_epoch": "19", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "15" } }, - "signed_message": "35b22b899be47ade3dc0e4ef804fb0b481de1cbd9ea1b517cc203525beab8be1", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "2e4979761a7444d9544d680fa8454582a221c9fe91283e9e1c02c3ecc01fb245", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "previous_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "epoch": 20, + "hash": "3ac652f3c89444a7d0f36ea1714cb03f54dcb32e037bb733b07e41be8644962e", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "MithrilStakeDistribution": 20 + "CardanoStakeDistribution": 14 }, "metadata": { "network": "devnet", @@ -566,29 +574,28 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:45.318704109Z", - "sealed_at": "2026-03-13T08:42:45.454622279Z", + "initiated_at": "2026-04-08T08:02:21.553982938Z", + "sealed_at": "2026-04-08T08:02:21.688771993Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20" + "current_epoch": "15", + "cardano_stake_distribution_epoch": "14", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "ea8ef5f3cf6bb2f47732e466d167384922bd47ee1c295ee9895e80e73b70147e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "748eb2a42f737a96aba3366e2cdbcb7b64519297f4c94efd78620bace8921992", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "032dcfc39d28bb22710bb600b9ebe88b1c6bcaa24e2e03adaa02c2b70b6a25f1", - "previous_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "epoch": 19, + "hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "previous_hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", + "epoch": 15, "signed_entity_type": { - "CardanoBlocksTransactions": [ - 19, - 584 - ] + "MithrilStakeDistribution": 15 }, "metadata": { "network": "devnet", @@ -598,30 +605,29 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:44.080598492Z", - "sealed_at": "2026-03-13T08:42:44.202876146Z", - "total_signers": 2 + "initiated_at": "2026-04-08T08:02:21.313828511Z", + "sealed_at": "2026-04-08T08:02:21.443335883Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "cardano_blocks_transactions_merkle_root": "aa0dc9a955c515838301af1822a272c8bcc365067fa340a5141d6063260fc243", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "19", - "latest_block_number": "584" + "current_epoch": "15" } }, - "signed_message": "dfbd6fbc1397673bcd9b3ea67136e5ba33af691bc7e22dbc630896dfb6af04f4", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "faa721610b329b5c2168c9469093182e9408ea442297269649ed278df608427e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" }, { - "hash": "3370016aa061ba684a63f2c04b935c95f8705e07f8d31f43ac316a4c79499a7c", - "previous_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "epoch": 19, + "hash": "c023039d61595c34e095d313be3fef1232fb251dcb297d79b9d3e4a38266bcf1", + "previous_hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", + "epoch": 14, "signed_entity_type": { - "CardanoTransactions": [ - 19, - 584 + "CardanoBlocksTransactions": [ + 14, + 434, + 1 ] }, "metadata": { @@ -632,20 +638,21 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:43.924402381Z", - "sealed_at": "2026-03-13T08:42:43.953668805Z", + "initiated_at": "2026-04-08T08:02:20.057373473Z", + "sealed_at": "2026-04-08T08:02:20.186830842Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_blocks_transactions_merkle_root": "f95075e1cd0bd07a490d7bed2277451acae49ae72577d87342b943c4fbaf1d80", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "19", - "latest_block_number": "584" + "current_epoch": "14", + "latest_block_number": "434", + "cardano_blocks_transactions_block_number_offset": "1" } }, - "signed_message": "1273fa8791cb45118cfd36a701ea20c0443f6e538eadd6614d6aba7996646e98", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" + "signed_message": "0c5811551beba372119935f9431beb37127271cd116258d2081476ea04e7c9e7", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d" } ] diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/certificates.json b/mithril-test-lab/mithril-aggregator-fake/default_data/certificates.json index 05630fbdaf3..4edfc1557b2 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/certificates.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/certificates.json @@ -1,13 +1,13 @@ { - "032dcfc39d28bb22710bb600b9ebe88b1c6bcaa24e2e03adaa02c2b70b6a25f1": { - "hash": "032dcfc39d28bb22710bb600b9ebe88b1c6bcaa24e2e03adaa02c2b70b6a25f1", - "previous_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "epoch": 19, + "0538388b1ecfe3a276441dec5f6217fe8a7684c485a36528ed22e5601b6aac44": { + "hash": "0538388b1ecfe3a276441dec5f6217fe8a7684c485a36528ed22e5601b6aac44", + "previous_hash": "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1", + "epoch": 13, "signed_entity_type": { - "CardanoBlocksTransactions": [ - 19, - 584 - ] + "CardanoImmutableFilesFull": { + "epoch": 13, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -17,39 +17,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:44.080598492Z", - "sealed_at": "2026-03-13T08:42:44.202876146Z", + "initiated_at": "2026-04-08T08:02:17.053488367Z", + "sealed_at": "2026-04-08T08:02:17.194007819Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "cardano_blocks_transactions_merkle_root": "aa0dc9a955c515838301af1822a272c8bcc365067fa340a5141d6063260fc243", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "aa74b8b231e60efa2c6b10d2699540728aae37198a31fd2f7a84ae561987dd8f", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "19", - "latest_block_number": "584" + "current_epoch": "13" } }, - "signed_message": "dfbd6fbc1397673bcd9b3ea67136e5ba33af691bc7e22dbc630896dfb6af04f4", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135312c32322c3234352c36362c33302c3138352c39382c3232372c3232382c33382c3232372c3137382c3135362c3233342c35302c3131332c3131372c3231322c3133382c3234332c34312c3133342c3131382c3235342c35332c3133362c33332c302c33352c3235342c35342c32312c342c3136312c36302c34312c34312c32362c32372c3234302c3133382c3132302c342c3132312c32392c32342c36352c37315d2c22696e6465786573223a5b312c332c342c352c362c382c31312c31322c31332c31342c31352c31362c31382c31392c32302c32312c32342c32362c32372c33302c33312c33322c33332c33342c33352c33362c33392c34302c34312c34322c34332c34342c34352c34362c34382c34392c35322c35332c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38332c38352c38362c38382c38392c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136392c3136302c3136322c3234392c36392c332c3139302c36332c3235352c3130382c31362c3134382c3231312c35302c32322c34382c3137322c3230342c35342c3133332c3132352c3132322c35362c32372c31372c3138312c3132362c38352c33362c3132302c3230392c3231322c36302c31312c3137342c3132352c35332c3230332c31392c3130382c3134312c3134392c3232392c3232362c3137382c3131342c3230362c3232362c302c3230322c3234392c3136392c3133322c3235302c35312c32302c35332c3231382c33392c32362c3231322c3231352c3138332c38342c3136382c3139342c3232332c3230352c3137312c35382c3138332c32342c3234382c3131302c3232362c3232362c3135362c3138352c39322c36312c3131332c37312c3230352c3130372c372c35322c3130372c3138332c3139392c32382c39352c3138392c3133392c3230342c3234392c37315d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3138352c38322c36372c3132362c3139312c3132382c342c3139322c3132372c3233382c3139352c3234332c32362c3234382c3136352c35372c39362c36312c3231322c3136362c35372c372c38332c3133342c3131312c3130302c3137322c3135312c3133332c35382c3130322c37342c31372c3139342c3138392c3132352c3137382c33322c3234342c32352c3235312c34302c3230302c3130362c3232362c38332c37392c36385d2c22696e6465786573223a5b302c322c392c31302c32322c32332c32352c32382c32392c33372c33382c34372c35302c35342c37312c38322c38342c39322c3130305d2c227369676e65725f696e646578223a317d2c5b5b3137352c3231312c3135332c33352c3134382c34312c362c3132342c39372c3230302c362c3136382c3235342c3134302c38312c3136332c32382c3131372c34342c34362c332c3138342c3136302c34312c3134372c31322c39372c3230322c3136382c33342c3132392c3132302c3136352c34392c3231392c3133392c34392c33322c3136392c3131362c3135352c35352c35372c3136322c3134332c35312c37392c3138332c362c3230352c3235332c3235332c37302c38372c3233302c3136372c31352c38372c32302c3231322c3130322c32382c3231322c3233302c3130312c35322c3139342c3230362c3138332c34332c3132382c3135332c3230352c38392c3231342c37392c3136312c3131342c3233302c32352c34372c32332c3137342c3139322c3131362c3132372c3137362c3230362c3233352c3132302c3135372c33352c3134302c37392c3231322c3138325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "dba59a4505342b2579ede679eebe18e5b80f5569a21352a9be68c2d458d5ba12", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137332c36372c3133322c3135332c3136342c34392c3137372c31362c34312c36362c3132362c3138382c38362c3134332c3130362c36312c36342c3233382c3133362c34312c3132302c33302c3232382c31352c3131392c38322c3132302c3139362c34362c38302c3230352c3134352c3232312c3131382c3232322c3131362c3232382c352c3130342c3235342c3235342c3138362c39342c3232382c3231372c3131302c3234392c36355d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c392c31302c31312c31342c31362c31372c31382c32302c32312c32362c32372c32382c32392c33312c33322c33332c33342c33352c33362c33382c33392c34302c34322c34332c34342c34362c34372c34382c35302c35322c35332c35352c35372c35382c35392c36302c36312c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38372c38382c38392c39302c39322c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3138332c33312c35372c3136302c3136322c35332c3133392c3232302c3130322c3234392c3139302c39312c312c36392c31392c37332c38382c3130302c39382c3132342c34362c3231302c3231342c39392c3235332c3134312c3138322c3230382c372c3234342c34362c3134332c31342c3132302c38362c3230372c3230392c3234302c322c36302c3136352c3233312c3135322c31382c372c3136392c32332c31382c31342c3135332c3130302c3232322c37392c3134392c3230362c33352c3139382c35302c3235342c352c3135372c38372c37312c38362c3132352c3230302c3132362c35342c3234372c3136382c3232332c33352c32322c3134382c302c3133362c3130342c3133322c39382c3233332c3134362c32372c32342c3134352c31362c38372c3134312c36362c35342c3234342c33342c3135322c3233322c35322c3138342c34395d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34392c3131302c3130302c3233312c31352c3134362c3234332c3130332c35342c3235332c3231332c32332c322c3134372c3233352c32392c3131392c382c32372c3230312c31342c3139382c3234352c3134362c3133302c33392c372c35392c3235322c3134352c32342c3232325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "06837b0ee15a01f86789e38199084b77003799fc7a824eed268ebf2c590c3576": { - "hash": "06837b0ee15a01f86789e38199084b77003799fc7a824eed268ebf2c590c3576", - "previous_hash": "135c6de9fa65ffd328b00918df0b40b51df9a9f7394cdec81a9a2b7368bfe545", - "epoch": 18, + "06523f052e146468e7b64772a4521a827887e34002eb609c05a2276a25f40ccb": { + "hash": "06523f052e146468e7b64772a4521a827887e34002eb609c05a2276a25f40ccb", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "CardanoStakeDistribution": 17 + "CardanoTransactions": [ + 15, + 464 + ] }, "metadata": { "network": "devnet", @@ -59,41 +61,77 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:39.569751739Z", - "sealed_at": "2026-03-13T08:42:39.702015266Z", + "initiated_at": "2026-04-08T08:02:22.855177733Z", + "sealed_at": "2026-04-08T08:02:22.946300661Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "18", - "cardano_stake_distribution_epoch": "17", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "15", + "latest_block_number": "464" } }, - "signed_message": "dbc7c2465f9543fa55b2f87a0885c959f1cfc4e8115efd5290fd53f325a1ce4f", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135302c36362c3232352c3133352c35352c3138342c3133332c37302c3139302c3232332c3132392c3235352c38392c3234382c3136312c32392c3130302c3233382c35392c38312c3138342c3234362c3130342c33332c33342c36342c3231372c3234332c3139362c32382c3231362c37335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135312c3233392c3138352c3234332c33352c3139372c37312c312c312c3139382c32302c3133302c3131352c3233312c3137372c3231372c33372c3135382c3136302c3231342c3132312c39342c36382c3138382c3131352c38322c36332c37342c31332c3234352c37332c33372c35312c3230352c38322c38322c3137372c39362c3134322c3232332c37362c39322c34302c3234342c38372c3233382c3134322c31335d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c392c31302c31312c31322c31332c31342c31362c31382c31392c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33332c33352c33372c33382c33392c34312c34342c34352c34362c34382c34392c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36322c36342c36352c36372c36392c37302c37312c37322c37332c37342c37352c37372c37382c37392c38302c38332c38352c38362c38372c38382c38392c39302c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137392c3230392c3136392c3138302c3232372c3137362c3138312c3138322c32302c3137392c38312c34372c3136322c3234392c32342c3135392c3138392c3232322c34342c31332c39362c3133312c3233312c3133342c3232342c3136342c3135302c3232342c3230372c3233342c3233362c3130352c3232322c3137392c3231342c3132302c3134352c3234372c3232382c32392c382c3137382c3230362c33372c3131342c3235352c3131322c39362c31332c3132322c3138392c3134302c32332c3139332c39322c3230322c3134392c38322c3138382c35322c3234392c32312c39362c35322c3231302c3134382c3234382c3134302c3132352c34352c3137352c3139382c3136372c34302c39322c3231352c3132322c302c3133382c34382c31372c3136342c3230302c3134372c33362c3231342c3136342c32332c3233322c3131392c3132362c3231322c3137372c3234302c3235322c31355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32372c3137372c31372c39332c3233352c3134392c3232392c36382c3135392c34352c39352c34332c362c35372c3233382c3136302c3231322c31372c35372c322c3134372c3139332c3134372c39392c3136352c3137312c3134342c3139332c38302c3232382c3232322c3131345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "bbbb6eaae3217265b472a9ebb7517c0f08808f35050e1ef3292b9f72eecadfbc", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3137302c33342c3233372c3135342c3138392c362c3136382c36382c36392c39332c3133302c3233382c38312c3133392c332c36332c3135332c32382c3131362c3234392c37332c39342c37372c37372c35362c3139342c37322c3135332c3134372c32352c3233362c3137382c34342c3133302c3130372c3230382c37392c3137312c3132312c3131352c3230312c3230332c3136382c31382c382c3131332c3134395d2c22696e6465786573223a5b302c312c322c332c362c372c382c392c31312c31322c31342c31352c31382c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33382c33392c34302c34312c34332c34352c34362c34382c34392c35302c35312c35342c35362c35372c35382c36302c36312c36322c36332c36342c36362c36372c36392c37302c37312c37322c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130325d2c227369676e65725f696e646578223a307d2c5b5b3133312c35372c3134342c35382c31342c3232302c37322c3132332c33352c37382c3234302c38342c38392c3131362c3232312c35372c3230302c3234322c35332c31372c39302c3132332c3135372c3132302c3231362c3138392c3230382c3136312c39382c3232372c3139372c3231312c36322c3235342c3139332c33342c34352c36302c3139342c3230302c3135312c3131392c34392c3133392c37362c3230302c3133312c3135332c342c3135372c372c38322c3138362c32342c3133332c38382c3230392c38372c36342c31362c3138332c31302c38372c37322c322c3230352c3233342c3234312c37352c31362c3132342c3230332c33302c35352c37302c33372c34332c33362c3139342c33342c3234382c35392c3133302c3232392c33392c36312c3138332c3235332c3232342c39372c3232382c3132322c3135342c3230312c34302c3133345d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230302c3137302c36362c33372c3231342c35302c3231352c38352c34392c3137322c3232382c3134362c36302c3231382c3233332c3230312c3137302c34382c31392c34342c38352c3233372c382c35332c3232342c3132302c3230302c3131342c3233342c3131372c3131342c39355d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "0dd2444f11aee61608d5a3f2659267475c7738225b2510977e96a9670776a9a6": { - "hash": "0dd2444f11aee61608d5a3f2659267475c7738225b2510977e96a9670776a9a6", - "previous_hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "epoch": 22, + "0f8f818a070cd6034f334226472382e57700c261ac9208e4ee64f50d60638d33": { + "hash": "0f8f818a070cd6034f334226472382e57700c261ac9208e4ee64f50d60638d33", + "previous_hash": "767f4dc796ac98eb14e4b319b6e53aadf9742e81a9a94b1d977c1e6b735cdc73", + "epoch": 10, "signed_entity_type": { - "CardanoDatabase": { - "epoch": 22, - "immutable_file_number": 5 + "MithrilStakeDistribution": 10 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 70, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2026-04-08T08:02:06.300447652Z", + "sealed_at": "2026-04-08T08:02:06.443790285Z", + "signers": [ + { + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "stake": 20000000001 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c36382c3139362c32372c3231342c3230352c31352c36332c3232342c33312c3139322c3232362c39382c32392c31322c3131342c3130362c31302c3135362c3233332c33352c3232362c39372c3131362c3230372c3134392c3234342c3133332c3133342c33382c3232352c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", + "current_epoch": "10" + } + }, + "signed_message": "11b05b027af3988a00bc76e6a4c7770e56a7c883e3a58583c0a1dfac57090050", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33302c3234362c372c3136352c392c3234392c3133352c33392c3137332c32312c3133302c3138352c34362c33382c39322c3137372c3234352c3134312c3132342c3136392c3138382c3134362c3231362c3138382c3131302c3138352c3231382c3133372c3231332c3234332c3234372c3134375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136382c3131322c3234382c3234322c3136362c3235302c39312c3135312c3232352c3234392c3136362c3234352c39362c3230392c35392c36342c3139382c3138392c3231392c3231302c39362c3232392c3233352c3132312c3137332c352c3233382c38392c3137342c302c3234352c39392c3131392c3233352c3130312c392c3136332c34302c3232362c3138352c3130372c3136352c3232352c3136362c39302c3136312c38322c3232305d2c22696e6465786573223a5b302c312c342c352c372c382c392c31322c31342c31352c31362c32302c32332c32362c32372c32382c32392c33302c33322c33332c33362c33372c34302c34312c34322c34332c34342c34362c34372c35302c35332c35342c35352c35362c35372c35392c36322c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37362c37372c37392c38302c38312c38322c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134382c3234322c32352c32372c36362c3139322c3131332c3233322c3234352c3130332c34382c33302c3130392c36352c3135392c3132302c38342c3131372c3135332c35382c3132302c34372c3235322c36392c3139332c36372c37332c31312c3234352c35312c3232382c3138312c37382c3136342c3135362c3137302c3231392c3230332c3132382c3136392c36312c3234352c36352c3135392c38362c3234392c3137312c32362c31342c3134392c36302c3137322c33362c3133392c39342c32362c3233302c31392c3133362c3130362c3131352c36342c38352c31352c35312c3139372c38382c322c362c3136392c34382c362c3139332c3132302c3133392c34302c3230342c35322c3137392c31322c3231382c31372c31302c3131382c3136382c3137302c32382c3138382c3231302c3233382c3134302c3230352c38352c3130392c302c35325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33352c3231302c3233312c3134392c36362c3137332c39322c3137352c32312c302c3131322c3133372c34392c342c3131342c3131382c3135392c33342c3133392c32392c372c362c352c3131312c3234352c3130372c3132332c3139392c3234342c3137372c3233342c3130325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "1100a5aeb4f51f087af287b7823228b42bea96781f2396a48c6348ac9439e751": { + "hash": "1100a5aeb4f51f087af287b7823228b42bea96781f2396a48c6348ac9439e751", + "previous_hash": "0f8f818a070cd6034f334226472382e57700c261ac9208e4ee64f50d60638d33", + "epoch": 10, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "epoch": 10, + "immutable_file_number": 1 } }, "metadata": { @@ -104,38 +142,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:52.069020478Z", - "sealed_at": "2026-03-13T08:42:52.207499828Z", + "initiated_at": "2026-04-08T08:02:06.809460294Z", + "sealed_at": "2026-04-08T08:02:06.944125477Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c3135372c3232362c3234352c31332c3231352c37382c3230392c3136312c32302c32392c3139342c35372c3233382c36352c3132332c3234342c39302c3235312c3130382c32342c3131352c39332c372c3230352c34382c3133342c3137392c3234302c38322c33382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "1439e1e841ff2b5a21db6ac02d93e761d2cd7ae3c6375224709248d1bd9007d8", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c36382c3139362c32372c3231342c3230352c31352c36332c3232342c33312c3139322c3232362c39382c32392c31322c3131342c3130362c31302c3135362c3233332c33352c3232362c39372c3131362c3230372c3134392c3234342c3133332c3133342c33382c3232352c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "22", - "cardano_database_merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb" + "current_epoch": "10" } }, - "signed_message": "b74acf35f5b717e605e4de521613b39608aec6a6996e06ba737eee85e94f5eec", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3235312c3138382c3131312c3137392c3233322c38372c3136392c35352c3135332c34322c3233352c34342c38392c34372c3138392c3233372c3132312c3231302c3232342c3232312c3139382c38392c3135382c31302c3131382c35322c37382c3232302c31302c3235342c37392c3132302c3234322c352c3139352c38352c3234332c32382c3138342c34382c32322c3234372c3139342c3135322c38372c3137352c3232365d2c22696e6465786573223a5b302c312c322c332c342c372c382c392c31302c31312c31332c31342c31352c31362c31372c31392c32302c32312c32322c32332c32342c32362c32372c32382c32392c33312c33322c33332c33342c33352c33362c33372c34302c34312c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35362c35382c35392c36302c36312c36322c36342c36352c36372c36382c36392c37302c37312c37322c37332c37342c37372c37382c38332c38342c38352c38362c38372c38382c38392c39302c39322c39342c39352c39362c39372c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135332c3232332c3235352c3231382c36362c35312c3131362c39322c3139332c34372c3234322c3134372c36322c3135392c3235342c34352c34342c3232322c31332c37392c32372c3138322c32312c3133352c32312c3131352c3133352c312c352c3138382c3232392c38342c3135302c34342c3234362c3234382c3235312c3135372c3231322c38352c3136342c39312c3232382c36352c3233362c3231332c3130362c3133312c31342c36312c35302c37382c3232372c3134382c3232312c33302c3230342c3232362c3235322c37322c31392c39362c3230322c302c362c3134322c3139342c3138302c3233382c39382c39322c3131332c34352c3230352c372c3139312c3132392c3136352c3230392c37382c3134302c3234382c3134302c35342c32352c3132392c3132332c38302c34352c35302c3138322c37362c3135332c3234352c32342c34385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35302c3134372c3134362c3134382c3136302c3134322c35322c3134392c3234392c3234362c3136302c3139302c31352c34302c3136302c3134352c3139392c3233382c34312c3232382c3133392c32352c3234372c3135312c31372c36382c37362c3134322c39322c3131372c3136342c3134385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "f706d36621ab868c9a9cd6caf82b477bafcbf61fd05b3fcdcfff9190864d8f08", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33302c3234362c372c3136352c392c3234392c3133352c33392c3137332c32312c3133302c3138352c34362c33382c39322c3137372c3234352c3134312c3132342c3136392c3138382c3134362c3231362c3138382c3131302c3138352c3231382c3133372c3231332c3234332c3234372c3134375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138332c35302c3132362c3136342c36362c34312c3139362c3232392c3137372c3230372c3134302c39372c34312c3136332c3231372c33372c3139382c3133382c3133312c3138382c33312c3230332c31392c32372c3230302c3232312c39362c32312c3134352c3134332c37322c3234352c3138392c3139302c392c38382c3135372c3232352c3131382c3131302c3137302c3136342c38312c39392c3131302c3130312c3136372c3132375d2c22696e6465786573223a5b302c31302c32302c32342c32362c32382c32392c33302c34322c35312c35322c36332c37322c38312c38322c38362c38372c39352c39382c3130315d2c227369676e65725f696e646578223a307d2c5b5b3134382c3234322c32352c32372c36362c3139322c3131332c3233322c3234352c3130332c34382c33302c3130392c36352c3135392c3132302c38342c3131372c3135332c35382c3132302c34372c3235322c36392c3139332c36372c37332c31312c3234352c35312c3232382c3138312c37382c3136342c3135362c3137302c3231392c3230332c3132382c3136392c36312c3234352c36352c3135392c38362c3234392c3137312c32362c31342c3134392c36302c3137322c33362c3133392c39342c32362c3233302c31392c3133362c3130362c3131352c36342c38352c31352c35312c3139372c38382c322c362c3136392c34382c362c3139332c3132302c3133392c34302c3230342c35322c3137392c31322c3231382c31372c31302c3131382c3136382c3137302c32382c3138382c3231302c3233382c3134302c3230352c38352c3130392c302c35325d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3134322c3136342c3139332c3130332c3137382c3132322c3134382c39302c3131362c3136332c37302c3135392c3234362c3234392c31312c3139302c3138342c31342c322c3136322c3234342c3132382c35312c3233362c3232352c36322c31332c3136382c3234372c33372c3230362c3135362c33382c3138322c3132302c3135352c37302c3136382c3136352c3132372c3135382c3134302c3230362c3130322c3139372c3134312c3138372c3233325d2c22696e6465786573223a5b312c322c332c342c352c372c382c392c31312c31332c31342c31352c31362c31372c31382c31392c32322c32332c32352c32372c33312c33322c33332c33342c33352c33362c33372c33382c33392c34312c34332c34342c34352c34362c34372c34382c34392c35302c35332c35342c35352c35372c35382c35392c36302c36312c36322c36342c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37372c37392c38302c38332c38342c38352c38382c38392c39302c39312c39322c39332c39342c39362c39372c39392c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137352c352c34382c33332c3230312c3132352c3132382c32302c3234322c3139352c35352c3231392c38382c3232312c38382c3131392c3232312c35302c3133352c3132352c39332c3135362c3233342c3139352c3137362c3235332c3135362c3130392c3233342c3233362c3138392c34312c3138382c3133372c3138312c382c3232372c3130312c36382c39312c33392c39382c3134382c36382c3135332c3133332c3138352c31362c392c3138332c31362c31332c3231362c31382c33302c34392c3136302c37332c3138332c3130362c35332c3130332c3233342c3138382c352c3232372c34382c3134332c32302c34372c34312c3139322c3136312c3135322c312c3139362c3230302c36332c3136302c31372c352c3230342c3130322c38392c3130302c3136332c31332c36382c39312c3232342c3231322c32352c3132302c36322c3139302c3233385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "0f55549ae8d874d0fb26aef9f6f2373e1dad79a5a68dbbfbcee3a1b4e2cd28bc": { - "hash": "0f55549ae8d874d0fb26aef9f6f2373e1dad79a5a68dbbfbcee3a1b4e2cd28bc", - "previous_hash": "7d8ad90cfa2289b90a4a153a6660bb77f08a1ae11297f4c1a8fe848674a47217", - "epoch": 17, + "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5": { + "hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", + "previous_hash": "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1", + "epoch": 14, "signed_entity_type": { - "CardanoStakeDistribution": 16 + "MithrilStakeDistribution": 14 }, "metadata": { "network": "devnet", @@ -145,39 +183,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:36.568549907Z", - "sealed_at": "2026-03-13T08:42:36.701514964Z", + "initiated_at": "2026-04-08T08:02:18.299735920Z", + "sealed_at": "2026-04-08T08:02:18.440250382Z", "signers": [ { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135302c36362c3232352c3133352c35352c3138342c3133332c37302c3139302c3232332c3132392c3235352c38392c3234382c3136312c32392c3130302c3233382c35392c38312c3138342c3234362c3130342c33332c33342c36342c3231372c3234332c3139362c32382c3231362c37335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "17", - "cardano_stake_distribution_epoch": "16", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "14" } }, - "signed_message": "fc839b57faf73c4313af3262c7bd81bf3d21aed03aafbe789530e053db701016", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3132302c3235312c3232302c3139392c3232352c3135332c35372c36322c3235312c32372c36392c3130332c36302c34362c3230372c33352c38372c3136372c3233312c36312c3231382c3139352c35322c3139392c39382c3130382c3233362c3233332c3130352c3138322c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c3132332c3232362c37352c32322c3233342c3136352c3135342c38322c3230302c3130362c36372c3233322c33312c302c38372c3138372c3133382c31312c31302c3235322c3133312c332c3234342c35362c372c3132382c3233322c3131352c36392c3135302c35382c3136352c32392c32312c35362c3133392c32392c38382c3233392c3133392c36312c3134372c3233382c36352c372c31352c3133395d2c22696e6465786573223a5b302c322c332c342c362c382c392c31302c31312c31332c31362c31372c31382c32302c32312c32332c32342c32352c32362c32382c32392c33342c33352c33372c33392c34302c34312c34332c34352c34362c34372c34392c35302c35312c35322c35362c35382c35392c36312c36322c36332c36352c36372c36382c37302c37312c37322c37332c37342c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38382c38392c39302c39312c39332c39352c39362c39372c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3137372c37302c3230332c34382c3136382c3131382c3137392c3233372c3132352c3134372c3233322c3132372c39392c3131322c3134312c3133372c33312c32382c3131312c3137312c3137332c33382c3130392c3135332c3136372c3234342c3234342c31362c36302c3234312c3137392c32392c3232372c3234332c3235312c312c33312c3232382c3234352c3138342c3134372c3132312c32352c33362c38362c3136362c3133312c36362c302c3135332c3138362c39302c3139382c37352c3133352c34392c3137332c3230382c3235302c31302c3130372c32382c38342c3231362c3136342c39352c37372c39362c3134312c3134372c39322c3139342c38352c3132302c3131342c37382c36302c3235332c3232352c39342c3135302c35302c3234352c3138392c3130302c312c3234302c32352c3134392c33382c31382c38382c3233352c38332c31312c3230395d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233382c3136312c3133362c3138342c38372c31342c3136342c3130332c3136322c36342c3136312c3135382c3138322c3231312c3130312c3232332c392c3231352c37302c3232372c36302c35372c3131352c3136322c35352c3135362c33302c3131322c3135322c3232352c3232322c39395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "239c408654ae56956a518c9f624b654b82d552876ed43d1597c4ed95ea65a456", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c39372c35352c3233302c3233382c3130302c3137352c3137332c3138392c3131382c38372c3230372c3135302c31382c3230362c3130312c33312c38302c3233372c3233302c3132352c34392c39352c3139352c3233362c34392c34302c3136342c35312c35382c3136302c3135362c3230392c3230322c3139312c35342c37302c37312c3136372c3136312c32382c32312c39382c3234332c3137362c3130352c3130302c3131355d2c22696e6465786573223a5b302c312c322c342c362c382c392c31312c31322c31332c31342c31352c31362c31372c31382c31392c32312c32322c32352c32362c32372c32382c32392c33302c33332c33352c33362c33372c33382c34312c34322c34332c34342c34352c34372c34382c34392c35302c35332c35342c35352c35362c35382c35392c36302c36312c36322c36342c36352c36362c36372c36392c37332c37342c37362c37372c37392c38302c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39332c39352c39362c39372c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134302c3132362c3130382c36332c3231332c3230362c3231352c33342c31312c3233362c3134332c3138322c36322c35362c3230382c31312c3134362c33302c31312c3130392c3132312c34312c3230352c36382c39312c36302c3132362c3230302c33362c3134312c35392c3131312c3139342c3139352c33362c3139392c38342c3137322c36362c3232342c3230392c3134382c39342c3133312c38312c392c38382c3132302c31302c3131302c3131332c3132332c38372c3231332c3132342c3138372c3130372c3136362c39312c3136362c33322c34302c33352c3234382c36382c32382c3135382c32302c3134352c37372c37302c37392c3130322c35322c39332c37302c3136382c36392c3135342c38322c34312c36362c33352c38312c3233302c36312c3130382c3231382c34372c39312c3132312c3234392c3135362c31352c37342c38315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132332c39352c3232392c3130322c32372c3137362c38372c34312c33372c3133322c31332c3231332c33332c3130372c33382c3133392c3137302c3233362c3139372c3135362c3130312c3135332c38312c38302c3139312c32392c33372c36372c3132392c37372c3232302c31355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "135c6de9fa65ffd328b00918df0b40b51df9a9f7394cdec81a9a2b7368bfe545": { - "hash": "135c6de9fa65ffd328b00918df0b40b51df9a9f7394cdec81a9a2b7368bfe545", - "previous_hash": "7d8ad90cfa2289b90a4a153a6660bb77f08a1ae11297f4c1a8fe848674a47217", - "epoch": 18, + "232fa5b6c75f1d29809e51f90e4a912f88a519a0aae3dd9046daad631568ccbb": { + "hash": "232fa5b6c75f1d29809e51f90e4a912f88a519a0aae3dd9046daad631568ccbb", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "MithrilStakeDistribution": 18 + "CardanoDatabase": { + "epoch": 15, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -187,37 +226,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:39.319633956Z", - "sealed_at": "2026-03-13T08:42:39.452451367Z", + "initiated_at": "2026-04-08T08:02:22.056121622Z", + "sealed_at": "2026-04-08T08:02:22.199967029Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "18" + "current_epoch": "15", + "cardano_database_merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6" } }, - "signed_message": "b9d7db83e3429cbfccc7ab5ca05f4768a3cd4776e9669b9c29a4c7192c811ae7", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135302c36362c3232352c3133352c35352c3138342c3133332c37302c3139302c3232332c3132392c3235352c38392c3234382c3136312c32392c3130302c3233382c35392c38312c3138342c3234362c3130342c33332c33342c36342c3231372c3234332c3139362c32382c3231362c37335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136392c39372c3139332c37372c372c3137322c3231312c3137332c3138332c352c33322c3130372c332c38372c34312c3231392c3137362c3134322c3233392c38362c3131322c3137352c35382c3135332c34372c3136352c38382c3131342c3134332c39312c34302c3139332c3133342c37302c3133382c35302c36342c3135352c35342c3132322c3233362c35352c312c3132322c33332c372c3138352c3137305d2c22696e6465786573223a5b302c332c342c352c362c382c392c31302c31332c31342c31362c31372c31382c31392c32302c32312c32322c32342c32352c32362c32372c32382c33302c33322c33332c33342c33352c33382c33392c34302c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35372c36302c36312c36322c36332c36342c36362c36372c37302c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39312c39322c39332c39342c39352c39362c39392c3130302c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137392c3230392c3136392c3138302c3232372c3137362c3138312c3138322c32302c3137392c38312c34372c3136322c3234392c32342c3135392c3138392c3232322c34342c31332c39362c3133312c3233312c3133342c3232342c3136342c3135302c3232342c3230372c3233342c3233362c3130352c3232322c3137392c3231342c3132302c3134352c3234372c3232382c32392c382c3137382c3230362c33372c3131342c3235352c3131322c39362c31332c3132322c3138392c3134302c32332c3139332c39322c3230322c3134392c38322c3138382c35322c3234392c32312c39362c35322c3231302c3134382c3234382c3134302c3132352c34352c3137352c3139382c3136372c34302c39322c3231352c3132322c302c3133382c34382c31372c3136342c3230302c3134372c33362c3231342c3136342c32332c3233322c3131392c3132362c3231322c3137372c3234302c3235322c31355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32372c3137372c31372c39332c3233352c3134392c3232392c36382c3135392c34352c39352c34332c362c35372c3233382c3136302c3231322c31372c35372c322c3134372c3139332c3134372c39392c3136352c3137312c3134342c3139332c38302c3232382c3232322c3131345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "5111089626b1311f9c19eb3ebc7176be5e4edaef011e63f6bb803c161062f193", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134372c35332c32302c3135302c38352c3134322c31382c34362c3132342c38322c3136302c302c3132332c32372c322c33312c352c3135312c39342c3132322c3134362c3130312c3133342c3233302c3137332c3136382c31322c36352c35392c3137322c33382c31322c33362c38342c3137372c3134362c3138382c36322c3136342c3132342c3131382c36332c372c3133392c34392c382c35302c34335d2c22696e6465786573223a5b312c322c332c342c352c362c372c392c31302c31312c31322c31342c31352c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34312c34322c34332c34342c34362c34372c34392c35302c35312c35332c35342c35352c35362c35382c35392c36312c36322c36332c36352c36362c36372c36382c37302c37312c37322c37332c37342c37362c37382c38302c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133312c35372c3134342c35382c31342c3232302c37322c3132332c33352c37382c3234302c38342c38392c3131362c3232312c35372c3230302c3234322c35332c31372c39302c3132332c3135372c3132302c3231362c3138392c3230382c3136312c39382c3232372c3139372c3231312c36322c3235342c3139332c33342c34352c36302c3139342c3230302c3135312c3131392c34392c3133392c37362c3230302c3133312c3135332c342c3135372c372c38322c3138362c32342c3133332c38382c3230392c38372c36342c31362c3138332c31302c38372c37322c322c3230352c3233342c3234312c37352c31362c3132342c3230332c33302c35352c37302c33372c34332c33362c3139342c33342c3234382c35392c3133302c3232392c33392c36312c3138332c3235332c3232342c39372c3232382c3132322c3135342c3230312c34302c3133345d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3135322c3130392c37352c38382c31332c3134352c34302c3132312c39332c3131322c322c36352c3234312c3131302c3231382c3135312c3133392c3235322c3233322c3135322c38382c3232372c3135392c37342c31332c32372c3234332c3130372c31372c3132352c3130372c3134372c33392c3235302c3137322c31372c3231322c3132352c3232392c3136322c3235322c322c3231352c37352c32362c3137362c39352c36305d2c22696e6465786573223a5b302c382c31332c31362c33332c34352c34382c35322c35372c36302c36342c36392c37372c37392c38312c39395d2c227369676e65725f696e646578223a317d2c5b5b3136372c3131302c33392c3133332c33352c38302c31302c3232392c392c3132312c39392c3235352c34382c3232332c3131342c3234362c342c36302c3139362c3132362c3135342c3233372c35302c3135312c3133382c3130362c36332c3234322c382c3132302c3233342c35362c3130312c33322c36342c3137302c39312c3232372c32382c3137322c3136362c3131332c38312c3139372c31342c3231312c36302c3232362c352c3232342c3235342c3130322c35332c39392c3133372c3233392c3231392c31352c3231392c32382c3139332c3135362c3235342c3233332c3233382c3234322c3135382c3135302c3133332c3131352c34302c3136302c3139352c3133352c3134372c3137392c3135302c33342c3232322c36302c35372c3233342c3134302c3138322c3234362c32332c37342c32332c3135342c3137382c3133372c3130332c3137322c3139302c3139382c31385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "1c4aa48489936100fb4decb172641cb28599792ffe78103917d3844c98866e8a": { - "hash": "1c4aa48489936100fb4decb172641cb28599792ffe78103917d3844c98866e8a", - "previous_hash": "326c537f77f8e8c05c6cb6ed59b95570f3a13b975fb0911ce8cfcc84a1e6d18a", - "epoch": 16, + "24d1800a5c2564000418398fa864f53f34a62db0172d87dc54ae578f252cc529": { + "hash": "24d1800a5c2564000418398fa864f53f34a62db0172d87dc54ae578f252cc529", + "previous_hash": "0f8f818a070cd6034f334226472382e57700c261ac9208e4ee64f50d60638d33", + "epoch": 10, "signed_entity_type": { - "MithrilStakeDistribution": 16 + "CardanoDatabase": { + "epoch": 10, + "immutable_file_number": 2 + } }, "metadata": { "network": "devnet", @@ -227,39 +270,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:33.318641208Z", - "sealed_at": "2026-03-13T08:42:33.451911021Z", + "initiated_at": "2026-04-08T08:02:07.301016211Z", + "sealed_at": "2026-04-08T08:02:07.437682300Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3132302c3235312c3232302c3139392c3232352c3135332c35372c36322c3235312c32372c36392c3130332c36302c34362c3230372c33352c38372c3136372c3233312c36312c3231382c3139352c35322c3139392c39382c3130382c3233362c3233332c3130352c3138322c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c36382c3139362c32372c3231342c3230352c31352c36332c3232342c33312c3139322c3232362c39382c32392c31322c3131342c3130362c31302c3135362c3233332c33352c3232362c39372c3131362c3230372c3134392c3234342c3133332c3133342c33382c3232352c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "16" + "current_epoch": "10", + "cardano_database_merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04" } }, - "signed_message": "57a2a00e6119a06f9c1f532f9a86cae1d7570e7fe05befc3a7cd5742460dffd2", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35392c3138392c3132322c352c3137332c36312c39302c3139362c3132372c35372c35312c3230372c3230362c3139322c33392c3230302c38332c3234332c3235312c3235302c3231372c37332c33322c3132322c3233312c332c3232322c3136332c3235322c3235302c32312c3130335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136372c382c3130382c3130342c3234352c3231312c36332c3234372c3139342c3230332c38372c3133372c3137372c3234302c34322c3134312c35362c3132302c3138302c3136382c3231372c3231332c34362c3232372c3138322c3138302c3234332c36302c33352c3232322c3233332c3233342c36392c33332c3138392c3130332c3235302c3139332c3132382c31392c3231352c3134332c3131302c3132342c34352c3230302c3234352c3130385d2c22696e6465786573223a5b302c312c342c362c372c382c392c31312c31332c31342c31352c31362c31372c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c34312c34322c34342c34352c34362c34372c34382c34392c35302c35312c35322c35342c35352c35372c36312c36322c36332c36342c36352c36362c36382c37302c37312c37322c37342c37352c37362c37382c37392c38302c38312c38322c38332c38342c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137302c3132352c3139312c3232352c3234392c38362c37382c3230342c3133382c3233332c3232392c3135302c3136322c3234342c3136382c3136352c3235352c3233352c3231382c31312c37382c3130302c34302c36312c312c39302c3233372c3134362c38302c3132342c3138322c3139372c34372c3232332c3235332c35382c3233362c37312c37352c37392c39382c3135392c32332c3234302c3139382c39322c3138312c3133332c302c3231362c3230312c3130322c3234362c3233332c3136302c3133362c3130352c3132322c3130342c32392c3132322c3135392c39312c3130332c38392c3232352c3136332c3234372c36362c302c35372c35312c3233302c3136302c36302c3135372c32382c3131352c3136332c3231392c3133352c3233362c332c3133332c3133342c3230312c3234302c32322c3130312c34372c3230382c32302c3233372c3134332c3135302c3232395d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233342c3132332c3230382c37362c35382c3231322c3135302c3139342c3130302c3130372c32332c33332c3131362c3139312c3136332c3135352c3138372c3137312c3234372c38312c33302c3234332c3138302c3234392c3139382c3132362c32322c32302c33332c34392c38392c32375d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "4597c7ab80ea3d7e1a082e280e50fb6202027a1c03bc85b16ce269dd1d316727", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33302c3234362c372c3136352c392c3234392c3133352c33392c3137332c32312c3133302c3138352c34362c33382c39322c3137372c3234352c3134312c3132342c3136392c3138382c3134362c3231362c3138382c3131302c3138352c3231382c3133372c3231332c3234332c3234372c3134375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133342c3232332c31372c3133352c32392c3230342c32302c3136392c36362c3134372c3137372c39362c38332c39342c32302c3135342c31362c33392c3136302c36322c3138302c3233362c38302c3133352c36312c3138372c32312c3234382c31362c33342c39342c31392c3133302c3230382c3139342c31382c3133362c342c3136352c32372c3136382c32362c37392c3139392c3137352c3131362c322c3234335d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c392c31312c31322c31332c31352c31362c31382c31392c32312c32332c32342c32352c32362c32372c32382c33302c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35322c35332c35342c35352c35362c35372c35392c36302c36332c36342c36362c36372c36382c36392c37322c37332c37342c37352c37372c37382c37392c38312c38342c38352c38362c38372c38382c39302c39312c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134382c3234322c32352c32372c36362c3139322c3131332c3233322c3234352c3130332c34382c33302c3130392c36352c3135392c3132302c38342c3131372c3135332c35382c3132302c34372c3235322c36392c3139332c36372c37332c31312c3234352c35312c3232382c3138312c37382c3136342c3135362c3137302c3231392c3230332c3132382c3136392c36312c3234352c36352c3135392c38362c3234392c3137312c32362c31342c3134392c36302c3137322c33362c3133392c39342c32362c3233302c31392c3133362c3130362c3131352c36342c38352c31352c35312c3139372c38382c322c362c3136392c34382c362c3139332c3132302c3133392c34302c3230342c35322c3137392c31322c3231382c31372c31302c3131382c3136382c3137302c32382c3138382c3231302c3233382c3134302c3230352c38352c3130392c302c35325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33352c3231302c3233312c3134392c36362c3137332c39322c3137352c32312c302c3131322c3133372c34392c342c3131342c3131382c3135392c33342c3133392c32392c372c362c352c3131312c3234352c3130372c3132332c3139392c3234342c3137372c3233342c3130325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "23e332c7ce982bbde143fa68f97b69ee4ca0c3b08821836b7e52e5f7ee81aa21": { - "hash": "23e332c7ce982bbde143fa68f97b69ee4ca0c3b08821836b7e52e5f7ee81aa21", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "2b91e654a62a5d34ee989101c4a2a8362cbed44280836122a7bdb2cbed3fed02": { + "hash": "2b91e654a62a5d34ee989101c4a2a8362cbed44280836122a7bdb2cbed3fed02", + "previous_hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", + "epoch": 14, "signed_entity_type": { "CardanoDatabase": { - "epoch": 21, - "immutable_file_number": 5 + "epoch": 14, + "immutable_file_number": 3 } }, "metadata": { @@ -270,38 +314,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:49.069541073Z", - "sealed_at": "2026-03-13T08:42:49.203431614Z", + "initiated_at": "2026-04-08T08:02:19.053405646Z", + "sealed_at": "2026-04-08T08:02:19.190250715Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "cardano_database_merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb" + "current_epoch": "14", + "cardano_database_merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6" } }, - "signed_message": "116a92deb80cbc87c2894e2a2408e3def1ea983463e5512efa7e649c28e2f647", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137302c3234342c3131332c3132362c3133332c3136302c3232372c34372c3133352c33382c35302c3133392c3133302c3139372c38332c38332c3234372c3133312c31372c3135372c3133302c3136302c3134342c34342c3137302c38302c35342c3134382c3130342c3130312c3133302c3232302c3135302c32392c3230342c3231332c3138392c3130332c3133352c3232392c3133302c3230342c3130352c3132312c3233322c362c3131352c3134395d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32322c32332c32342c32352c32362c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35342c35362c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3135322c3139302c3133322c3232332c3133362c38352c35382c3138302c3133312c32322c3131322c3231382c3137372c34372c39372c38342c3233302c3231302c39302c37342c34322c3138392c33322c33382c3233312c3230342c3131302c3234342c3139342c3233342c3233382c3133312c3132302c3232302c32352c37342c3136322c33342c3137392c3136312c38322c3133382c34342c37362c3133352c3233322c3136332c3235302c32322c34392c3133312c3230352c3132312c3230382c3139312c3136332c3133342c39362c3137332c33332c3131352c3137372c3230372c3131302c36392c3230302c3231392c3137382c3132392c39362c3136382c3136322c31362c3139312c36342c3132312c3135362c3233382c35312c3130302c38362c3139372c3132332c3139382c3137352c3233312c3233362c3131332c35342c37392c3233312c34322c34392c3232302c3139332c37325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134352c3130312c34362c3130312c3137352c3139392c3138362c3134302c39332c3231372c3137352c3137392c372c3138322c35372c3132392c3132312c3130352c32362c37342c3135382c3134392c3131362c35312c3135372c33332c36332c3137312c3230312c3130342c37362c34305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "c8599a885dd206352bee94be0c76170aaa5dd3a9d05b19d34f53d6ae8a8936ae", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3139322c3136332c3131382c3137352c37302c32382c34312c3135382c3133342c35332c39332c3138362c33312c31342c3138312c38352c35392c3231312c3233362c3136332c3233342c3132332c3232362c342c35352c38302c38312c3235322c3136312c382c3234332c3230322c32382c3131352c3136362c3131332c3139392c312c3136332c37322c36392c3231362c3136302c3230302c3130302c32352c35325d2c22696e6465786573223a5b312c322c332c342c362c372c382c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32302c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34352c34372c34392c35302c35312c35342c35352c35362c35372c36302c36312c36322c36332c36342c36352c36362c36392c37302c37322c37332c37352c37362c37392c38312c38332c38342c38352c38362c38382c38392c39302c39312c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133342c3234342c3131332c3233382c31372c34372c35322c3231352c3139302c3133312c3137332c3133332c3137342c322c3139302c3139322c3132362c34342c3232332c34372c3137362c3232372c3131332c3130362c3234312c3232342c3134312c3233392c3134362c37382c3131372c3137382c3132302c3132372c39302c31382c3230302c32392c372c3130362c32302c33362c3134372c3138322c35322c342c36332c37302c342c3136302c3136312c31332c37372c3130322c3133362c3137382c39362c37382c3134342c3139302c3137362c3136312c3134392c3137362c3135362c34382c3132372c3231312c36372c3137352c3136342c332c3138382c3234342c3131302c3133392c35312c3134372c3136332c3233342c3132392c3132392c39332c3231352c3234362c3134322c3232302c3130302c3136392c3136302c33342c33352c3139352c34302c34302c34355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138382c3231332c3134312c3138382c32372c33342c3231312c3133302c35302c332c3138392c3138372c3230342c3130392c3130382c3131312c3139392c3139302c3230392c3137332c3133302c3135392c3139372c3136302c3133322c3231312c3232302c3136302c3139392c3137362c3231312c3231305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc": { - "hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 22, + "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1": { + "hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 16, "signed_entity_type": { - "MithrilStakeDistribution": 22 + "MithrilStakeDistribution": 16 }, "metadata": { "network": "devnet", @@ -311,37 +355,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:51.318502987Z", - "sealed_at": "2026-03-13T08:42:51.455763865Z", + "initiated_at": "2026-04-08T08:02:24.302695588Z", + "sealed_at": "2026-04-08T08:02:24.446287828Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "stake": 20000000001 - }, - { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c3135372c3232362c3234352c31332c3231352c37382c3230392c3136312c32302c32392c3139342c35372c3233382c36352c3132332c3234342c39302c3235312c3130382c32342c3131352c39332c372c3230352c34382c3133342c3137392c3234302c38322c33382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "22" + "current_epoch": "16" } }, - "signed_message": "d6f1db4f60b70f8050b44cf8ee6e1883515d0e52691888e5a31ed50976a7019d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136362c3137302c3134392c3134322c34342c3233322c3134322c3235302c3133302c39342c3134382c3130362c33352c3132372c382c3133382c37342c35322c3233372c3130322c3230312c37392c3130302c39372c3138322c35372c3232382c3131322c32302c35382c3136392c39332c3230352c3136362c3136342c3231352c362c3130302c3235342c3132352c36382c3234342c3130312c372c3132312c39322c3134322c3131335d2c22696e6465786573223a5b302c312c342c352c362c372c382c392c31302c31312c31332c31352c31362c31372c31382c32302c32322c32332c32342c32372c32392c33302c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34362c34372c34382c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36372c36382c37302c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38372c38382c38392c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3135332c3232332c3235352c3231382c36362c35312c3131362c39322c3139332c34372c3234322c3134372c36322c3135392c3235342c34352c34342c3232322c31332c37392c32372c3138322c32312c3133352c32312c3131352c3133352c312c352c3138382c3232392c38342c3135302c34342c3234362c3234382c3235312c3135372c3231322c38352c3136342c39312c3232382c36352c3233362c3231332c3130362c3133312c31342c36312c35302c37382c3232372c3134382c3232312c33302c3230342c3232362c3235322c37322c31392c39362c3230322c302c362c3134322c3139342c3138302c3233382c39382c39322c3131332c34352c3230352c372c3139312c3132392c3136352c3230392c37382c3134302c3234382c3134302c35342c32352c3132392c3132332c38302c34352c35302c3138322c37362c3135332c3234352c32342c34385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35302c3134372c3134362c3134382c3136302c3134322c35322c3134392c3234392c3234362c3136302c3139302c31352c34302c3136302c3134352c3139392c3233382c34312c3232382c3133392c32352c3234372c3135312c31372c36382c37362c3134322c39322c3131372c3136342c3134385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "250b2523472c9895f789d736ce6835ff69190f2e4023da20d1d2fdf8c8bac57b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136392c3234392c3230362c3233342c3132322c33392c3233332c3139352c37382c3136352c37302c3132302c32352c3231322c3134372c3138372c3136392c3132332c302c3235312c3136352c3231302c36302c36322c34392c3131352c39372c35342c36342c37352c3135342c38352c37352c3132312c31382c3130322c3136392c3135352c3139362c3137302c33332c3139352c35312c36302c33392c3135372c3135392c3232325d2c22696e6465786573223a5b322c342c352c372c382c392c31302c31312c31332c31342c31362c31372c31382c31392c32302c32312c32322c32342c32352c32372c32392c33312c33332c33352c33362c33372c33382c34302c34312c34322c34332c34342c34352c34372c34392c35302c35312c35322c35332c35342c35352c35362c35382c36312c36322c36332c36352c36362c36392c37302c37312c37322c37332c37342c37352c37372c37382c37392c38302c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137312c3132392c38352c3230352c3131312c3235352c3130372c3231392c31382c3130342c36352c3233392c37302c3233322c35352c352c39352c3136322c38332c3134342c3130382c3130362c32372c35372c3130382c34302c3233312c3133392c3136332c3233372c3138362c3132382c3139322c33392c33362c3130352c302c38382c35332c38322c3130342c3232312c3132392c3136352c3231342c3234362c392c36322c322c3136342c35302c3131342c3136372c3131332c39322c39312c3134372c3234372c3133382c3138362c37352c3230332c3235312c35342c392c3234372c37322c32322c3134332c3136332c3233332c3135302c37322c3131392c3135352c3137342c3134312c3232392c3233392c3138312c32312c34322c3134342c34362c3139362c3235342c33392c3233342c3131322c3233382c3135322c32302c3235342c3135332c3139342c3135355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31362c3136382c35362c3136312c3235312c3232362c37372c322c39302c38362c3133362c38382c37392c35362c3133372c3134362c3139332c3138352c37352c3137342c32312c3130382c3132312c3230342c34342c3132322c3130382c3130392c38352c3130322c3136322c32345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "2a85a93bce0b129313af050f56869bc26ce6bda7fafcc2d7604ccb54a1fde071": { - "hash": "2a85a93bce0b129313af050f56869bc26ce6bda7fafcc2d7604ccb54a1fde071", - "previous_hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "epoch": 22, + "39c00306eeef28263944bfe0ddc239d1d8fe7048d6d1d1589fe183bba9eed316": { + "hash": "39c00306eeef28263944bfe0ddc239d1d8fe7048d6d1d1589fe183bba9eed316", + "previous_hash": "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1", + "epoch": 13, "signed_entity_type": { - "CardanoStakeDistribution": 21 + "CardanoDatabase": { + "epoch": 13, + "immutable_file_number": 2 + } }, "metadata": { "network": "devnet", @@ -351,42 +394,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:51.568526586Z", - "sealed_at": "2026-03-13T08:42:51.705488277Z", + "initiated_at": "2026-04-08T08:02:16.067206851Z", + "sealed_at": "2026-04-08T08:02:16.189139961Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c3135372c3232362c3234352c31332c3231352c37382c3230392c3136312c32302c32392c3139342c35372c3233382c36352c3132332c3234342c39302c3235312c3130382c32342c3131352c39332c372c3230352c34382c3133342c3137392c3234302c38322c33382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "22", - "cardano_stake_distribution_epoch": "21", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "13", + "cardano_database_merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04" } }, - "signed_message": "4d9df8d89fef8005d4b6d5cb1ce5582573fc373bc505e36ecf64b350a8bb81cc", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137312c3132342c3233302c3232342c3231372c3139372c32382c37302c3133372c37392c3134342c3132382c3130342c37322c38332c35362c3132352c3132352c3139312c39302c35382c3234322c36332c3231302c32362c32352c32342c3134322c3134302c3133332c34342c3137322c3132312c3233352c3134312c38392c3135362c3132392c3138322c3230352c3230332c322c38362c3133342c32382c3231372c3135302c3230355d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31362c31372c31392c32302c32312c32342c32352c32362c32372c32382c32392c33312c33322c33342c33352c33362c33372c33382c33392c34302c34322c34332c34342c34352c34372c34382c35312c35322c35332c35342c35352c35362c35382c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37342c37362c37372c37382c38302c38322c38332c38342c38362c38372c38382c39302c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134392c3231352c3134352c3135352c3131362c31392c36362c3230312c3136382c3130312c3139352c38372c3139312c3231362c3133332c39302c3139302c3139342c36392c38352c3133342c3230312c3235352c38332c3134342c3233382c3231382c34382c3130392c3233332c3130392c32342c3234302c3135312c3134322c3138312c35332c3230332c3233352c3233392c31332c32362c3132362c3137392c38372c3235302c3139302c3230372c31372c3231352c3131382c3130332c38352c3134382c39322c352c3133312c38352c39362c3233372c34312c3135352c3230392c31362c32372c35372c3232332c33382c34382c35302c3233302c3135362c3137342c35362c3137322c37342c3232382c34352c35312c32392c332c3131302c3130312c39372c3138352c32312c3232392c3130322c3233332c33392c3134312c31322c3233322c3133372c3135352c33365d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3139372c3135312c3234362c33392c392c3234392c37332c3233322c31362c3139392c3137392c3231342c3133352c3234382c3230302c3134322c3235332c3139372c3133312c3138322c3135302c3137392c31372c34312c3231382c3137392c3138392c3133392c3139322c3137352c3138372c3134345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "63d658b0a4135babf50e10dd42b1e759c27c873b13b625cd020013e67c3f9f59", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133302c3139312c3132322c3130312c3134362c36352c3232302c36302c3132392c3133382c3133312c39312c36372c3234372c3137362c3139372c35322c3230312c32352c37362c3137312c36352c3132382c302c3135302c3233302c34362c302c3137372c38322c3235322c302c3232302c3132372c3231322c3233362c31382c3134382c3230352c31362c37362c3139312c3230372c36302c32372c3137312c3135372c3230325d2c22696e6465786573223a5b302c312c342c352c362c382c31312c31322c31332c31342c31352c31362c31372c31392c32312c32322c32332c32342c32352c32362c32382c33302c33312c33322c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34382c34392c35302c35312c35352c35362c35372c35392c36302c36312c36322c36332c36342c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37382c38302c38312c38322c38342c38352c38372c38392c39312c39322c39342c39352c39362c39372c39392c3130302c3130312c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c33312c35372c3136302c3136322c35332c3133392c3232302c3130322c3234392c3139302c39312c312c36392c31392c37332c38382c3130302c39382c3132342c34362c3231302c3231342c39392c3235332c3134312c3138322c3230382c372c3234342c34362c3134332c31342c3132302c38362c3230372c3230392c3234302c322c36302c3136352c3233312c3135322c31382c372c3136392c32332c31382c31342c3135332c3130302c3232322c37392c3134392c3230362c33352c3139382c35302c3235342c352c3135372c38372c37312c38362c3132352c3230302c3132362c35342c3234372c3136382c3232332c33352c32322c3134382c302c3133362c3130342c3133322c39382c3233332c3134362c32372c32342c3134352c31362c38372c3134312c36362c35342c3234342c33342c3135322c3233322c35322c3138342c34395d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34392c3131302c3130302c3233312c31352c3134362c3234332c3130332c35342c3235332c3231332c32332c322c3134372c3233352c32392c3131392c382c32372c3230312c31342c3139382c3234352c3134362c3133302c33392c372c35392c3235322c3134352c32342c3232325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "2a9785896933f0fe7a4715a7bb73d1d03cffe68b6a2e91508c405a8eda48b441": { - "hash": "2a9785896933f0fe7a4715a7bb73d1d03cffe68b6a2e91508c405a8eda48b441", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "3ac652f3c89444a7d0f36ea1714cb03f54dcb32e037bb733b07e41be8644962e": { + "hash": "3ac652f3c89444a7d0f36ea1714cb03f54dcb32e037bb733b07e41be8644962e", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "CardanoTransactions": [ - 21, - 644 - ] + "CardanoStakeDistribution": 14 }, "metadata": { "network": "devnet", @@ -396,39 +435,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:49.913920992Z", - "sealed_at": "2026-03-13T08:42:49.950892993Z", + "initiated_at": "2026-04-08T08:02:21.553982938Z", + "sealed_at": "2026-04-08T08:02:21.688771993Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "latest_block_number": "644" + "current_epoch": "15", + "cardano_stake_distribution_epoch": "14", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "2ad8ebe513196881eb87ad3d0c84d395dac63de2337a5cf5e393da86689d3249", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c3230362c3138312c3230302c38302c3234362c31312c38392c3136302c35372c3139342c3131362c3234302c36322c3230382c3135332c3136312c3136302c3139312c3234312c39392c37302c3234312c32352c32342c3132302c32302c3234372c32322c3135372c3135342c3230372c3135372c372c3130342c3139342c3133372c34342c3137352c3231312c36312c312c3130342c34392c3130312c3131362c3135332c38325d2c22696e6465786573223a5b312c322c332c372c382c392c31302c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32382c33302c33322c33332c33342c33352c33362c33372c33382c33392c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35332c35362c35372c35382c35392c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137342c34342c3138362c3232332c3135342c3139382c3230312c3234332c32372c39362c3132382c3235322c3230362c36312c3135392c36352c3130342c32322c3230342c34362c3132392c39362c3135332c3139352c3134342c3234382c3234382c3133362c3230362c312c3134362c32332c37352c3231332c39392c3130382c3133362c3139372c352c3133392c32302c3231392c3132332c3231332c3130362c3130312c3235302c3138312c32352c3130352c3232372c3233302c3138362c3138302c37392c3234362c3131332c3135302c36382c3130372c33332c31312c322c3230352c3132322c36322c35312c3137322c3131302c3137342c3230342c34392c3235342c3234382c3137322c36382c3134392c37332c31372c3230322c3136332c3132352c34372c38332c34372c3230392c35372c3135322c34312c3235322c3139392c34332c31362c3137392c3234362c39355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35332c38312c3137342c3136332c38312c3233312c33352c36332c3137372c33392c3139372c33362c3135312c3130342c39362c3132322c3137392c3131302c37372c3235342c38382c31352c3135342c39372c31322c3235332c33332c3132362c3234392c3138362c38322c3134305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "748eb2a42f737a96aba3366e2cdbcb7b64519297f4c94efd78620bace8921992", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135322c39302c3131312c3233302c33322c3130332c31322c3139352c3138312c3133322c3130302c34382c3232302c36352c3133352c3235352c3133372c3137342c36362c3132382c33302c3139372c36322c3231352c3233352c34302c36382c36342c38382c38332c3136362c3231312c3138392c36372c39302c3137362c37382c3234332c35312c31322c3230362c31362c3133342c3139382c3139322c3230392c3131352c3134305d2c22696e6465786573223a5b302c352c31362c32342c32372c33352c34392c35392c36342c36382c37322c37332c37342c38312c38362c39382c3130325d2c227369676e65725f696e646578223a307d2c5b5b3133312c35372c3134342c35382c31342c3232302c37322c3132332c33352c37382c3234302c38342c38392c3131362c3232312c35372c3230302c3234322c35332c31372c39302c3132332c3135372c3132302c3231362c3138392c3230382c3136312c39382c3232372c3139372c3231312c36322c3235342c3139332c33342c34352c36302c3139342c3230302c3135312c3131392c34392c3133392c37362c3230302c3133312c3135332c342c3135372c372c38322c3138362c32342c3133332c38382c3230392c38372c36342c31362c3138332c31302c38372c37322c322c3230352c3233342c3234312c37352c31362c3132342c3230332c33302c35352c37302c33372c34332c33362c3139342c33342c3234382c35392c3133302c3232392c33392c36312c3138332c3235332c3232342c39372c3232382c3132322c3135342c3230312c34302c3133345d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3133302c34312c352c3139332c3139382c3138312c3133302c38392c3130302c3136302c3130332c37352c31342c38342c31312c38332c3231352c3134362c3134312c3139392c38362c39322c34362c3134342c352c33302c37312c32342c38382c39382c3232362c3232302c3234322c3133382c3130342c39322c37372c3234372c38342c3139302c3139302c3137362c36392c3232372c3234362c3139332c35322c36355d2c22696e6465786573223a5b312c322c332c342c362c372c392c31302c31312c31322c31332c31342c31352c31372c31382c32302c32312c32322c32332c32352c32362c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35322c35332c35342c35352c35362c35372c35382c36302c36312c36322c36332c36352c36362c36372c36392c37302c37312c37352c37362c37372c37382c38302c38322c38332c38342c38352c38372c38392c39302c39312c39332c39342c39352c39362c39372c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136372c3131302c33392c3133332c33352c38302c31302c3232392c392c3132312c39392c3235352c34382c3232332c3131342c3234362c342c36302c3139362c3132362c3135342c3233372c35302c3135312c3133382c3130362c36332c3234322c382c3132302c3233342c35362c3130312c33322c36342c3137302c39312c3232372c32382c3137322c3136362c3131332c38312c3139372c31342c3231312c36302c3232362c352c3232342c3235342c3130322c35332c39392c3133372c3233392c3231392c31352c3231392c32382c3139332c3135362c3235342c3233332c3233382c3234322c3135382c3135302c3133332c3131352c34302c3136302c3139352c3133352c3134372c3137392c3135302c33342c3232322c36302c35372c3233342c3134302c3138322c3234362c32332c37342c32332c3135342c3137382c3133372c3130332c3137322c3139302c3139382c31385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "326c537f77f8e8c05c6cb6ed59b95570f3a13b975fb0911ce8cfcc84a1e6d18a": { - "hash": "326c537f77f8e8c05c6cb6ed59b95570f3a13b975fb0911ce8cfcc84a1e6d18a", - "previous_hash": "9a90d43c206ddc973a87c96b89fa8680d2ed63134b9a81bfe050e9a963ce08f4", - "epoch": 15, + "539ffd9d5f7aa7d33a090bf0a324902094356e27537ada146cfb7fd14acc9985": { + "hash": "539ffd9d5f7aa7d33a090bf0a324902094356e27537ada146cfb7fd14acc9985", + "previous_hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", + "epoch": 14, "signed_entity_type": { - "MithrilStakeDistribution": 15 + "CardanoStakeDistribution": 13 }, "metadata": { "network": "devnet", @@ -438,40 +477,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:30.317555028Z", - "sealed_at": "2026-03-13T08:42:30.451574756Z", + "initiated_at": "2026-04-08T08:02:18.553110303Z", + "sealed_at": "2026-04-08T08:02:18.686459173Z", "signers": [ { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35392c3138392c3132322c352c3137332c36312c39302c3139362c3132372c35372c35312c3230372c3230362c3139322c33392c3230302c38332c3234332c3235312c3235302c3231372c37332c33322c3132322c3233312c332c3232322c3136332c3235322c3235302c32312c3130335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "15" + "current_epoch": "14", + "cardano_stake_distribution_epoch": "13", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "16e430eadfda1e3f7807c9fb31a2d2c246fb83cec0c837ce3e4251908e67ffc6", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234372c37362c3134322c35352c3136392c36302c3139302c35322c3131342c3130392c3139302c3135392c3131362c3233382c37352c3131342c3130392c3135382c3234312c3137382c3134342c39312c32322c3131332c3132372c35342c3233382c3130312c38342c34312c38302c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3133312c36332c34342c35362c3137332c31322c3232352c39332c3134362c3134382c33302c34332c3234342c3134312c32352c3233302c3232352c38342c3134352c38352c3230362c3134352c32322c3135392c3232342c3235352c34322c36312c32372c3133322c37302c35392c3132352c3135392c33382c3234312c31362c36362c3136322c3136322c3234372c3135332c3234332c3131322c37372c3138382c39395d2c22696e6465786573223a5b302c332c342c352c362c382c392c31312c31332c31342c31352c31362c31372c32302c32312c32322c32342c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c34302c34312c34322c34342c34352c34362c34372c34382c35302c35312c35332c35342c35352c35362c35382c36302c36312c36322c36342c36352c36362c36372c37312c37322c37332c37342c37352c37372c37382c37392c38312c38322c38332c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39362c39372c39392c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138312c3231362c3235352c3234362c3132372c3234372c3234352c3138362c3131342c34352c34372c3133322c3136342c3132352c3132342c3230362c3134332c3131362c3233342c3136382c3137332c3134332c39332c32372c35392c39302c3230332c32362c32332c3135362c3133352c35352c3131302c38312c3139302c3232372c3132322c3138332c31372c34312c38342c3137372c3235322c3134372c3135302c32332c3131302c33332c31342c3137342c32352c3233382c37312c332c3233382c3137332c35392c3137332c3230322c32362c3138372c32392c3231392c3134362c3135332c3133392c37362c37322c3235342c3233312c38372c3232322c3130302c38332c3134352c3131332c3234322c382c3232332c35352c3231352c3132372c3137312c3136312c3138352c34312c3230342c3230382c3131302c3139332c39322c3233312c31302c3134342c37332c305d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b36312c3133382c3133392c3137342c3232322c3130382c35322c3135312c3235322c3232362c3137342c31312c3131342c3138302c3131302c3134362c3233312c3131362c35342c3132382c3130312c3233342c3133312c36352c3136352c3133352c38372c3230352c3231332c34372c3136302c3231305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "eb79735577ac6289db12e88ec157d103bfdfb2a926e82073e4e6b1e1993f8965", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136332c34332c3135302c362c3234332c382c3235352c3130322c36302c3138362c3134362c3132382c3132382c3133372c38322c3133382c33362c3134312c39302c3139392c3135332c3233332c38352c35362c3130382c35302c3133322c3232382c3233382c38312c3233352c3131352c3138352c3133372c3230372c3232352c33372c37362c3132362c3233392c32312c31362c392c3137372c3133322c33312c31302c35305d2c22696e6465786573223a5b302c382c31342c32352c32392c33372c34342c35362c36342c37342c37352c38342c38352c38382c38392c39325d2c227369676e65725f696e646578223a307d2c5b5b3133342c3234342c3131332c3233382c31372c34372c35322c3231352c3139302c3133312c3137332c3133332c3137342c322c3139302c3139322c3132362c34342c3232332c34372c3137362c3232372c3131332c3130362c3234312c3232342c3134312c3233392c3134362c37382c3131372c3137382c3132302c3132372c39302c31382c3230302c32392c372c3130362c32302c33362c3134372c3138322c35322c342c36332c37302c342c3136302c3136312c31332c37372c3130322c3133362c3137382c39362c37382c3134342c3139302c3137362c3136312c3134392c3137362c3135362c34382c3132372c3231312c36372c3137352c3136342c332c3138382c3234342c3131302c3133392c35312c3134372c3136332c3233342c3132392c3132392c39332c3231352c3234362c3134322c3232302c3130302c3136392c3136302c33342c33352c3139352c34302c34302c34355d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3136312c37372c3138332c34322c3234332c3133392c3132382c3138352c37322c3233342c3234372c3133352c35372c3234332c37342c3130382c3131332c3232302c3137362c33372c3235332c39372c322c3136312c37302c37392c3136312c38312c38322c3130392c3137332c3134302c3230342c3232362c39332c36312c3231382c3138312c35342c3130372c32382c36372c3132312c3234382c3135342c3132312c3232362c3234335d2c22696e6465786573223a5b312c322c332c342c352c362c372c392c31302c31312c31322c31332c31352c31372c31382c31392c32302c32312c32322c32332c32342c32362c32372c32382c33302c33312c33322c33332c33342c33362c33382c33392c34302c34312c34332c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37322c37332c37362c37372c37382c37392c38302c38312c38322c38332c38362c38372c39302c39312c39332c39342c39352c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134302c3132362c3130382c36332c3231332c3230362c3231352c33342c31312c3233362c3134332c3138322c36322c35362c3230382c31312c3134362c33302c31312c3130392c3132312c34312c3230352c36382c39312c36302c3132362c3230302c33362c3134312c35392c3131312c3139342c3139352c33362c3139392c38342c3137322c36362c3232342c3230392c3134382c39342c3133312c38312c392c38382c3132302c31302c3131302c3131332c3132332c38372c3231332c3132342c3138372c3130372c3136362c39312c3136362c33322c34302c33352c3234382c36382c32382c3135382c32302c3134352c37372c37302c37392c3130322c35322c39332c37302c3136382c36392c3135342c38322c34312c36362c33352c38312c3233302c36312c3130382c3231382c34372c39312c3132312c3234392c3135362c31352c37342c38315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "3370016aa061ba684a63f2c04b935c95f8705e07f8d31f43ac316a4c79499a7c": { - "hash": "3370016aa061ba684a63f2c04b935c95f8705e07f8d31f43ac316a4c79499a7c", - "previous_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "epoch": 19, + "546eea37e5a92f7cc3769d3d0301b7007a7c4e1221d7fad522fe268f2229956f": { + "hash": "546eea37e5a92f7cc3769d3d0301b7007a7c4e1221d7fad522fe268f2229956f", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { - "CardanoTransactions": [ - 19, - 584 - ] + "CardanoStakeDistribution": 15 }, "metadata": { "network": "devnet", @@ -481,41 +519,42 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:43.924402381Z", - "sealed_at": "2026-03-13T08:42:43.953668805Z", + "initiated_at": "2026-04-08T08:02:24.553683789Z", + "sealed_at": "2026-04-08T08:02:24.690388716Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "19", - "latest_block_number": "584" + "current_epoch": "16", + "cardano_stake_distribution_epoch": "15", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "1273fa8791cb45118cfd36a701ea20c0443f6e538eadd6614d6aba7996646e98", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134312c3136312c3138332c342c3133332c32342c3234332c3230322c3135342c3235302c3132352c3134322c33382c3233342c3133362c3139332c3230382c3132332c36372c3135312c3133312c312c32302c3133312c31392c322c39382c39362c3131382c3130302c33372c3233342c332c34302c3234382c35382c32362c38352c33342c3235342c3130322c3135352c33392c34392c3138352c37392c3233352c34365d2c22696e6465786573223a5b302c312c322c342c352c362c382c392c31302c31322c31332c31342c31352c31362c31372c31382c31392c32312c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33382c33392c34302c34312c34322c34342c34352c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36362c36372c36382c37312c37322c37332c37342c37362c37372c37382c37392c38312c38322c38332c38342c38372c38382c38392c39312c39332c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137352c3231312c3135332c33352c3134382c34312c362c3132342c39372c3230302c362c3136382c3235342c3134302c38312c3136332c32382c3131372c34342c34362c332c3138342c3136302c34312c3134372c31322c39372c3230322c3136382c33342c3132392c3132302c3136352c34392c3231392c3133392c34392c33322c3136392c3131362c3135352c35352c35372c3136322c3134332c35312c37392c3138332c362c3230352c3235332c3235332c37302c38372c3233302c3136372c31352c38372c32302c3231322c3130322c32382c3231322c3233302c3130312c35322c3139342c3230362c3138332c34332c3132382c3135332c3230352c38392c3231342c37392c3136312c3131342c3233302c32352c34372c32332c3137342c3139322c3131362c3132372c3137362c3230362c3233352c3132302c3135372c33352c3134302c37392c3231322c3138325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137382c32372c36322c35332c36372c3139302c362c36392c3230372c32382c3132312c3133322c3232392c3135382c39352c32392c3233302c3131362c3139312c38342c3230332c3230382c3232392c36312c3137302c3235352c3230352c3233372c34362c3231352c32302c3234325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "f136d7328de0928ad89b173d6fd2ba79a3d6d7f5d9511725d8458b6c883b3bd2", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c37392c37332c34332c31352c3139332c38322c3233342c3233362c32362c3135352c35342c3131302c392c3235332c38382c3130382c3230382c31392c3230352c37332c3130392c37392c3138342c3130362c35342c37392c39342c3235312c37342c32352c39382c3130362c342c34382c36312c39362c3231332c34332c3137382c3135302c33302c35322c3139392c32312c3136392c38382c35385d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31382c32302c32332c32342c32352c32382c32392c33302c33312c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35372c35382c36302c36312c36332c36362c36372c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38382c38392c39302c39312c39322c39352c39362c39372c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134312c3232302c3133372c362c3131362c3232322c38362c33342c38302c37372c3136392c3136352c37342c31382c32312c36332c32352c38342c34302c33362c3133342c3134342c342c37392c3232382c3133372c3130382c3136372c3138352c31342c3139312c3135382c3233392c3133372c3134322c39302c3230392c34382c35342c3138322c34392c3230332c3133302c3132342c3233332c3130342c3136382c32302c31362c34322c3137362c3231302c3136392c37382c3134352c3233372c32372c3130322c3230302c3230392c3133352c342c37302c3131312c3235302c3130312c3138322c32382c3133362c3135382c33372c33362c3132332c3133332c33312c3231362c31302c3233312c3234392c3233362c38392c38302c37332c3233372c3139362c3137302c3233372c382c3131342c34392c3131342c3230302c3139322c3235332c36332c3233315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131392c332c38302c3234342c322c37342c32382c3234352c32302c39382c3132332c3234362c34342c3135332c36352c3134352c32352c3133352c38322c32342c36312c3132362c35302c3135382c3131342c31372c34372c3136302c3233392c3132322c33312c385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a": { - "hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476": { + "hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { "CardanoBlocksTransactions": [ - 21, - 644 + 16, + 494, + 1 ] }, "metadata": { @@ -526,40 +565,77 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:50.075645620Z", - "sealed_at": "2026-03-13T08:42:50.204328640Z", + "initiated_at": "2026-04-08T08:02:26.055835813Z", + "sealed_at": "2026-04-08T08:02:26.197380753Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "cardano_blocks_transactions_merkle_root": "a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_blocks_transactions_merkle_root": "6afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "latest_block_number": "644" + "current_epoch": "16", + "latest_block_number": "494", + "cardano_blocks_transactions_block_number_offset": "1" } }, - "signed_message": "6b5012567e8e6e7291fd4f6eafa7cd5499910c44851610009ec65d7da9ed6696", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134312c3134302c33342c3136362c35312c31302c3131302c3132302c38382c32302c3231312c3137362c3231302c3137372c3136382c3133332c3235322c3131342c39322c3132332c37332c3130382c38332c3135392c3135382c3135332c36302c33362c3233352c3134352c38302c3132382c3234382c3138322c3131312c3234352c3130392c3130342c31322c3132312c3235342c3134312c3230312c3230312c34382c3137352c3130362c3131305d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c392c31302c31322c31332c31342c31352c31362c31372c31392c32302c32312c32322c32332c32342c32362c32372c32382c33312c33322c33332c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36322c36332c36352c36372c36382c36392c37302c37312c37322c37342c37352c37362c37382c37392c38302c38312c38322c38352c38372c38382c38392c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3135322c3139302c3133322c3232332c3133362c38352c35382c3138302c3133312c32322c3131322c3231382c3137372c34372c39372c38342c3233302c3231302c39302c37342c34322c3138392c33322c33382c3233312c3230342c3131302c3234342c3139342c3233342c3233382c3133312c3132302c3232302c32352c37342c3136322c33342c3137392c3136312c38322c3133382c34342c37362c3133352c3233322c3136332c3235302c32322c34392c3133312c3230352c3132312c3230382c3139312c3136332c3133342c39362c3137332c33332c3131352c3137372c3230372c3131302c36392c3230302c3231392c3137382c3132392c39362c3136382c3136322c31362c3139312c36342c3132312c3135362c3233382c35312c3130302c38362c3139372c3132332c3139382c3137352c3233312c3233362c3131332c35342c37392c3233312c34322c34392c3232302c3139332c37325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134352c3130312c34362c3130312c3137352c3139392c3138362c3134302c39332c3231372c3137352c3137392c372c3138322c35372c3132392c3132312c3130352c32362c37342c3135382c3134392c3131362c35312c3135372c33332c36332c3137312c3230312c3130342c37362c34305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "7c48a13c3ddfa2d9405d4daf6ac2bfe918041594b9ffa37ec6ebdf862f96a97d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133342c3139372c3133372c3138362c3131302c3133322c34342c3233372c3137322c37342c3234382c3131332c3136342c34392c3133332c33362c3131392c3131352c3136312c34372c3137392c36322c36312c32342c3136362c35342c3130302c34362c3134312c33322c38332c3134342c31352c3230302c3133312c39342c3135332c3136332c3235332c3137392c3233352c34332c3139322c3231302c3137342c3231372c3132322c36325d2c22696e6465786573223a5b302c312c342c352c372c382c392c31322c31332c31342c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33302c33312c33322c33332c33362c33372c33382c33392c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35332c35342c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38392c39302c39312c39322c39332c39352c39362c39382c39392c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3134312c3232302c3133372c362c3131362c3232322c38362c33342c38302c37372c3136392c3136352c37342c31382c32312c36332c32352c38342c34302c33362c3133342c3134342c342c37392c3232382c3133372c3130382c3136372c3138352c31342c3139312c3135382c3233392c3133372c3134322c39302c3230392c34382c35342c3138322c34392c3230332c3133302c3132342c3233332c3130342c3136382c32302c31362c34322c3137362c3231302c3136392c37382c3134352c3233372c32372c3130322c3230302c3230392c3133352c342c37302c3131312c3235302c3130312c3138322c32382c3133362c3135382c33372c33362c3132332c3133332c33312c3231362c31302c3233312c3234392c3233362c38392c38302c37332c3233372c3139362c3137302c3233372c382c3131342c34392c3131342c3230302c3139322c3235332c36332c3233315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131392c332c38302c3234342c322c37342c32382c3234352c32302c39382c3132332c3234362c34342c3135332c36352c3134352c32352c3133352c38322c32342c36312c3132362c35302c3135382c3131342c31372c34372c3136302c3233392c3132322c33312c385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "48e8b106fd1f11413d1eb4ca927c3ce35f0e080c88b3ca72fe02c007923129e9": { - "hash": "48e8b106fd1f11413d1eb4ca927c3ce35f0e080c88b3ca72fe02c007923129e9", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1": { + "hash": "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1", + "previous_hash": "c61b0881d91dd098da5083d1e01746ba6a50e88880655bac4d76b6a4c3f052a1", + "epoch": 13, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "epoch": 20, + "MithrilStakeDistribution": 13 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 70, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2026-04-08T08:02:15.299963013Z", + "sealed_at": "2026-04-08T08:02:15.436195952Z", + "signers": [ + { + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "stake": 20000000001 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", + "current_epoch": "13" + } + }, + "signed_message": "7d158e373d6949206d83ee437ef4e07f70a76b1ceece550f227a2a4dd1e8ef85", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137342c31372c36382c3233332c3234332c38392c31352c3136372c3139332c37392c33372c34382c34392c34312c37362c32352c3139382c3235312c3138312c31382c37342c3231362c3137382c3131372c3132302c3232352c34352c35342c3130372c3132302c3235302c3134372c3133352c37372c36372c3235322c3132352c33392c35362c3131382c302c3233342c3139392c3130352c3131352c3136312c34342c3232395d2c22696e6465786573223a5b302c312c322c342c352c362c31302c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33372c33392c34312c34332c34342c34362c34382c35312c35352c35362c35372c35382c35392c36312c36322c36332c36342c36362c36372c37302c37312c37322c37332c37342c37352c37362c37392c38312c38342c38352c38362c38372c38382c38392c39302c39312c39322c39342c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c33312c35372c3136302c3136322c35332c3133392c3232302c3130322c3234392c3139302c39312c312c36392c31392c37332c38382c3130302c39382c3132342c34362c3231302c3231342c39392c3235332c3134312c3138322c3230382c372c3234342c34362c3134332c31342c3132302c38362c3230372c3230392c3234302c322c36302c3136352c3233312c3135322c31382c372c3136392c32332c31382c31342c3135332c3130302c3232322c37392c3134392c3230362c33352c3139382c35302c3235342c352c3135372c38372c37312c38362c3132352c3230302c3132362c35342c3234372c3136382c3232332c33352c32322c3134382c302c3133362c3130342c3133322c39382c3233332c3134362c32372c32342c3134352c31362c38372c3134312c36362c35342c3234342c33342c3135322c3233322c35322c3138342c34395d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34392c3131302c3130302c3233312c31352c3134362c3234332c3130332c35342c3235332c3231332c32332c322c3134372c3233352c32392c3131392c382c32372c3230312c31342c3139382c3234352c3134362c3133302c33392c372c35392c3235322c3134352c32342c3232325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "597c7a0a0d8cfb7b7d9314df15f7eb30411be17fa1efacf5f10730708bf780fe": { + "hash": "597c7a0a0d8cfb7b7d9314df15f7eb30411be17fa1efacf5f10730708bf780fe", + "previous_hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", + "epoch": 17, + "signed_entity_type": { + "CardanoDatabase": { + "epoch": 17, "immutable_file_number": 4 } }, @@ -571,38 +647,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:45.820203985Z", - "sealed_at": "2026-03-13T08:42:45.951669674Z", + "initiated_at": "2026-04-08T08:02:28.180312850Z", + "sealed_at": "2026-04-08T08:02:28.331395462Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "2408915ca6aff6294c72aee3ced0d2cbae8df0f799df5768194ca8a328ff6f5d", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20" + "current_epoch": "17", + "cardano_database_merkle_root": "6d9d93883126e62da2763756219dc3dd6ee0836a08ca09595f86e7b877870e88" } }, - "signed_message": "d18baf1a3d4510e83e2a156eff95573ab3853bd740ed47da1ac21529bfa01f72", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3234392c3234362c3130382c3133322c33392c3130392c3137322c3138302c3130322c3231322c3231382c3136352c38362c35352c36362c3232312c3132312c352c37352c3235322c3134342c32302c3136372c3235352c37322c352c3132312c3132372c3131372c36352c31382c3136312c3133322c3233372c38352c3233322c3231372c3139352c3132312c39342c38312c34342c3131382c3234332c3233332c3130362c3132305d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31302c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35392c36302c36332c36352c36362c36372c36392c37302c37312c37342c37362c37372c37382c37392c38302c38322c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134302c35352c3130352c34352c3135332c3233362c3134332c3132392c3233342c35322c3232392c3232362c3137352c37342c3131322c32392c3138322c34342c3132302c3131342c35382c32342c302c33332c3234302c3138372c31392c3232302c37332c3130392c33352c3231302c3230392c3234332c3235332c3232362c33342c3231312c3231392c342c36302c3130312c3230312c3233382c33342c39352c3138342c3230392c32332c39372c3230362c3234332c3231392c3130342c33392c3231342c34302c3132322c32302c38392c3234382c3136372c322c3133392c3132352c3139362c3234342c3230312c35302c34302c34322c39382c3138302c362c37332c32392c3135342c3131312c3132332c31332c3139392c36362c38392c392c34372c3132382c39382c3136322c3136302c3134322c32312c322c33342c3232352c3136332c3137335d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c3132342c3234322c3235322c3234352c3135342c36392c3231302c3133352c3234302c3134372c3138302c3233332c34392c3135382c3131302c35312c3138322c36382c3134332c39312c342c3233342c31302c3233392c34372c3136372c3134372c3234362c3137312c31352c3231325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "ff9a1ea95ad95b09533f44614339e2eb9dc394445a7600068a5a2fd8bcc77839", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134322c3235342c3136352c3133302c36392c3134392c3130302c3137362c3138322c3134392c3132342c3132382c3131302c3137322c34382c33352c3234382c33322c3130352c32352c35312c32342c3135392c38362c37302c38302c35352c3137312c31382c38362c3132392c3134352c3230382c39382c3231372c3232342c3234332c3134312c3230322c38352c3132382c35372c3130362c33392c3234322c3130322c3232392c36365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c32312c32332c32342c32352c32362c32382c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35312c35322c35332c35352c35362c35372c35382c35392c36302c36312c36322c36342c36352c36372c36382c36392c37322c37332c37342c37352c37362c37372c37382c38302c38332c38352c38362c38372c38382c39312c39332c39342c39352c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134372c3137302c3131372c38372c35372c3231332c3139332c3138392c3131332c3131352c34302c3235352c3230392c3232392c3132392c3130382c35382c3138342c32342c3231352c3134332c3139362c3230322c3132382c3232322c37322c3132352c3134322c3131322c38312c3139312c3230362c3135362c3133322c3136322c36352c3135362c39342c35332c32302c3136362c342c3134352c32322c3130332c3234362c37372c3231342c382c3234352c3136392c3230382c3138332c3235302c3135372c3136322c38392c35352c37372c3130312c3134372c3233302c38372c3135342c39342c3131372c3139372c3231332c3135302c3231332c3134312c33312c3232372c3139352c3230342c33352c3234302c3231392c3139332c3139392c35332c3232382c3137342c3233302c3230322c3233332c32372c38382c3231382c3235312c3133362c39372c35332c3132392c35352c3136385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3235342c37312c36352c39392c3136382c37342c3130312c3136302c31352c3139302c3138312c34352c3130302c37322c36342c32392c3134342c3232372c3136342c32392c37312c3138362c37342c3131352c3130372c3130342c31362c3137312c3134312c3139312c3132302c3134395d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31": { - "hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "previous_hash": "135c6de9fa65ffd328b00918df0b40b51df9a9f7394cdec81a9a2b7368bfe545", - "epoch": 19, + "59cf9a7f10a453df30892d3dc6a0173efc6846a5c1b8e5f9c5f20d39cb656269": { + "hash": "59cf9a7f10a453df30892d3dc6a0173efc6846a5c1b8e5f9c5f20d39cb656269", + "previous_hash": "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1", + "epoch": 13, "signed_entity_type": { - "MithrilStakeDistribution": 19 + "CardanoDatabase": { + "epoch": 13, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -612,37 +691,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:42.318822786Z", - "sealed_at": "2026-03-13T08:42:42.452013623Z", + "initiated_at": "2026-04-08T08:02:17.303350827Z", + "sealed_at": "2026-04-08T08:02:17.441929120Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "19" + "current_epoch": "13", + "cardano_database_merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6" } }, - "signed_message": "091aff38cba74a80fe09eb04f10c8e23ea6ea6ec0b87e567222c64a28eef11c6", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c3134302c34342c3133352c32322c3233352c3138322c3232372c362c3130382c33322c3231352c33332c35302c38322c32362c3131302c38302c32352c3134382c32392c3234332c3134392c372c31372c3233372c3135312c37392c372c3138382c32362c32362c3135392c3136372c3135322c3231372c3135362c32312c38342c33322c3131312c39382c3132352c3131332c3135372c3135372c33392c3134375d2c22696e6465786573223a5b302c352c392c32332c32372c33302c33342c33372c34322c35352c35362c35372c37362c38302c38342c38392c39362c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136392c3136302c3136322c3234392c36392c332c3139302c36332c3235352c3130382c31362c3134382c3231312c35302c32322c34382c3137322c3230342c35342c3133332c3132352c3132322c35362c32372c31372c3138312c3132362c38352c33362c3132302c3230392c3231322c36302c31312c3137342c3132352c35332c3230332c31392c3130382c3134312c3134392c3232392c3232362c3137382c3131342c3230362c3232362c302c3230322c3234392c3136392c3133322c3235302c35312c32302c35332c3231382c33392c32362c3231322c3231352c3138332c38342c3136382c3139342c3232332c3230352c3137312c35382c3138332c32342c3234382c3131302c3232362c3232362c3135362c3138352c39322c36312c3131332c37312c3230352c3130372c372c35322c3130372c3138332c3139392c32382c39352c3138392c3133392c3230342c3234392c37315d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3132382c3231352c3133382c3135382c3131302c3235332c3232352c3230362c3233312c39322c36372c3230322c362c37302c3231352c33312c37362c3230352c3138392c35342c3134322c3130302c3131332c35302c3130392c3137322c3137372c31362c3133302c32372c31392c3131322c39322c3136372c38342c3139302c3137312c3232362c34352c3231372c3135302c35392c352c35382c3233312c37352c3234372c3136335d2c22696e6465786573223a5b312c322c332c342c362c372c382c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32352c32362c32382c32392c33312c33322c33332c33352c33362c33382c33392c34302c34312c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35382c35392c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37322c37332c37342c37352c37372c37382c37392c38312c38322c38332c38352c38362c38372c38382c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137352c3231312c3135332c33352c3134382c34312c362c3132342c39372c3230302c362c3136382c3235342c3134302c38312c3136332c32382c3131372c34342c34362c332c3138342c3136302c34312c3134372c31322c39372c3230322c3136382c33342c3132392c3132302c3136352c34392c3231392c3133392c34392c33322c3136392c3131362c3135352c35352c35372c3136322c3134332c35312c37392c3138332c362c3230352c3235332c3235332c37302c38372c3233302c3136372c31352c38372c32302c3231322c3130322c32382c3231322c3233302c3130312c35322c3139342c3230362c3138332c34332c3132382c3135332c3230352c38392c3231342c37392c3136312c3131342c3233302c32352c34372c32332c3137342c3139322c3131362c3132372c3137362c3230362c3233352c3132302c3135372c33352c3134302c37392c3231322c3138325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "fa7311ab3ef7df1c3448c18478f8eeb03c1f4ce48c7dc7ec990f0e76b9c56bbb", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137302c3232312c3132392c3138302c3138342c3231302c3136302c3139342c34312c3139392c39322c39322c32382c36372c3138352c3130342c3130352c33302c3137352c35322c3130372c3133352c36332c35302c3233392c3232312c3138312c3139332c3135322c3232342c3233322c37302c3132352c3232382c3132352c36392c3131312c3133332c3131372c3138342c3137392c39382c33332c32302c3232382c34362c3230332c3233325d2c22696e6465786573223a5b302c332c342c352c362c372c31302c31312c31332c31352c31362c31372c31392c32302c32312c32332c32342c32352c32362c32382c32392c33302c33312c33332c33342c33352c34302c34312c34322c34332c34342c34352c34362c34372c35302c35312c35332c35352c35362c35372c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37362c37372c37382c37392c38302c38312c38322c38352c38362c38372c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3132392c39342c3234372c3138372c32392c3135392c3131332c392c33312c3234312c3134352c31302c3234332c3131322c3131362c3136302c34342c32312c3135392c3232312c3136352c35352c3130302c32322c332c3234362c37312c3131392c3136372c3234392c36372c38362c34392c3131332c37322c32312c3139312c352c39312c3230372c3132322c3130342c3232342c37362c3135382c3231382c31372c39332c31332c3131322c3138392c38342c34362c3138312c382c3130392c3231312c38382c3130302c3132302c3136372c3138392c35362c32372c3134362c35372c32392c3232352c3131372c35352c34352c36362c32382c3232372c3135332c3137312c3231352c38352c39332c3235312c3233372c3131302c3131392c32322c3139332c3231342c37312c3139322c32302c3130342c3138302c37382c3135332c34312c37322c36365d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233362c3132362c38302c3231312c3135322c35352c3230382c3230372c3135372c3135342c3136362c39352c3230332c34302c3232322c3135312c3136342c38312c34392c3232302c35362c38332c35362c37352c38342c3232362c38332c3139312c3134372c39322c38332c33365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52": { - "hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "previous_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "epoch": 20, + "5f4c3b3809098c2ddf6001b532b69ba1e38d077123f0b54f1b97175e472f4d0f": { + "hash": "5f4c3b3809098c2ddf6001b532b69ba1e38d077123f0b54f1b97175e472f4d0f", + "previous_hash": "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1", + "epoch": 13, "signed_entity_type": { - "MithrilStakeDistribution": 20 + "CardanoImmutableFilesFull": { + "epoch": 13, + "immutable_file_number": 2 + } }, "metadata": { "network": "devnet", @@ -652,41 +735,75 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:45.318704109Z", - "sealed_at": "2026-03-13T08:42:45.454622279Z", + "initiated_at": "2026-04-08T08:02:15.803911399Z", + "sealed_at": "2026-04-08T08:02:15.949806858Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "47acc0d10e6423607e20dd0e93f8d55d243a8d8fad680d47b5ef9135b6c7b0ef", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20" + "current_epoch": "13" } }, - "signed_message": "ea8ef5f3cf6bb2f47732e466d167384922bd47ee1c295ee9895e80e73b70147e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3233312c3235342c3130322c3232342c3132352c32382c34322c3131312c38342c3134312c38312c37302c3131392c3138382c3138312c3234332c39332c3230322c3132312c3231372c3232302c3230302c36302c3135342c32372c34382c3132382c3134332c3230312c3132352c32342c3139342c37352c3135372c3139322c3132392c3133352c3137312c37302c37302c3233332c38332c3136352c3133332c34342c37392c31355d2c22696e6465786573223a5b302c312c322c332c342c352c372c382c392c31302c31322c31332c31342c31352c31362c31372c31382c31392c32302c32322c32342c32362c32372c32382c33302c33312c33332c33342c33352c33362c33382c33392c34302c34312c34322c34332c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35382c35392c36322c36332c36342c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37372c37382c38302c38312c38322c38332c38342c38352c38362c38372c38382c39322c39332c39342c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137362c38352c3132332c37312c31392c32322c3139352c31382c3138302c3131332c33342c3230372c3133372c342c3230312c3230312c37332c3137332c35312c3134322c3139342c3233312c3234392c3135332c3134362c36382c34382c3132302c37342c39362c31372c39322c37382c36322c3133362c312c3230382c32342c3234382c38392c3137302c3139302c3139352c3130362c3232322c3132392c3233362c33362c352c3138362c3231332c3134352c3138322c3135332c31302c38392c34302c3232312c39392c32372c3137372c3137392c33312c3230382c3130392c3138332c38322c3230362c372c31362c3131362c3130322c38332c37332c3137302c32342c3135372c3131382c3231312c34382c3132382c3135322c34372c3137362c3230372c36322c37322c3136312c3235312c35352c33362c3233332c31392c3234352c32362c38345d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232392c3136322c3136342c3137372c3131372c3135332c36332c37372c342c372c32382c34352c3235352c312c3139302c36312c382c3131362c3130342c3232372c3230332c3134322c3231392c38322c3234302c34322c3233332c3136322c38392c32342c3132362c35385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "8a062d3f9cf7ec266e97d3ac46895695cb0d84e02ee7b964f18a9c1c97c0d917", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133302c362c3138372c3134342c3234392c3130302c3133382c3138332c3131382c3135362c36322c3233352c3138332c3137312c36312c33302c35382c3131372c3234312c32302c32302c3134302c32352c3135302c3134302c382c3136352c3133322c3139332c3231352c3234322c32332c3134372c3131332c37352c3230362c3137392c3133342c3135322c3234302c3134382c35322c35342c3132362c32302c33392c3133332c3235355d2c22696e6465786573223a5b302c312c322c332c352c362c372c392c31302c31312c31322c31332c31342c31362c31372c31392c32302c32312c32322c32332c32352c32372c32392c33302c33312c33332c33362c33372c33382c33392c34302c34322c34342c34352c34362c34382c35302c35312c35322c35332c35342c35352c35362c35372c35382c36302c36312c36322c36332c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37382c37392c38302c38312c38322c38332c38342c38362c38372c38382c39302c39322c39332c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3132392c39342c3234372c3138372c32392c3135392c3131332c392c33312c3234312c3134352c31302c3234332c3131322c3131362c3136302c34342c32312c3135392c3232312c3136352c35352c3130302c32322c332c3234362c37312c3131392c3136372c3234392c36372c38362c34392c3131332c37322c32312c3139312c352c39312c3230372c3132322c3130342c3232342c37362c3135382c3231382c31372c39332c31332c3131322c3138392c38342c34362c3138312c382c3130392c3231312c38382c3130302c3132302c3136372c3138392c35362c32372c3134362c35372c32392c3232352c3131372c35352c34352c36362c32382c3232372c3135332c3137312c3231352c38352c39332c3235312c3233372c3131302c3131392c32322c3139332c3231342c37312c3139322c32302c3130342c3138302c37382c3135332c34312c37322c36365d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233362c3132362c38302c3231312c3135322c35352c3230382c3230372c3135372c3135342c3136362c39352c3230332c34302c3232322c3135312c3136342c38312c34392c3232302c35362c38332c35362c37352c38342c3232362c38332c3139312c3134372c39322c38332c33365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "58da985b409687d0c0d42857423c28deda262df5a4e57259e46f4f06d3dcc5ba": { - "hash": "58da985b409687d0c0d42857423c28deda262df5a4e57259e46f4f06d3dcc5ba", - "previous_hash": "326c537f77f8e8c05c6cb6ed59b95570f3a13b975fb0911ce8cfcc84a1e6d18a", + "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3": { + "hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "previous_hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", "epoch": 15, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "epoch": 15, - "immutable_file_number": 3 + "MithrilStakeDistribution": 15 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 70, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2026-04-08T08:02:21.313828511Z", + "sealed_at": "2026-04-08T08:02:21.443335883Z", + "signers": [ + { + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "stake": 20000000001 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", + "current_epoch": "15" } }, + "signed_message": "faa721610b329b5c2168c9469093182e9408ea442297269649ed278df608427e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138322c3135352c3233332c38372c33302c35362c3231332c3130392c3139302c32372c312c35332c3233312c3136382c34352c3235332c3139332c3136372c31362c34342c39302c32312c32352c35382c3139342c33342c34382c3135312c32342c3230352c34302c39322c3132372c3234352c3234392c3134392c312c32352c3234322c3133342c3231322c34312c3233362c3134312c39312c3130392c3230332c3231365d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32352c32362c32372c32382c32392c33322c33332c33352c33362c33372c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36372c36392c37302c37312c37332c37342c37352c37362c37382c37392c38302c38312c38322c38332c38342c38352c38372c38392c39302c39312c39342c39352c39362c39382c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133312c35372c3134342c35382c31342c3232302c37322c3132332c33352c37382c3234302c38342c38392c3131362c3232312c35372c3230302c3234322c35332c31372c39302c3132332c3135372c3132302c3231362c3138392c3230382c3136312c39382c3232372c3139372c3231312c36322c3235342c3139332c33342c34352c36302c3139342c3230302c3135312c3131392c34392c3133392c37362c3230302c3133312c3135332c342c3135372c372c38322c3138362c32342c3133332c38382c3230392c38372c36342c31362c3138332c31302c38372c37322c322c3230352c3233342c3234312c37352c31362c3132342c3230332c33302c35352c37302c33372c34332c33362c3139342c33342c3234382c35392c3133302c3232392c33392c36312c3138332c3235332c3232342c39372c3232382c3132322c3135342c3230312c34302c3133345d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230302c3137302c36362c33372c3231342c35302c3231352c38352c34392c3137322c3232382c3134362c36302c3231382c3233332c3230312c3137302c34382c31392c34342c38352c3233372c382c35332c3232342c3132302c3230302c3131342c3233342c3131372c3131342c39355d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "7647ae201755589ca749765950d2d45dce03a1a40bc6fa9db0f429a43064ea3a": { + "hash": "7647ae201755589ca749765950d2d45dce03a1a40bc6fa9db0f429a43064ea3a", + "previous_hash": "0f8f818a070cd6034f334226472382e57700c261ac9208e4ee64f50d60638d33", + "epoch": 10, + "signed_entity_type": { + "CardanoStakeDistribution": 9 + }, "metadata": { "network": "devnet", "version": "0.1.0", @@ -695,41 +812,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:30.820056411Z", - "sealed_at": "2026-03-13T08:42:30.964932462Z", + "initiated_at": "2026-04-08T08:02:06.555176673Z", + "sealed_at": "2026-04-08T08:02:06.692247919Z", "signers": [ { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "2d66765048c5bae516d6ea1239827d92b0b4597dc5b9804b9a5a3cc66555b80f", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35392c3138392c3132322c352c3137332c36312c39302c3139362c3132372c35372c35312c3230372c3230362c3139322c33392c3230302c38332c3234332c3235312c3235302c3231372c37332c33322c3132322c3233312c332c3232322c3136332c3235322c3235302c32312c3130335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c36382c3139362c32372c3231342c3230352c31352c36332c3232342c33312c3139322c3232362c39382c32392c31322c3131342c3130362c31302c3135362c3233332c33352c3232362c39372c3131362c3230372c3134392c3234342c3133332c3133342c33382c3232352c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "15" + "current_epoch": "10", + "cardano_stake_distribution_epoch": "9", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "7f5a8ff7359d8935f7653ff8f58b32132944e56c54ec5cb7a8f6414590c59bfd", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234372c37362c3134322c35352c3136392c36302c3139302c35322c3131342c3130392c3139302c3135392c3131362c3233382c37352c3131342c3130392c3135382c3234312c3137382c3134342c39312c32322c3131332c3132372c35342c3233382c3130312c38342c34312c38302c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136352c3135322c382c33312c322c3136382c3234322c3232322c34352c3135382c3138312c35332c35322c38382c3131332c3139322c36382c3139372c3231382c3132392c3132312c37392c3232342c3230372c3135322c32322c36392c3139332c37382c3230342c3137342c3231332c3230382c39352c33332c342c34322c3230392c39312c39372c3132302c35332c36312c3134302c392c37362c3234352c3134385d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31332c31342c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32382c33302c33312c33332c33342c33352c33362c33372c33382c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35382c35392c36312c36332c36342c36352c36362c36382c36392c37302c37312c37322c37342c37352c37372c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136392c3139392c3133352c34362c3230302c3231392c39312c37302c3232312c34332c3130372c3230372c32312c36372c34382c3132312c3134382c3130332c3234372c36372c3130322c39372c32332c3139362c3232302c32322c37392c302c3135352c3136322c3132302c3138342c38302c3138322c33322c3131332c32392c3138382c3137322c33302c3234322c3136342c35302c3132362c3234332c3138362c38302c34382c392c34362c3232362c3133392c3139332c39332c39312c32372c3234372c33322c3131382c3232342c37392c34322c3137332c32382c3134342c3130322c3230332c3131392c3231372c3230372c3134322c3231302c39392c38342c3136302c3137312c3130392c3137392c3131302c3139342c38362c3137382c37352c3131382c32392c3230392c3133362c3138382c3133322c32312c3133322c3230302c35392c3132322c39332c3232385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b36382c3130392c3231392c3234352c302c3230382c36312c312c3134342c372c3230362c36342c3138352c37342c362c3231322c34332c3235342c34392c3230302c3139302c3230382c39302c372c32332c3233332c3235302c36342c3235352c3132382c3133392c3130325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "b67316a4d10512647fe6f435f0f70346da395707f56c2fdf3c11dfc018428c80", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33302c3234362c372c3136352c392c3234392c3133352c33392c3137332c32312c3133302c3138352c34362c33382c39322c3137372c3234352c3134312c3132342c3136392c3138382c3134362c3231362c3138382c3131302c3138352c3231382c3133372c3231332c3234332c3234372c3134375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c3135392c34342c3234382c3139352c34342c322c38372c32382c39332c3130372c32332c38322c34382c3234392c3233372c352c3133382c3131372c3232312c3133322c392c3137312c3235352c3234352c3136332c332c3234362c37332c33392c38302c3133312c38352c3138342c3139362c35322c3134342c33372c3131382c3234302c3232332c3134302c3136392c3137392c3133372c332c38382c31345d2c22696e6465786573223a5b302c332c342c352c372c382c31302c31312c31322c31332c31352c31362c31382c31392c32302c32322c32332c32342c32362c32382c33302c33312c33322c33332c33342c33352c33362c33372c33392c34302c34322c34332c34342c34352c34362c34372c34382c34392c35302c35322c35332c35342c35352c35362c35372c35392c36302c36312c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3134382c3234322c32352c32372c36362c3139322c3131332c3233322c3234352c3130332c34382c33302c3130392c36352c3135392c3132302c38342c3131372c3135332c35382c3132302c34372c3235322c36392c3139332c36372c37332c31312c3234352c35312c3232382c3138312c37382c3136342c3135362c3137302c3231392c3230332c3132382c3136392c36312c3234352c36352c3135392c38362c3234392c3137312c32362c31342c3134392c36302c3137322c33362c3133392c39342c32362c3233302c31392c3133362c3130362c3131352c36342c38352c31352c35312c3139372c38382c322c362c3136392c34382c362c3139332c3132302c3133392c34302c3230342c35322c3137392c31322c3231382c31372c31302c3131382c3136382c3137302c32382c3138382c3231302c3233382c3134302c3230352c38352c3130392c302c35325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33352c3231302c3233312c3134392c36362c3137332c39322c3137352c32312c302c3131322c3133372c34392c342c3131342c3131382c3135392c33342c3133392c32392c372c362c352c3131312c3234352c3130372c3132332c3139392c3234342c3137372c3233342c3130325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "70cfef9c00b300cf13dd2a1ae66c3568800403642551a250e9407f8a28edc0d4": { - "hash": "70cfef9c00b300cf13dd2a1ae66c3568800403642551a250e9407f8a28edc0d4", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "767f4dc796ac98eb14e4b319b6e53aadf9742e81a9a94b1d977c1e6b735cdc73": { + "hash": "767f4dc796ac98eb14e4b319b6e53aadf9742e81a9a94b1d977c1e6b735cdc73", + "previous_hash": "f6bbb0835db01516dc812c2509e1b41387b03df8faf5c8c570e602b18dc700c7", + "epoch": 9, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "epoch": 20, - "immutable_file_number": 5 - } + "MithrilStakeDistribution": 9 }, "metadata": { "network": "devnet", @@ -739,40 +854,75 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:46.070037598Z", - "sealed_at": "2026-03-13T08:42:46.202186486Z", + "initiated_at": "2026-04-08T08:02:03.300828836Z", + "sealed_at": "2026-04-08T08:02:03.439684571Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 - }, + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33302c3234362c372c3136352c392c3234392c3133352c33392c3137332c32312c3133302c3138352c34362c33382c39322c3137372c3234352c3134312c3132342c3136392c3138382c3134362c3231362c3138382c3131302c3138352c3231382c3133372c3231332c3234332c3234372c3134375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", + "current_epoch": "9" + } + }, + "signed_message": "ea3139dae6b4e156696b61fb1d187dcb5fd9c4d4d2476594277d46bce79ea21d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230302c3132302c3131352c3130392c34312c3139302c3133392c3232352c3232382c3139302c3139332c3131302c39372c3131382c3235332c3132302c3132322c3138362c3136302c33362c3230382c35382c3231392c3131382c37332c3132392c31302c32382c3139312c3137332c3232372c34325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3132332c3233332c31302c3232372c3133322c3137352c3130372c3135372c3233322c3131352c3134342c372c36382c33312c32342c3132392c32362c32362c3139372c3231342c3231352c3133372c3138372c38312c38332c38322c3136302c3137302c3134312c3232342c3133342c3235302c3131312c34392c39352c3138382c3137392c3132312c3233362c36372c39362c392c3231352c3232392c3134302c33322c3234325d2c22696e6465786573223a5b302c312c332c342c352c372c382c31302c31312c31322c31332c31342c31352c31362c31372c31392c32322c32332c32342c32352c32382c33312c33332c33352c33362c33382c33392c34312c34322c34332c34342c34352c34362c34392c35302c35322c35332c35352c35362c35372c35382c36302c36322c36332c36342c36352c36362c36372c36382c36392c37312c37322c37342c37382c37392c38312c38322c38332c38342c38352c38362c38382c38392c39312c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133372c33332c32322c3130302c37372c3130302c39352c3132302c37392c31392c3234382c3137392c3231332c3230382c3232322c38312c352c3135332c38392c3136362c36312c33352c3134312c32342c39352c3139322c3130352c3234372c3235302c3138312c37312c3233342c3132342c34382c3234362c3137392c3231362c38322c3233312c3230322c33362c32312c3134302c37302c3139332c33312c31332c34392c322c32392c33322c3130352c3139302c36382c3138362c38392c31302c3133352c34312c33372c36302c34322c34302c3234302c32342c3133372c39312c302c3132312c31352c352c3131352c36372c3234352c3139392c37372c39392c3232302c35362c3138302c3130302c3231382c39302c3138322c3234382c32342c39352c3134352c3131352c3131352c3230332c36382c32382c37352c37322c3137395d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134332c32302c32352c3135322c32352c3235302c3134342c3232392c35372c3233332c36352c32362c3235342c3135362c39342c3234342c39382c3230352c3135372c3234392c39342c3132392c3232342c32322c3234382c3138352c3132382c35332c36362c32332c3132312c3231315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "772c31b4ace2d8e0d459cc1c8f0597e6f08d995469ae4c3192e7731297b72fa4": { + "hash": "772c31b4ace2d8e0d459cc1c8f0597e6f08d995469ae4c3192e7731297b72fa4", + "previous_hash": "0f8f818a070cd6034f334226472382e57700c261ac9208e4ee64f50d60638d33", + "epoch": 10, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "epoch": 10, + "immutable_file_number": 2 + } + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 70, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2026-04-08T08:02:07.061259032Z", + "sealed_at": "2026-04-08T08:02:07.185109232Z", + "signers": [ { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "669fc81b08700272b49b9f2988999e56840ce0ce63640a6f7729616e0ed764de", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "61514916b89cea75bfe40da7984280cf93101e9cbf6d8418906d3a30101759b5", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c36382c3139362c32372c3231342c3230352c31352c36332c3232342c33312c3139322c3232362c39382c32392c31322c3131342c3130362c31302c3135362c3233332c33352c3232362c39372c3131362c3230372c3134392c3234342c3133332c3133342c33382c3232352c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20" + "current_epoch": "10" } }, - "signed_message": "59322f889df816e97c9d65b620a4f4b5ce0c1414024c6faf1160f9e68b2c4e0e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133352c38352c3135362c37352c3232342c3231362c39382c38302c3136372c3231362c3138332c36352c3134322c35372c3133312c3135332c37362c38382c3132352c39342c36362c35312c33382c3234332c39372c3235342c3133382c3134362c32312c3138392c35362c3231362c3233392c3136322c3130362c3136312c3139342c3137382c3232372c3235342c3136312c322c35322c3233372c3135352c31392c35372c3135395d2c22696e6465786573223a5b302c312c322c332c342c362c372c382c392c31302c31322c31332c31362c31372c31392c32302c32312c32322c32332c32342c32352c32372c32382c32392c33302c33332c33342c33352c33372c34302c34312c34322c34332c34362c34392c35312c35332c35342c35362c35372c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c36392c37302c37312c37332c37352c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137362c38352c3132332c37312c31392c32322c3139352c31382c3138302c3131332c33342c3230372c3133372c342c3230312c3230312c37332c3137332c35312c3134322c3139342c3233312c3234392c3135332c3134362c36382c34382c3132302c37342c39362c31372c39322c37382c36322c3133362c312c3230382c32342c3234382c38392c3137302c3139302c3139352c3130362c3232322c3132392c3233362c33362c352c3138362c3231332c3134352c3138322c3135332c31302c38392c34302c3232312c39392c32372c3137372c3137392c33312c3230382c3130392c3138332c38322c3230362c372c31362c3131362c3130322c38332c37332c3137302c32342c3135372c3131382c3231312c34382c3132382c3135322c34372c3137362c3230372c36322c37322c3136312c3235312c35352c33362c3233332c31392c3234352c32362c38345d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232392c3136322c3136342c3137372c3131372c3135332c36332c37372c342c372c32382c34352c3235352c312c3139302c36312c382c3131362c3130342c3232372c3230332c3134322c3231392c38322c3234302c34322c3233332c3136322c38392c32342c3132362c35385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "c3d02156a45815e973bb4c27db09ee1a06876ca39a350824c62f255530c365ef", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33302c3234362c372c3136352c392c3234392c3133352c33392c3137332c32312c3133302c3138352c34362c33382c39322c3137372c3234352c3134312c3132342c3136392c3138382c3134362c3231362c3138382c3131302c3138352c3231382c3133372c3231332c3234332c3234372c3134375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138352c3132302c3230352c37312c33342c3133302c3234352c3230362c38382c3132322c33372c3138302c3139352c3234362c36392c39312c3137332c3137362c3131352c34352c3134362c3139332c32302c31372c3233372c3234362c3132322c36362c38392c3138382c3130352c3233392c3133362c302c36352c3231342c3230312c3235332c302c3132342c39392c3232352c3231322c3135302c3230342c31312c36342c35395d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31322c31332c31342c31352c31362c31382c31392c32302c32312c32322c32342c32352c32362c32372c33302c33312c33322c33332c33342c33362c33382c33392c34302c34312c34322c34342c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37392c38302c38322c38332c38352c38372c38382c38392c39302c39312c39322c39332c39342c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134382c3234322c32352c32372c36362c3139322c3131332c3233322c3234352c3130332c34382c33302c3130392c36352c3135392c3132302c38342c3131372c3135332c35382c3132302c34372c3235322c36392c3139332c36372c37332c31312c3234352c35312c3232382c3138312c37382c3136342c3135362c3137302c3231392c3230332c3132382c3136392c36312c3234352c36352c3135392c38362c3234392c3137312c32362c31342c3134392c36302c3137322c33362c3133392c39342c32362c3233302c31392c3133362c3130362c3131352c36342c38352c31352c35312c3139372c38382c322c362c3136392c34382c362c3139332c3132302c3133392c34302c3230342c35322c3137392c31322c3231382c31372c31302c3131382c3136382c3137302c32382c3138382c3231302c3233382c3134302c3230352c38352c3130392c302c35325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33352c3231302c3233312c3134392c36362c3137332c39322c3137352c32312c302c3131322c3133372c34392c342c3131342c3131382c3135392c33342c3133392c32392c372c362c352c3131312c3234352c3130372c3132332c3139392c3234342c3137372c3233342c3130325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "76e327c7c3d155f90a46a5e754c7e55851ffd126d8125d745f65164635302015": { - "hash": "76e327c7c3d155f90a46a5e754c7e55851ffd126d8125d745f65164635302015", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1": { + "hash": "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { "CardanoTransactions": [ - 21, - 629 + 16, + 494 ] }, "metadata": { @@ -783,41 +933,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:49.386000365Z", - "sealed_at": "2026-03-13T08:42:49.451992193Z", + "initiated_at": "2026-04-08T08:02:25.843337934Z", + "sealed_at": "2026-04-08T08:02:25.936151098Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "latest_block_number": "629" + "current_epoch": "16", + "latest_block_number": "494" } }, - "signed_message": "b8e3d4cfce264a7815a16e05e3c8f046e6747d2c7c0a3fa906a7562ddb28333d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134362c3133322c3232312c362c38392c332c3132332c3132322c3135392c3231392c38332c3139362c3230312c3232302c3134372c35392c3138362c31342c37332c3235322c3232392c3232302c3138392c3133382c3138362c3139392c3130302c34372c3230342c3233302c382c3134322c35372c3133392c3137342c39302c3138332c3230372c3131332c3137392c33302c3130332c3234302c3233302c37302c3235342c3131342c32385d2c22696e6465786573223a5b302c322c332c342c352c362c382c392c31322c31332c31342c31352c31372c31382c31392c32302c32312c32322c32342c32352c32362c32372c32382c32392c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34332c34342c34352c34372c34382c34392c35322c35332c35342c35352c35372c35382c36302c36332c36342c36352c36372c36382c36392c37302c37312c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39322c39332c39342c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137342c34342c3138362c3232332c3135342c3139382c3230312c3234332c32372c39362c3132382c3235322c3230362c36312c3135392c36352c3130342c32322c3230342c34362c3132392c39362c3135332c3139352c3134342c3234382c3234382c3133362c3230362c312c3134362c32332c37352c3231332c39392c3130382c3133362c3139372c352c3133392c32302c3231392c3132332c3231332c3130362c3130312c3235302c3138312c32352c3130352c3232372c3233302c3138362c3138302c37392c3234362c3131332c3135302c36382c3130372c33332c31312c322c3230352c3132322c36322c35312c3137322c3131302c3137342c3230342c34392c3235342c3234382c3137322c36382c3134392c37332c31372c3230322c3136332c3132352c34372c38332c34372c3230392c35372c3135322c34312c3235322c3139392c34332c31362c3137392c3234362c39355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35332c38312c3137342c3136332c38312c3233312c33352c36332c3137372c33392c3139372c33362c3135312c3130342c39362c3132322c3137392c3131302c37372c3235342c38382c31352c3135342c39372c31322c3235332c33332c3132362c3234392c3138362c38322c3134305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "56413aecfcfc83d8ed2490400b572de3ed9f4a3238989b445552a4736327143b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134312c3133362c3138372c35332c36362c3233382c34332c3234302c3136342c3133342c3139372c362c32322c3137352c3132372c39342c3139352c3232372c38302c3136342c3133322c3234342c38322c32332c33372c36392c3134332c3231322c3130382c34362c3132312c3230312c3135362c32322c36312c3137352c392c39302c3131392c35302c332c3231342c3136322c3230302c3132362c3136362c3133392c36385d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c392c31302c31332c31342c31352c31362c31372c31382c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33332c33342c33352c33362c33372c33392c34302c34312c34332c34342c34352c34362c34372c34382c35302c35352c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37322c37332c37342c37352c37372c37392c38302c38322c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134312c3232302c3133372c362c3131362c3232322c38362c33342c38302c37372c3136392c3136352c37342c31382c32312c36332c32352c38342c34302c33362c3133342c3134342c342c37392c3232382c3133372c3130382c3136372c3138352c31342c3139312c3135382c3233392c3133372c3134322c39302c3230392c34382c35342c3138322c34392c3230332c3133302c3132342c3233332c3130342c3136382c32302c31362c34322c3137362c3231302c3136392c37382c3134352c3233372c32372c3130322c3230302c3230392c3133352c342c37302c3131312c3235302c3130312c3138322c32382c3133362c3135382c33372c33362c3132332c3133332c33312c3231362c31302c3233312c3234392c3233362c38392c38302c37332c3233372c3139362c3137302c3233372c382c3131342c34392c3131342c3230302c3139322c3235332c36332c3233315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131392c332c38302c3234342c322c37342c32382c3234352c32302c39382c3132332c3234362c34342c3135332c36352c3134352c32352c3133352c38322c32342c36312c3132362c35302c3135382c3131342c31372c34372c3136302c3233392c3132322c33312c385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "78df8fd62bd8a69f407f0105c1a6988c775eac75bb2680b710571faab3591b1c": { - "hash": "78df8fd62bd8a69f407f0105c1a6988c775eac75bb2680b710571faab3591b1c", - "previous_hash": "326c537f77f8e8c05c6cb6ed59b95570f3a13b975fb0911ce8cfcc84a1e6d18a", - "epoch": 15, + "809b365412e72a70f765eed7e7eccd008e419707bcd10fe2ecaeac731fe813c9": { + "hash": "809b365412e72a70f765eed7e7eccd008e419707bcd10fe2ecaeac731fe813c9", + "previous_hash": "767f4dc796ac98eb14e4b319b6e53aadf9742e81a9a94b1d977c1e6b735cdc73", + "epoch": 9, "signed_entity_type": { - "CardanoDatabase": { - "epoch": 15, - "immutable_file_number": 3 + "CardanoImmutableFilesFull": { + "epoch": 9, + "immutable_file_number": 1 } }, "metadata": { @@ -828,38 +978,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:31.069289077Z", - "sealed_at": "2026-03-13T08:42:31.202634115Z", + "initiated_at": "2026-04-08T08:02:03.803721365Z", + "sealed_at": "2026-04-08T08:02:03.949464173Z", "signers": [ { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35392c3138392c3132322c352c3137332c36312c39302c3139362c3132372c35372c35312c3230372c3230362c3139322c33392c3230302c38332c3234332c3235312c3235302c3231372c37332c33322c3132322c3233312c332c3232322c3136332c3235322c3235302c32312c3130335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "72f8d23cc53f9ed7a19e17bdb50ce66a2267e544dc37838dbcf8698790992538", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33302c3234362c372c3136352c392c3234392c3133352c33392c3137332c32312c3133302c3138352c34362c33382c39322c3137372c3234352c3134312c3132342c3136392c3138382c3134362c3231362c3138382c3131302c3138352c3231382c3133372c3231332c3234332c3234372c3134375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "15", - "cardano_database_merkle_root": "b4da4a96d6af28614a8347dbf8dff91488c1768f060023b07d823ab865fca999" + "current_epoch": "9" } }, - "signed_message": "73175ed374d351ed2a5a9cc050c07dbd28a0796fbadcbccc60b81071933ba651", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234372c37362c3134322c35352c3136392c36302c3139302c35322c3131342c3130392c3139302c3135392c3131362c3233382c37352c3131342c3130392c3135382c3234312c3137382c3134342c39312c32322c3131332c3132372c35342c3233382c3130312c38342c34312c38302c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3139312c3133382c3231362c3137392c3139322c3138312c3138322c3235322c32372c38332c3136362c3136392c3138362c3139382c3233302c37352c3133352c3232342c3133362c35312c36352c3234352c35362c3139372c3137382c34312c3230342c3137382c38322c3131322c3133312c3136332c3233312c3138362c39362c3134342c31352c39392c3135302c3135362c3234322c3135362c31312c3138342c3133302c3130352c3235355d2c22696e6465786573223a5b302c332c342c362c382c392c31302c31312c31322c31332c31342c31362c31372c31382c31392c32302c32332c32342c32352c32372c32382c33302c33312c33322c33332c33352c33362c33372c33382c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35322c35352c35362c35372c35382c36302c36312c36322c36342c36362c36382c36392c37312c37322c37332c37352c37362c37382c37392c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130325d2c227369676e65725f696e646578223a317d2c5b5b3138312c3231362c3235352c3234362c3132372c3234372c3234352c3138362c3131342c34352c34372c3133322c3136342c3132352c3132342c3230362c3134332c3131362c3233342c3136382c3137332c3134332c39332c32372c35392c39302c3230332c32362c32332c3135362c3133352c35352c3131302c38312c3139302c3232372c3132322c3138332c31372c34312c38342c3137372c3235322c3134372c3135302c32332c3131302c33332c31342c3137342c32352c3233382c37312c332c3233382c3137332c35392c3137332c3230322c32362c3138372c32392c3231392c3134362c3135332c3133392c37362c37322c3235342c3233312c38372c3232322c3130302c38332c3134352c3131332c3234322c382c3232332c35352c3231352c3132372c3137312c3136312c3138352c34312c3230342c3230382c3131302c3139332c39322c3233312c31302c3134342c37332c305d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b36312c3133382c3133392c3137342c3232322c3130382c35322c3135312c3235322c3232362c3137342c31312c3131342c3138302c3131302c3134362c3233312c3131362c35342c3132382c3130312c3233342c3133312c36352c3136352c3133352c38372c3230352c3231332c34372c3136302c3231305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "340c0a4867f460cb74a560ecf499a5c0c7ce429dcc2ffce3c71237247bab9ec9", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230302c3132302c3131352c3130392c34312c3139302c3133392c3232352c3232382c3139302c3139332c3131302c39372c3131382c3235332c3132302c3132322c3138362c3136302c33362c3230382c35382c3231392c3131382c37332c3132392c31302c32382c3139312c3137332c3232372c34325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136322c382c3230382c3234362c3138372c3132362c31342c3231372c38312c3234322c3134332c37352c37382c37322c3131342c39332c33342c3138382c39372c31372c32382c3137362c34312c3137382c3233362c3130332c3233392c3133342c32362c37342c322c3232302c3233342c382c3138372c39392c31372c3134342c32362c3234302c31392c3137392c3137352c34392c39322c3230382c32332c36335d2c22696e6465786573223a5b312c322c352c362c372c382c392c31322c31342c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c34302c34312c34322c34342c34352c34362c34372c34382c35302c35322c35332c35352c35362c35372c35382c36302c36312c36322c36332c36342c36372c37312c37322c37332c37342c37352c37362c37382c38302c38312c38322c38342c38352c38362c38372c38392c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133372c33332c32322c3130302c37372c3130302c39352c3132302c37392c31392c3234382c3137392c3231332c3230382c3232322c38312c352c3135332c38392c3136362c36312c33352c3134312c32342c39352c3139322c3130352c3234372c3235302c3138312c37312c3233342c3132342c34382c3234362c3137392c3231362c38322c3233312c3230322c33362c32312c3134302c37302c3139332c33312c31332c34392c322c32392c33322c3130352c3139302c36382c3138362c38392c31302c3133352c34312c33372c36302c34322c34302c3234302c32342c3133372c39312c302c3132312c31352c352c3131352c36372c3234352c3139392c37372c39392c3232302c35362c3138302c3130302c3231382c39302c3138322c3234382c32342c39352c3134352c3131352c3131352c3230332c36382c32382c37352c37322c3137395d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3137352c3130322c3131372c3234322c33322c3135302c3234362c3235322c31342c3137382c362c3133372c3135322c3135322c3231342c3233302c36372c3139382c3131312c3138312c34372c3134302c332c37312c3139312c3233352c3233382c3131352c3130382c3132332c3230372c3235322c3233342c35392c3132392c31362c32342c342c3231362c37332c37332c3132362c3232352c322c3131332c3230302c35312c3232355d2c22696e6465786573223a5b302c332c342c31302c31312c31352c32372c33392c34332c34392c35312c35342c35392c36352c36362c36382c37302c37372c37392c38332c38382c39332c3130335d2c227369676e65725f696e646578223a317d2c5b5b3134392c39352c3231332c3233372c3232352c34302c3234302c36392c31372c3133352c3131372c3133332c33312c3137362c3232332c3133342c3139372c32362c3132382c3132302c3132382c35342c34322c3135342c3232352c3234372c38302c3130302c36392c35392c392c38352c3133332c38312c3231302c31312c37392c3232332c3136342c33312c3139312c34312c3231322c32362c3138322c3136332c3230372c3138312c31352c3133312c3230312c39312c32312c3231332c3234392c3138392c3139362c3235312c3234382c3130302c3132332c3230382c32342c32302c35352c3130302c3135312c3234362c38352c3232302c3136342c33302c3136372c3231372c38322c3230392c3231352c3134342c3233332c3234392c3134342c3137342c31342c3135362c3134322c34312c39302c3132362c3230362c3133342c34312c3132382c3134362c32342c3232302c38375d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "7d8ad90cfa2289b90a4a153a6660bb77f08a1ae11297f4c1a8fe848674a47217": { - "hash": "7d8ad90cfa2289b90a4a153a6660bb77f08a1ae11297f4c1a8fe848674a47217", - "previous_hash": "1c4aa48489936100fb4decb172641cb28599792ffe78103917d3844c98866e8a", - "epoch": 17, + "82c790636808b41d3cfbcf7b34989a16c67caa20103a4fa86af976d2e8850e28": { + "hash": "82c790636808b41d3cfbcf7b34989a16c67caa20103a4fa86af976d2e8850e28", + "previous_hash": "767f4dc796ac98eb14e4b319b6e53aadf9742e81a9a94b1d977c1e6b735cdc73", + "epoch": 9, "signed_entity_type": { - "MithrilStakeDistribution": 17 + "CardanoStakeDistribution": 8 }, "metadata": { "network": "devnet", @@ -869,39 +1019,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:36.317551756Z", - "sealed_at": "2026-03-13T08:42:36.456730598Z", + "initiated_at": "2026-04-08T08:02:03.567086691Z", + "sealed_at": "2026-04-08T08:02:03.693003369Z", "signers": [ { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135302c36362c3232352c3133352c35352c3138342c3133332c37302c3139302c3232332c3132392c3235352c38392c3234382c3136312c32392c3130302c3233382c35392c38312c3138342c3234362c3130342c33332c33342c36342c3231372c3234332c3139362c32382c3231362c37335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33302c3234362c372c3136352c392c3234392c3133352c33392c3137332c32312c3133302c3138352c34362c33382c39322c3137372c3234352c3134312c3132342c3136392c3138382c3134362c3231362c3138382c3131302c3138352c3231382c3133372c3231332c3234332c3234372c3134375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "17" + "current_epoch": "9", + "cardano_stake_distribution_epoch": "8", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "9fe3493d74e7afd6d14c669837fa4ba81d0f273b67edd4560c7f8ad6b97aeb1e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3132302c3235312c3232302c3139392c3232352c3135332c35372c36322c3235312c32372c36392c3130332c36302c34362c3230372c33352c38372c3136372c3233312c36312c3231382c3139352c35322c3139392c39382c3130382c3233362c3233332c3130352c3138322c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137302c3132352c32392c3231372c35312c3135302c3134342c3233372c3233392c33382c3133372c31362c3133392c3133372c3136322c3132372c39362c39312c3139322c3139392c31312c3139312c38362c36352c31372c39332c3134372c3134382c35362c3230352c3232382c3133302c3234372c392c3136302c33382c38362c3232322c3137392c3139332c3131332c33352c3230302c3230362c3139342c3230302c3231352c3134305d2c22696e6465786573223a5b312c322c332c342c352c362c382c31312c31322c31332c31342c31352c31372c31382c32302c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33362c33372c33392c34302c34312c34322c34342c34352c34372c34382c34392c35302c35322c35332c35342c35352c35362c35382c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38332c38362c38372c38382c38392c39312c39332c39342c39352c39362c39372c39382c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138352c3132362c3137392c34322c39342c382c3231312c3230342c3230352c3134382c34322c39372c3135372c3235332c37332c38382c3232352c3234382c3138382c33302c3133332c39302c31352c3230392c3137342c38332c3134342c38352c3130322c32362c32322c3136352c31392c33372c32352c32342c3136302c3137342c3134302c32322c3139342c3230382c3134342c3131322c39392c35352c31362c342c32342c36382c34322c3139302c3134362c3139352c3133382c36372c39302c3137302c38372c32342c38332c34372c3234312c34312c39322c38392c3130352c3231322c3234352c3136332c3136332c32362c34312c39302c3234362c3139312c39302c32392c3134352c372c3230312c3231382c3134322c35382c33332c3232342c31342c3233332c3130382c3136332c3230392c31342c37362c31372c38362c3139385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233382c3133342c33322c33342c31392c31372c3132362c39352c302c372c38372c3137352c33362c3131372c3234332c3134342c3132332c38382c3233382c3230392c3135322c3134302c39382c3139312c3131352c35342c35312c37322c32392c3135392c35342c3138365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "6187ceb2c9cc423dd7047adb15fe74a755e1658763e53a6791b93146b42fee58", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230302c3132302c3131352c3130392c34312c3139302c3133392c3232352c3232382c3139302c3139332c3131302c39372c3131382c3235332c3132302c3132322c3138362c3136302c33362c3230382c35382c3231392c3131382c37332c3132392c31302c32382c3139312c3137332c3232372c34325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135332c32352c3130352c36302c34362c38332c38322c3130302c3137342c3136362c33382c3135332c3234392c3137302c36382c3132322c3130352c38372c32312c3134362c3139362c392c3231342c3130312c3132372c31352c3234362c3234352c3138322c3233342c3232302c3138322c3234382c3233362c3132312c3139312c3133382c37392c34322c34302c3133332c332c3232302c3235312c38382c3231362c3230352c3230305d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32302c32312c32332c32342c32352c32372c32382c32392c33302c33312c33322c33342c33352c33362c33382c33392c34302c34312c34332c34352c34362c34372c34382c34392c35302c35322c35332c35342c35352c35362c35372c36302c36312c36322c36332c36352c36362c36372c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134392c39352c3231332c3233372c3232352c34302c3234302c36392c31372c3133352c3131372c3133332c33312c3137362c3232332c3133342c3139372c32362c3132382c3132302c3132382c35342c34322c3135342c3232352c3234372c38302c3130302c36392c35392c392c38352c3133332c38312c3231302c31312c37392c3232332c3136342c33312c3139312c34312c3231322c32362c3138322c3136332c3230372c3138312c31352c3133312c3230312c39312c32312c3231332c3234392c3138392c3139362c3235312c3234382c3130302c3132332c3230382c32342c32302c35352c3130302c3135312c3234362c38352c3232302c3136342c33302c3136372c3231372c38322c3230392c3231352c3134342c3233332c3234392c3134342c3137342c31342c3135362c3134322c34312c39302c3132362c3230362c3133342c34312c3132382c3134362c32342c3232302c38375d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31302c3131362c3138332c3131342c37322c37332c3131362c32372c382c3132362c32372c3136392c3138302c322c36392c3136362c3131332c3130322c3235332c3136312c37382c3138392c3131332c3137332c3139342c3234392c33332c3132352c3133322c3131352c3233322c37345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "88fd9bd8db94b87b5c5cfa8da344346bc287d31fcea1cd4aafc0a7712727d097": { - "hash": "88fd9bd8db94b87b5c5cfa8da344346bc287d31fcea1cd4aafc0a7712727d097", - "previous_hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "epoch": 22, + "84409b810f03f820e3a2f1bbe66479aec09a8f7e1a8699a84d8c3d9936a5ae44": { + "hash": "84409b810f03f820e3a2f1bbe66479aec09a8f7e1a8699a84d8c3d9936a5ae44", + "previous_hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", + "epoch": 14, "signed_entity_type": { "CardanoImmutableFilesFull": { - "epoch": 22, - "immutable_file_number": 5 + "epoch": 14, + "immutable_file_number": 3 } }, "metadata": { @@ -912,38 +1064,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:51.818144001Z", - "sealed_at": "2026-03-13T08:42:51.954758805Z", + "initiated_at": "2026-04-08T08:02:18.800286446Z", + "sealed_at": "2026-04-08T08:02:18.954478416Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "b60fe8016bfbc78164183d4ea7e5b5de3daa504fbff969c579aceccfc19c9383", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c3135372c3232362c3234352c31332c3231352c37382c3230392c3136312c32302c32392c3139342c35372c3233382c36352c3132332c3234342c39302c3235312c3130382c32342c3131352c39332c372c3230352c34382c3133342c3137392c3234302c38322c33382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "2767ccc033f7625d0b531c943039b4a4adcaf80846dfc5b3c809d92f733864dc", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "22" + "current_epoch": "14" } }, - "signed_message": "8146d7dcd680dce29c32601759291c18a5353c9c9006a61583fba50e23e48359", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135332c3132342c3231322c372c38392c35382c39392c3232322c3138322c3235352c3130332c3233352c37302c3234342c3131322c32332c3137362c312c38382c39362c37322c3130302c3138372c38382c3131342c39352c33362c36302c3136342c3230332c36382c3230322c35362c3235342c3131392c3130342c3132392c33332c38342c38362c3137342c3135302c3132332c3130352c3135342c3235332c3136312c3130375d2c22696e6465786573223a5b302c312c322c332c342c352c382c392c31322c31332c31342c31352c31362c31372c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c35302c35322c35342c35352c35372c35382c36302c36322c36332c36342c36352c36362c36382c36392c37302c37312c37322c37332c37342c37362c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135332c3232332c3235352c3231382c36362c35312c3131362c39322c3139332c34372c3234322c3134372c36322c3135392c3235342c34352c34342c3232322c31332c37392c32372c3138322c32312c3133352c32312c3131352c3133352c312c352c3138382c3232392c38342c3135302c34342c3234362c3234382c3235312c3135372c3231322c38352c3136342c39312c3232382c36352c3233362c3231332c3130362c3133312c31342c36312c35302c37382c3232372c3134382c3232312c33302c3230342c3232362c3235322c37322c31392c39362c3230322c302c362c3134322c3139342c3138302c3233382c39382c39322c3131332c34352c3230352c372c3139312c3132392c3136352c3230392c37382c3134302c3234382c3134302c35342c32352c3132392c3132332c38302c34352c35302c3138322c37362c3135332c3234352c32342c34385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35302c3134372c3134362c3134382c3136302c3134322c35322c3134392c3234392c3234362c3136302c3139302c31352c34302c3136302c3134352c3139392c3233382c34312c3232382c3133392c32352c3234372c3135312c31372c36382c37362c3134322c39322c3131372c3136342c3134385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "e930091850f5b35336df8f735ac5bcf2079b291fe76d11a3f47b8eadf5b0679c", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c3231392c31312c3230382c3137322c3131332c3231342c3232372c3132362c3235322c38382c3235332c3132332c3234302c31362c3138312c36352c34362c32332c3232352c3230302c3130332c35372c3139372c3235332c37332c3137372c31372c33322c36362c3233302c3233332c3137312c3233362c3231352c3235332c3234302c3235302c3138302c3134392c3138332c33322c3136382c3233382c3231332c3235302c312c3231315d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31302c31332c31342c31352c31372c31392c32302c32322c32332c32342c32362c32372c32382c32392c33312c33322c33332c33342c33352c33372c33392c34302c34312c34332c34342c34352c34362c34372c34382c34392c35302c35322c35342c35352c35372c35382c35392c36312c36332c36342c36352c36362c36372c36382c37302c37312c37322c37332c37342c37352c37362c37372c38302c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3134302c3132362c3130382c36332c3231332c3230362c3231352c33342c31312c3233362c3134332c3138322c36322c35362c3230382c31312c3134362c33302c31312c3130392c3132312c34312c3230352c36382c39312c36302c3132362c3230302c33362c3134312c35392c3131312c3139342c3139352c33362c3139392c38342c3137322c36362c3232342c3230392c3134382c39342c3133312c38312c392c38382c3132302c31302c3131302c3131332c3132332c38372c3231332c3132342c3138372c3130372c3136362c39312c3136362c33322c34302c33352c3234382c36382c32382c3135382c32302c3134352c37372c37302c37392c3130322c35322c39332c37302c3136382c36392c3135342c38322c34312c36362c33352c38312c3233302c36312c3130382c3231382c34372c39312c3132312c3234392c3135362c31352c37342c38315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132332c39352c3232392c3130322c32372c3137362c38372c34312c33372c3133322c31332c3231332c33332c3130372c33382c3133392c3137302c3233362c3139372c3135362c3130312c3135332c38312c38302c3139312c32392c33372c36372c3132392c37372c3232302c31355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "91a5d05e42aa076b4868e4d1b94dde08ac1595c4b2cf7146ffb00e6c6a84f9a5": { - "hash": "91a5d05e42aa076b4868e4d1b94dde08ac1595c4b2cf7146ffb00e6c6a84f9a5", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "8743d92594f2d15fa4d79b73c12ea6c943957eb661ae45a31a25682ff7acca83": { + "hash": "8743d92594f2d15fa4d79b73c12ea6c943957eb661ae45a31a25682ff7acca83", + "previous_hash": "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1", + "epoch": 13, "signed_entity_type": { - "CardanoStakeDistribution": 20 + "CardanoStakeDistribution": 12 }, "metadata": { "network": "devnet", @@ -953,41 +1105,81 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:48.569109616Z", - "sealed_at": "2026-03-13T08:42:48.702523983Z", + "initiated_at": "2026-04-08T08:02:15.563223775Z", + "sealed_at": "2026-04-08T08:02:15.695256163Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21", - "cardano_stake_distribution_epoch": "20", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "13", + "cardano_stake_distribution_epoch": "12", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "75b0994dd8adc47586c6639ca656ad0b3b737323bb2b767a206915459fb24036", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136372c38382c34312c3133382c3130332c33312c3138342c3133312c3131312c31322c3133312c3139342c36302c3234382c3133362c3230372c3139362c33302c33362c3136352c3135322c3233342c3134312c362c3131392c36312c362c3134372c37332c3233382c3135392c3139372c3139332c3231352c39322c31362c33342c3232352c36372c3230382c3139372c372c3135382c302c38342c3132362c39312c3232315d2c22696e6465786573223a5b302c322c332c342c362c372c382c31302c31312c31322c31332c31362c31372c31382c32302c32312c32322c32332c32342c32352c32362c32372c32382c33312c33332c33342c33352c33362c33372c34312c34332c34342c34352c34362c34372c34392c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36382c36392c37302c37312c37322c37352c37362c37372c37382c37392c38302c38322c38332c38342c38352c38362c38372c38392c39302c39342c39362c39372c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137342c34342c3138362c3232332c3135342c3139382c3230312c3234332c32372c39362c3132382c3235322c3230362c36312c3135392c36352c3130342c32322c3230342c34362c3132392c39362c3135332c3139352c3134342c3234382c3234382c3133362c3230362c312c3134362c32332c37352c3231332c39392c3130382c3133362c3139372c352c3133392c32302c3231392c3132332c3231332c3130362c3130312c3235302c3138312c32352c3130352c3232372c3233302c3138362c3138302c37392c3234362c3131332c3135302c36382c3130372c33332c31312c322c3230352c3132322c36322c35312c3137322c3131302c3137342c3230342c34392c3235342c3234382c3137322c36382c3134392c37332c31372c3230322c3136332c3132352c34372c38332c34372c3230392c35372c3135322c34312c3235322c3139392c34332c31362c3137392c3234362c39355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35332c38312c3137342c3136332c38312c3233312c33352c36332c3137372c33392c3139372c33362c3135312c3130342c39362c3132322c3137392c3131302c37372c3235342c38382c31352c3135342c39372c31322c3235332c33332c3132362c3234392c3138362c38322c3134305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "0c0cdbafe5fa1a063ef974073a951b88942d1b233641b93e1a3981ba2ccfa230", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3132312c3230392c38302c3134352c3132342c3131382c33352c3130302c3135342c312c39332c3132362c36332c32332c3130382c3131332c39312c3131362c3136322c3139322c36382c32312c362c3133372c3132372c3231322c36392c302c3137382c34302c33372c3231362c3234332c3235302c34382c3135372c3234372c3137342c3133352c3135392c31362c38362c32362c3235312c3234312c36332c3130375d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c31302c31312c31322c31352c31362c31382c31392c32302c32312c32332c32342c32352c32362c32372c32382c32392c33332c33342c33372c33382c33392c34302c34312c34322c34332c34342c34352c34382c34392c35302c35322c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37332c37342c37352c37362c37372c37382c37392c38302c38322c38332c38362c38372c38392c39302c39312c39322c39332c39342c39352c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3132392c39342c3234372c3138372c32392c3135392c3131332c392c33312c3234312c3134352c31302c3234332c3131322c3131362c3136302c34342c32312c3135392c3232312c3136352c35352c3130302c32322c332c3234362c37312c3131392c3136372c3234392c36372c38362c34392c3131332c37322c32312c3139312c352c39312c3230372c3132322c3130342c3232342c37362c3135382c3231382c31372c39332c31332c3131322c3138392c38342c34362c3138312c382c3130392c3231312c38382c3130302c3132302c3136372c3138392c35362c32372c3134362c35372c32392c3232352c3131372c35352c34352c36362c32382c3232372c3135332c3137312c3231352c38352c39332c3235312c3233372c3131302c3131392c32322c3139332c3231342c37312c3139322c32302c3130342c3138302c37382c3135332c34312c37322c36365d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233362c3132362c38302c3231312c3135322c35352c3230382c3230372c3135372c3135342c3136362c39352c3230332c34302c3232322c3135312c3136342c38312c34392c3232302c35362c38332c35362c37352c38342c3232362c38332c3139312c3134372c39322c38332c33365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "94d24f5b7c3e0bbcb5fc8235a8db168b4a4aa3ee58fb8a0297166d864eb61e07": { - "hash": "94d24f5b7c3e0bbcb5fc8235a8db168b4a4aa3ee58fb8a0297166d864eb61e07", - "previous_hash": "135c6de9fa65ffd328b00918df0b40b51df9a9f7394cdec81a9a2b7368bfe545", - "epoch": 18, + "8b099770c556da485b1798e07af0722b2174e57aa8c668c276460a6c121d9317": { + "hash": "8b099770c556da485b1798e07af0722b2174e57aa8c668c276460a6c121d9317", + "previous_hash": "0f8f818a070cd6034f334226472382e57700c261ac9208e4ee64f50d60638d33", + "epoch": 11, + "signed_entity_type": { + "MithrilStakeDistribution": 11 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 70, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2026-04-08T08:02:09.299914328Z", + "sealed_at": "2026-04-08T08:02:09.438159830Z", + "signers": [ + { + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "stake": 20000000001 + }, + { + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "stake": 20000000001 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131362c34362c34352c3138362c322c3138332c3136302c36302c37372c3136332c39362c3133322c3139382c36312c3131392c3133302c39352c3136352c3235312c34342c3131302c3230382c3234302c34322c34342c3234312c3131372c39342c32362c34332c3232312c3133315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", + "current_epoch": "11" + } + }, + "signed_message": "a5d8d4d268d5aa9fc78bb4f8778e85e1c0ac110a0450e26d4902f3219fa36b31", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c36382c3139362c32372c3231342c3230352c31352c36332c3232342c33312c3139322c3232362c39382c32392c31322c3131342c3130362c31302c3135362c3233332c33352c3232362c39372c3131362c3230372c3134392c3234342c3133332c3133342c33382c3232352c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136382c34352c3234312c3235302c3234342c3233312c3233312c35352c35382c3232352c34322c37302c3231322c3130302c3133382c3133392c3233322c33312c39312c31392c3137342c3235312c31362c34332c38352c3137312c3234352c34322c3232322c39352c33312c3131392c37382c312c3234352c3234372c332c3232312c3234302c3134362c3139332c33322c3131362c3139302c3235342c3232302c3136322c36345d2c22696e6465786573223a5b302c322c332c342c352c362c372c382c31302c31312c31332c31342c31352c31372c31392c32302c32312c32322c32332c32342c32362c32372c32382c33302c33312c33322c33342c33382c34302c34312c34332c34342c34352c34362c34372c34382c35322c35332c35352c35362c35372c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37372c37392c38302c38312c38322c38352c38362c38372c38382c38392c39302c39312c39322c39332c39362c39372c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3132392c39372c382c3233302c3130372c3234322c3134302c3230302c34322c3136372c3138362c3134312c3230372c3133382c3137362c3136372c37302c34332c34392c3135392c35352c3231322c3133342c3232382c35382c3233382c32392c37352c32362c3134332c3131392c3137302c3135352c3135392c3131392c3134342c36302c3136392c34332c3138342c35352c3230382c3233392c3135312c33312c3231312c3133382c3139382c342c3135332c312c36342c3135312c3233362c34382c34342c3132372c3130322c31312c3233302c3234352c32322c3138322c38392c3232392c3132352c3130322c3134362c3131382c3139382c32362c37382c31322c31332c36392c35332c3139312c33392c3234342c3233312c35342c3131352c3132392c3139322c37332c3232392c312c31372c3132342c3132372c31372c312c322c36362c3233342c3139325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234312c3131392c3232392c3135362c31352c3136352c36322c39362c31362c3130332c3131352c3133332c38372c302c3132392c35342c39312c312c3136302c39342c3134392c3137322c3136372c37362c3138352c3134322c3139352c3132372c3139322c32312c37372c3232345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "8c3fa708dabffb295a45cde300ac44d336163789fb9b5f2b461ff3693ceaee2e": { + "hash": "8c3fa708dabffb295a45cde300ac44d336163789fb9b5f2b461ff3693ceaee2e", + "previous_hash": "8b099770c556da485b1798e07af0722b2174e57aa8c668c276460a6c121d9317", + "epoch": 11, "signed_entity_type": { "CardanoImmutableFilesFull": { - "epoch": 18, - "immutable_file_number": 4 + "epoch": 11, + "immutable_file_number": 2 } }, "metadata": { @@ -998,42 +1190,84 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:39.820855714Z", - "sealed_at": "2026-03-13T08:42:39.953620875Z", + "initiated_at": "2026-04-08T08:02:09.804304520Z", + "sealed_at": "2026-04-08T08:02:09.952166397Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "5595c7ddbed6ee910a6372125c6695f62cfb8b699b9542ab9fb2b418e2fa99ff", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "071b6066fe150a637fc1d19822582990f2c7ec47e8199c3143a0b15e83b2dfa9", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131362c34362c34352c3138362c322c3138332c3136302c36302c37372c3136332c39362c3133322c3139382c36312c3131392c3133302c39352c3136352c3235312c34342c3131302c3230382c3234302c34322c34342c3234312c3131372c39342c32362c34332c3232312c3133315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "18" + "current_epoch": "11" } }, - "signed_message": "fa663e2384538ca075252924c9ca2d8f4868d8c9ebfa2b9b782d2c30ea6fc162", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135302c36362c3232352c3133352c35352c3138342c3133332c37302c3139302c3232332c3132392c3235352c38392c3234382c3136312c32392c3130302c3233382c35392c38312c3138342c3234362c3130342c33332c33342c36342c3231372c3234332c3139362c32382c3231362c37335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136332c3130322c38392c3232302c3130312c332c34312c372c3232322c35392c34392c3138372c3130372c3134372c3134352c3134312c3137392c37372c3231362c33352c38382c3232302c3130362c3131312c3234332c32382c3230352c3130322c37312c31352c3135332c36352c3235312c3132312c3234312c32332c3131352c35322c34332c3136312c37332c37372c34322c3130392c3233352c3137382c38372c365d2c22696e6465786573223a5b302c322c332c342c352c362c392c31322c31332c31342c31352c31362c31372c31392c32312c32332c32342c32352c32362c32382c33302c33322c33332c33362c33372c33382c33392c34302c34312c34322c34342c34372c34382c34392c35302c35312c35332c35342c35352c35382c35392c36302c36312c36332c36342c36352c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37372c37382c37392c38302c38312c38332c38342c38352c38372c38382c38392c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130312c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137392c3230392c3136392c3138302c3232372c3137362c3138312c3138322c32302c3137392c38312c34372c3136322c3234392c32342c3135392c3138392c3232322c34342c31332c39362c3133312c3233312c3133342c3232342c3136342c3135302c3232342c3230372c3233342c3233362c3130352c3232322c3137392c3231342c3132302c3134352c3234372c3232382c32392c382c3137382c3230362c33372c3131342c3235352c3131322c39362c31332c3132322c3138392c3134302c32332c3139332c39322c3230322c3134392c38322c3138382c35322c3234392c32312c39362c35322c3231302c3134382c3234382c3134302c3132352c34352c3137352c3139382c3136372c34302c39322c3231352c3132322c302c3133382c34382c31372c3136342c3230302c3134372c33362c3231342c3136342c32332c3233322c3131392c3132362c3231322c3137372c3234302c3235322c31355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32372c3137372c31372c39332c3233352c3134392c3232392c36382c3135392c34352c39352c34332c362c35372c3233382c3136302c3231322c31372c35372c322c3134372c3139332c3134372c39392c3136352c3137312c3134342c3139332c38302c3232382c3232322c3131345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "e5b0cf1eff24161643f8095da7638ffe990f370d547c88d1f9d9636686a71db9", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c36382c3139362c32372c3231342c3230352c31352c36332c3232342c33312c3139322c3232362c39382c32392c31322c3131342c3130362c31302c3135362c3233332c33352c3232362c39372c3131362c3230372c3134392c3234342c3133332c3133342c33382c3232352c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133302c32342c3232362c3139372c3133302c3231342c3233302c36392c3136392c3130352c3232352c33312c36332c3134332c31312c3130322c3132382c3230372c35392c3232302c3135362c3135352c31312c3139392c36302c36332c3137322c3230342c3233332c39312c3132372c33322c3231332c36342c33362c3234382c382c31352c33352c31342c3133342c36362c3130392c3138342c38352c38372c3232362c31365d2c22696e6465786573223a5b302c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c32302c32312c32322c32332c32342c32352c32372c32382c33312c33352c33362c33392c34302c34312c34332c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37322c37332c37342c37352c37362c37372c37392c38312c38332c38342c38362c38382c38392c39302c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134312c3232342c36332c3231322c3130382c38352c3134362c3230302c31312c3138342c32382c35372c3133362c3232362c3133372c3232312c3235352c3131302c3132382c3134302c3136392c3134342c33342c33372c3233382c3230382c32332c3235302c38392c31382c3131382c38332c3230322c3130322c3132332c3132362c3138362c3137332c33342c3136322c3234332c35312c31322c3139382c3134352c3232352c3130322c3234302c31332c3139342c3139342c3233342c3133332c34362c33312c32312c3131342c3138392c3231372c3139372c3135312c38372c3234382c3131392c3130362c352c37312c3234332c3139342c33352c34382c3130322c3132352c37392c3135302c35382c3233322c3132372c3230302c3132312c34372c38362c3233302c3137332c3133302c35382c36302c382c3232322c32372c36322c3233312c3131392c3233332c34322c3136365d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231322c3233302c3134332c3133362c3135362c3233342c3234322c38362c3139372c3234332c3138382c36322c3139372c3234322c32322c32332c3134382c3231332c3139372c3137342c302c3132332c32362c3134392c3235312c3133342c3233382c32342c33372c34322c3234302c39325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "9533e119987c792a522e1958b3edb690d761ca8d838d0408f7079910451c2f57": { - "hash": "9533e119987c792a522e1958b3edb690d761ca8d838d0408f7079910451c2f57", - "previous_hash": "1c4aa48489936100fb4decb172641cb28599792ffe78103917d3844c98866e8a", - "epoch": 16, + "915a2494918a9875f0e973d55bf8ceaffd2ccc20414188380a62e1bfaddacd0a": { + "hash": "915a2494918a9875f0e973d55bf8ceaffd2ccc20414188380a62e1bfaddacd0a", + "previous_hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", + "epoch": 17, "signed_entity_type": { - "CardanoDatabase": { - "epoch": 16, - "immutable_file_number": 3 + "CardanoTransactions": [ + 17, + 509 + ] + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 70, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2026-04-08T08:02:28.478369274Z", + "sealed_at": "2026-04-08T08:02:28.578050068Z", + "signers": [ + { + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "stake": 20000000001 + }, + { + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "stake": 20000000001 + } + ] + }, + "protocol_message": { + "message_parts": { + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", + "current_epoch": "17", + "latest_block_number": "509" } }, + "signed_message": "c1c158542cef77111f99f9e28cd0ace06b9c1eaedc343086806d58dae844c7a4", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134332c32392c35342c3230342c3131352c3234392c3131302c3130392c3137372c31362c3134392c35372c36362c3133342c3231382c322c3232312c34382c3133332c3232362c3231342c3136362c3131312c3231312c3131372c3132302c3232372c3232362c3232312c3137302c3130332c38342c3137362c31382c32392c362c3133392c3234342c32372c312c36322c33302c3135362c3232352c33322c3132302c3137302c39375d2c22696e6465786573223a5b302c312c322c352c372c382c392c31302c31322c31332c31352c31362c31372c31382c32312c32322c32332c32342c32352c32362c32382c32392c33312c33332c33342c33352c33362c33372c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35342c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36372c36392c37302c37322c37332c37342c37352c37382c38322c38332c38352c38362c38372c38382c38392c39302c39312c39332c39342c39352c39362c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134372c3137302c3131372c38372c35372c3231332c3139332c3138392c3131332c3131352c34302c3235352c3230392c3232392c3132392c3130382c35382c3138342c32342c3231352c3134332c3139362c3230322c3132382c3232322c37322c3132352c3134322c3131322c38312c3139312c3230362c3135362c3133322c3136322c36352c3135362c39342c35332c32302c3136362c342c3134352c32322c3130332c3234362c37372c3231342c382c3234352c3136392c3230382c3138332c3235302c3135372c3136322c38392c35352c37372c3130312c3134372c3233302c38372c3135342c39342c3131372c3139372c3231332c3135302c3231332c3134312c33312c3232372c3139352c3230342c33352c3234302c3231392c3139332c3139392c35332c3232382c3137342c3233302c3230322c3233332c32372c38382c3231382c3235312c3133362c39372c35332c3132392c35352c3136385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3235342c37312c36352c39392c3136382c37342c3130312c3136302c31352c3139302c3138312c34352c3130302c37322c36342c32392c3134342c3232372c3136342c32392c37312c3138362c37342c3131352c3130372c3130342c31362c3137312c3134312c3139312c3132302c3134395d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273": { + "hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 17, + "signed_entity_type": { + "MithrilStakeDistribution": 17 + }, "metadata": { "network": "devnet", "version": "0.1.0", @@ -1042,40 +1276,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:34.068586986Z", - "sealed_at": "2026-03-13T08:42:34.203067656Z", + "initiated_at": "2026-04-08T08:02:27.325491740Z", + "sealed_at": "2026-04-08T08:02:27.579164548Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3132302c3235312c3232302c3139392c3232352c3135332c35372c36322c3235312c32372c36392c3130332c36302c34362c3230372c33352c38372c3136372c3233312c36312c3231382c3139352c35322c3139392c39382c3130382c3233362c3233332c3130352c3138322c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "16", - "cardano_database_merkle_root": "b4da4a96d6af28614a8347dbf8dff91488c1768f060023b07d823ab865fca999" + "current_epoch": "17" } }, - "signed_message": "583012305e4bdbd083714e9ff87a477304428befd660c85df819749fc781b446", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35392c3138392c3132322c352c3137332c36312c39302c3139362c3132372c35372c35312c3230372c3230362c3139322c33392c3230302c38332c3234332c3235312c3235302c3231372c37332c33322c3132322c3233312c332c3232322c3136332c3235322c3235302c32312c3130335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133342c34322c32372c3130342c3130332c3136322c38312c39372c35362c3235302c38322c35362c3233322c37312c38392c3139372c3132302c3233382c37352c3137312c3132322c3139382c37322c3234332c31312c36322c3134352c3131312c3134362c36382c36352c3136372c3133342c3230342c3138372c3135322c3131352c34382c3131332c3234372c3134322c3135302c35352c37342c33322c31322c3133302c3133335d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c392c31302c31312c31332c31342c31352c31382c32302c32312c32332c32352c32372c32392c33302c33312c33322c33342c33362c33372c33382c33392c34302c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36352c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38372c38382c39302c39322c39332c39342c39352c39362c39372c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3132382c3232332c3131312c3135392c3138392c3138362c39312c36312c3134322c3130362c33392c372c3139332c3136342c36382c382c3132382c34352c33342c302c3136382c3133362c35352c37372c3134312c36362c3230302c36372c392c3136362c3138392c35392c3230312c382c32362c3139302c34382c33382c3235332c3138392c3138372c3230362c3231332c34352c3232362c3135372c38312c3130362c31312c3230352c3131372c31352c3232302c39342c3230392c3139312c38332c3230322c31372c39392c3234342c3139302c3138322c3130372c3135342c35332c31342c3232372c39302c3234382c36312c3231372c37352c3132342c3233322c3131332c3131342c31372c34372c3235332c3138372c37372c34352c3230312c3231362c31392c3134332c36302c3133362c32322c3135382c33302c32372c31332c35302c34315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230372c33372c32382c36372c36322c3235342c3131372c3234382c3132322c33302c3232302c31312c382c31332c3235302c3131392c32332c37382c32312c3137352c33372c3137322c35322c3139382c3131312c3136392c37342c3134352c35372c3232362c3138342c3132365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "45798119106e8eb884db02764595d0630a9a66621ea46c983e4d785d192ea782", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c32382c3233372c342c37332c3133302c3231362c3231342c3231342c3136342c3138352c3234362c3131352c36342c3136342c36302c38362c3139392c3131352c3230382c3131302c3234382c3138352c3232302c3134302c3130362c3231392c362c35312c33312c3136312c3230352c36352c3233352c3138372c31322c3137352c34322c3235342c3136362c3231352c3137322c3131342c35302c3232342c31372c32362c325d2c22696e6465786573223a5b302c312c342c362c372c382c392c31302c31322c31332c31342c31352c31362c31392c32302c32312c32322c32352c32362c32372c32382c32392c33302c33312c33322c33342c33362c33372c33382c33392c34302c34312c34332c34342c34352c34362c34372c35302c35312c35322c35342c35362c35372c35392c36302c36312c36322c36332c36342c36352c36372c36382c36392c37302c37322c37362c37372c37382c37392c38302c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133382c3230322c3233302c332c3136362c36382c3138332c3232302c32302c382c3230352c3130362c3233322c3232382c3234302c3130382c38302c3131342c38342c3135342c35342c3233322c39342c3137302c38372c3132302c3138312c39392c3131342c3139372c3133342c34322c36392c36342c3137362c3134392c3230322c3138302c37332c3135332c38382c3135392c3137342c35302c3137362c3135372c36362c3139362c322c3131342c35352c3232362c35372c31372c39352c3232302c32322c35322c3233322c33392c3230302c3230392c3130302c3234342c3131332c37342c37352c3139302c3133312c3135382c3130392c352c3137312c392c3135382c3232332c3133372c35342c38332c3138342c3234342c3234362c37392c3136312c3133342c3230372c35302c35322c3235302c3131332c3138362c3138322c3230352c382c3234352c36305d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132302c3131302c34382c3133312c3230332c3234312c3233342c312c35352c3139392c31342c31312c31302c38392c3233362c342c32382c3138382c35322c33302c3139372c3235312c32312c3135312c3134322c3134312c3136382c3138392c3233322c3136352c39392c3138395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "97c07626c103e427099969cfc6b31e989e51e9789cab4d94b7f8859a707ffeb0": { - "hash": "97c07626c103e427099969cfc6b31e989e51e9789cab4d94b7f8859a707ffeb0", - "previous_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "epoch": 21, + "af506818c7a9806c527dcc7d97a95f3719254d8cf33938213b70ef8c26c5f212": { + "hash": "af506818c7a9806c527dcc7d97a95f3719254d8cf33938213b70ef8c26c5f212", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { "CardanoImmutableFilesFull": { - "epoch": 21, - "immutable_file_number": 5 + "epoch": 15, + "immutable_file_number": 3 } }, "metadata": { @@ -1086,38 +1319,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:48.819762961Z", - "sealed_at": "2026-03-13T08:42:48.952227097Z", + "initiated_at": "2026-04-08T08:02:21.806377100Z", + "sealed_at": "2026-04-08T08:02:21.950363617Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "d4ef84853eb11b5ca409b0c75a2a5e3c5affe6fbe18a20fc9c15340671fa7745", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "0a74b1872774e7fe4d404b94cb554a88359e554ba232939b1c3323db1c2c0e43", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21" + "current_epoch": "15" } }, - "signed_message": "dca4a94fa2968c62296be8a2a712f5ba4e7becf38f8e3322646a48a3ab6931d5", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c332c3234382c3139342c3234312c3233372c38362c3139322c32302c3235352c38382c3130392c3138322c3131352c3134302c3137312c3232342c3137352c35382c3139352c3139392c32302c38332c35382c3134302c39382c32352c3132312c3130362c3232392c382c32382c3137322c3133302c3137322c3231362c31382c3139312c35332c3135322c31322c3131382c3234382c32352c3134362c32362c3133382c3130335d2c22696e6465786573223a5b312c322c352c362c372c382c392c31302c31322c31332c31342c31352c31362c31372c32302c32322c32332c32342c32362c32372c32382c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34332c34342c34372c35302c35312c35322c35332c35342c35362c35392c36302c36312c36322c36342c36352c36372c36382c36392c37302c37322c37352c37362c37372c37382c37392c38302c38312c38332c38342c38352c38362c38372c38382c39302c39332c39342c39362c39372c39382c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137342c34342c3138362c3232332c3135342c3139382c3230312c3234332c32372c39362c3132382c3235322c3230362c36312c3135392c36352c3130342c32322c3230342c34362c3132392c39362c3135332c3139352c3134342c3234382c3234382c3133362c3230362c312c3134362c32332c37352c3231332c39392c3130382c3133362c3139372c352c3133392c32302c3231392c3132332c3231332c3130362c3130312c3235302c3138312c32352c3130352c3232372c3233302c3138362c3138302c37392c3234362c3131332c3135302c36382c3130372c33332c31312c322c3230352c3132322c36322c35312c3137322c3131302c3137342c3230342c34392c3235342c3234382c3137322c36382c3134392c37332c31372c3230322c3136332c3132352c34372c38332c34372c3230392c35372c3135322c34312c3235322c3139392c34332c31362c3137392c3234362c39355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35332c38312c3137342c3136332c38312c3233312c33352c36332c3137372c33392c3139372c33362c3135312c3130342c39362c3132322c3137392c3131302c37372c3235342c38382c31352c3135342c39372c31322c3235332c33332c3132362c3234392c3138362c38322c3134305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "2e4979761a7444d9544d680fa8454582a221c9fe91283e9e1c02c3ecc01fb245", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134352c34342c3132332c3234342c39382c3230392c36302c3234372c3136352c37322c3132302c32352c34362c3133342c3233362c33362c3134362c3234392c3235332c3133302c3131382c3234302c3230332c3138372c34352c3234312c32322c37352c3130302c3233362c33382c36322c3234332c3136332c32392c3130392c3231362c3135382c37392c3135372c33342c3132382c3232312c39352c3233372c3131322c3230382c36395d2c22696e6465786573223a5b322c332c342c362c372c382c392c31302c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c33302c33312c33332c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34382c34392c35302c35322c35352c35362c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37332c37362c37372c37392c38302c38312c38332c38342c38352c38362c38382c38392c39322c39332c39342c39352c39362c39382c39392c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133312c35372c3134342c35382c31342c3232302c37322c3132332c33352c37382c3234302c38342c38392c3131362c3232312c35372c3230302c3234322c35332c31372c39302c3132332c3135372c3132302c3231362c3138392c3230382c3136312c39382c3232372c3139372c3231312c36322c3235342c3139332c33342c34352c36302c3139342c3230302c3135312c3131392c34392c3133392c37362c3230302c3133312c3135332c342c3135372c372c38322c3138362c32342c3133332c38382c3230392c38372c36342c31362c3138332c31302c38372c37322c322c3230352c3233342c3234312c37352c31362c3132342c3230332c33302c35352c37302c33372c34332c33362c3139342c33342c3234382c35392c3133302c3232392c33392c36312c3138332c3235332c3232342c39372c3232382c3132322c3135342c3230312c34302c3133345d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3134362c31302c3232372c382c3137362c35372c38312c3230362c362c35352c35372c39392c3139352c35312c3136332c3139302c3135372c3137362c32332c3230312c3133392c37382c3231382c3234372c31392c3230322c32392c3235322c372c3135362c3130342c3134342c3137322c34352c39362c31382c37392c3131382c34332c33342c3233372c32352c3135362c3136362c3136372c3138352c3135322c37305d2c22696e6465786573223a5b302c312c352c31312c32342c32392c33322c33342c33362c34372c35312c35332c35342c37322c37342c37352c37382c38322c38372c39372c3130302c3130325d2c227369676e65725f696e646578223a317d2c5b5b3136372c3131302c33392c3133332c33352c38302c31302c3232392c392c3132312c39392c3235352c34382c3232332c3131342c3234362c342c36302c3139362c3132362c3135342c3233372c35302c3135312c3133382c3130362c36332c3234322c382c3132302c3233342c35362c3130312c33322c36342c3137302c39312c3232372c32382c3137322c3136362c3131332c38312c3139372c31342c3231312c36302c3232362c352c3232342c3235342c3130322c35332c39392c3133372c3233392c3231392c31352c3231392c32382c3139332c3135362c3235342c3233332c3233382c3234322c3135382c3135302c3133332c3131352c34302c3136302c3139352c3133352c3134372c3137392c3135302c33342c3232322c36302c35372c3233342c3134302c3138322c3234362c32332c37342c32332c3135342c3137382c3133372c3130332c3137322c3139302c3139382c31385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "9a90d43c206ddc973a87c96b89fa8680d2ed63134b9a81bfe050e9a963ce08f4": { - "hash": "9a90d43c206ddc973a87c96b89fa8680d2ed63134b9a81bfe050e9a963ce08f4", - "previous_hash": "", - "epoch": 14, + "bb3b5a1929b1c3eae110e9d134c3444260110302b5635fbb23430935d71cfba2": { + "hash": "bb3b5a1929b1c3eae110e9d134c3444260110302b5635fbb23430935d71cfba2", + "previous_hash": "c61b0881d91dd098da5083d1e01746ba6a50e88880655bac4d76b6a4c3f052a1", + "epoch": 12, "signed_entity_type": { - "MithrilStakeDistribution": 14 + "CardanoStakeDistribution": 11 }, "metadata": { "network": "devnet", @@ -1127,28 +1360,43 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:27.154841835Z", - "sealed_at": "2026-03-13T08:42:27.154842389Z", - "signers": [] + "initiated_at": "2026-04-08T08:02:12.560353091Z", + "sealed_at": "2026-04-08T08:02:12.699204577Z", + "signers": [ + { + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "stake": 20000000001 + }, + { + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "stake": 20000000001 + } + ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234372c37362c3134322c35352c3136392c36302c3139302c35322c3131342c3130392c3139302c3135392c3131362c3233382c37352c3131342c3130392c3135382c3234312c3137382c3134342c39312c32322c3131332c3132372c35342c3233382c3130312c38342c34312c38302c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "14" + "current_epoch": "12", + "cardano_stake_distribution_epoch": "11", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "1e459dbfe86d2745f51ad7378a9ba7ddac1a18732216a73e0355685adaa173fa", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234372c37362c3134322c35352c3136392c36302c3139302c35322c3131342c3130392c3139302c3135392c3131362c3233382c37352c3131342c3130392c3135382c3234312c3137382c3134342c39312c32322c3131332c3132372c35342c3233382c3130312c38342c34312c38302c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "", - "genesis_signature": "6d19ee6b2ff86374bfc809700fef24f1bee5af8817b843e769552d926aef213de91000cb6bca2b1553532c08e57df788be9af8cb9b05b0a95e221d7d01474f0a" + "signed_message": "0c4bc1f9bfbc82df4a31d6c6aed75fa2f069ef5aae9a543de64bc972eeb4c68e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131362c34362c34352c3138362c322c3138332c3136302c36302c37372c3136332c39362c3133322c3139382c36312c3131392c3133302c39352c3136352c3235312c34342c3131302c3230382c3234302c34322c34342c3234312c3131372c39342c32362c34332c3232312c3133315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c33352c3232302c3134392c3132302c3137352c3132322c3233362c342c3231362c3136372c39302c3136392c3136332c39332c3232372c3135372c33392c3130322c3132322c3130302c3231302c3133332c31312c3131382c3134302c3134342c3139322c3232352c3135352c32312c31352c3135312c34312c3231382c3230372c3231332c38322c35302c3231362c37312c3135352c37312c3234382c3130362c3133372c32362c3232325d2c22696e6465786573223a5b322c342c352c362c372c382c392c31302c31322c31332c31342c31362c31372c32302c32312c32322c32332c32342c32352c32362c32382c32392c33312c33322c33332c33342c33352c33362c33382c33392c34302c34312c34322c34332c34342c34352c34362c34382c34392c35302c35312c35322c35332c35342c35352c35372c35382c35392c36322c36332c36342c36352c36362c36372c36382c37302c37312c37322c37332c37342c37382c37392c38302c38312c38322c38342c38352c38362c38372c38382c38392c39322c39332c39342c39362c39372c39382c3130302c3130312c3130335d2c227369676e65725f696e646578223a307d2c5b5b3136332c3131322c38332c35372c3233372c3139322c33362c3131312c3139302c372c3132332c3131342c37332c3136372c39332c3233322c35372c3231362c3131392c38312c3230372c3139352c352c3130302c3233332c3231352c3231372c3233392c38362c3132352c3137362c3138302c3135302c3134382c3134372c372c35312c3139342c3234352c32322c3134382c3132352c39342c3134352c3137342c39312c3235342c3136362c322c36322c3136322c3231352c3135372c3137352c3231332c3235302c3233302c3231352c3235352c3232362c32362c3137392c39382c3139302c34312c34362c3233332c3134382c3133312c39332c3234332c3136372c3232322c3136392c33302c3233352c3134392c3138312c39322c3230342c3139352c32372c3234382c3136372c3133342c3130352c33342c3232362c35362c34362c3134332c35322c3137382c3235312c34312c39385d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3133362c39342c3139382c3230352c3230302c392c3139372c362c38352c38352c36382c3234302c36312c3232392c31302c3138322c3231392c3233352c3133312c3132302c3233342c3134302c37332c3234352c3235342c3234302c3134312c3133372c35302c3131362c38342c32312c3230332c3231362c35362c3138312c35312c3132362c32372c33352c3135322c38312c3232322c3138322c3138302c382c35372c33325d2c22696e6465786573223a5b302c332c31312c31352c31382c31392c32372c33302c35362c36302c36392c37352c37362c37372c38332c39312c39352c39392c3130325d2c227369676e65725f696e646578223a317d2c5b5b3138312c3137352c3233352c3234332c3130342c36312c36392c3137342c3133382c3138392c3233312c3134322c3133302c32332c3130312c3132302c3131322c35372c3133332c3130382c3130362c3131392c37342c3131322c3132342c36352c38352c3138352c3137322c3135372c38392c3132322c38302c3135322c3131302c3230312c35322c37362c3134322c32342c3139332c3230382c3132342c3135362c32362c3230312c36392c3234302c32302c38322c36372c37302c3133332c3132352c3234302c3232372c39342c3136372c3132372c3131342c3234392c3131302c34372c33342c3232382c3135362c39342c3137302c3230392c3234312c3232322c37362c35312c3131392c3130392c3230322c3137382c32342c36392c3131372c3232382c34362c3131392c3135322c36372c35332c38352c32342c3233362c35392c35322c3139342c33342c3135332c362c3230315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" }, - "9bebeed7a38d9c491c6a9f2fa096dcc662c094759fb7eddbcfc5cea4ff7ba01d": { - "hash": "9bebeed7a38d9c491c6a9f2fa096dcc662c094759fb7eddbcfc5cea4ff7ba01d", - "previous_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "epoch": 19, + "c023039d61595c34e095d313be3fef1232fb251dcb297d79b9d3e4a38266bcf1": { + "hash": "c023039d61595c34e095d313be3fef1232fb251dcb297d79b9d3e4a38266bcf1", + "previous_hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", + "epoch": 14, "signed_entity_type": { - "CardanoStakeDistribution": 18 + "CardanoBlocksTransactions": [ + 14, + 434, + 1 + ] }, "metadata": { "network": "devnet", @@ -1158,42 +1406,43 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:42.569024772Z", - "sealed_at": "2026-03-13T08:42:42.702765354Z", + "initiated_at": "2026-04-08T08:02:20.057373473Z", + "sealed_at": "2026-04-08T08:02:20.186830842Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_blocks_transactions_merkle_root": "f95075e1cd0bd07a490d7bed2277451acae49ae72577d87342b943c4fbaf1d80", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "19", - "cardano_stake_distribution_epoch": "18", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "14", + "latest_block_number": "434", + "cardano_blocks_transactions_block_number_offset": "1" } }, - "signed_message": "e124415b99128a1e3e750aa5741c7eebd474e87cd50b6a9b8060bd4350e275fd", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133332c33392c3135302c32352c34392c3133302c3232372c3232352c392c3138392c3230372c3232352c3233322c32332c31352c32332c31302c3233362c3137382c36312c32342c362c3131302c3231342c3231352c37382c3138302c38392c3233362c3234302c3138392c3138382c38382c3132392c34322c3133322c3139342c36302c34342c3235342c3132362c3231332c35382c3130382c32382c37302c3135332c31365d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31302c31312c31322c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32352c32362c32372c32382c33312c33322c33332c33342c33352c33362c33372c33392c34302c34312c34332c34342c34352c34362c34372c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36312c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37372c37392c38322c38332c38342c38352c38362c38372c38382c38392c39302c39322c39352c39372c39382c39392c3130302c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137352c3231312c3135332c33352c3134382c34312c362c3132342c39372c3230302c362c3136382c3235342c3134302c38312c3136332c32382c3131372c34342c34362c332c3138342c3136302c34312c3134372c31322c39372c3230322c3136382c33342c3132392c3132302c3136352c34392c3231392c3133392c34392c33322c3136392c3131362c3135352c35352c35372c3136322c3134332c35312c37392c3138332c362c3230352c3235332c3235332c37302c38372c3233302c3136372c31352c38372c32302c3231322c3130322c32382c3231322c3233302c3130312c35322c3139342c3230362c3138332c34332c3132382c3135332c3230352c38392c3231342c37392c3136312c3131342c3233302c32352c34372c32332c3137342c3139322c3131362c3132372c3137362c3230362c3233352c3132302c3135372c33352c3134302c37392c3231322c3138325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137382c32372c36322c35332c36372c3139302c362c36392c3230372c32382c3132312c3133322c3232392c3135382c39352c32392c3233302c3131362c3139312c38342c3230332c3230382c3232392c36312c3137302c3235352c3230352c3233372c34362c3231352c32302c3234325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "0c5811551beba372119935f9431beb37127271cd116258d2081476ea04e7c9e7", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132362c362c342c3132392c3232372c3235332c3230302c31332c39342c3233372c3233342c3130312c34352c35392c3139362c3134302c3234392c3233342c39372c3136352c3139372c39362c3130332c3235302c34382c3136332c37322c3130312c37312c33332c3234362c35345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c3131352c39302c34312c3231302c3235352c38322c35372c3234382c3235332c3137302c3230362c332c3137392c3131372c3231362c39302c3131372c36322c3134372c3132362c3139372c31302c3136382c36382c3232332c3131382c35332c36322c31332c3130382c3130302c3134302c35342c3137302c3135342c36392c3139352c39362c31362c3233352c35302c3235352c3235352c3137392c3137332c3136362c3136385d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31352c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c33302c33312c33322c33352c33362c33372c33382c33392c34322c34332c34352c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38382c38392c39302c39312c39332c39342c39352c39362c39372c39382c3130302c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133342c3234342c3131332c3233382c31372c34372c35322c3231352c3139302c3133312c3137332c3133332c3137342c322c3139302c3139322c3132362c34342c3232332c34372c3137362c3232372c3131332c3130362c3234312c3232342c3134312c3233392c3134362c37382c3131372c3137382c3132302c3132372c39302c31382c3230302c32392c372c3130362c32302c33362c3134372c3138322c35322c342c36332c37302c342c3136302c3136312c31332c37372c3130322c3133362c3137382c39362c37382c3134342c3139302c3137362c3136312c3134392c3137362c3135362c34382c3132372c3231312c36372c3137352c3136342c332c3138382c3234342c3131302c3133392c35312c3134372c3136332c3233342c3132392c3132392c39332c3231352c3234362c3134322c3232302c3130302c3136392c3136302c33342c33352c3139352c34302c34302c34355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138382c3231332c3134312c3138382c32372c33342c3231312c3133302c35302c332c3138392c3138372c3230342c3130392c3130382c3131312c3139392c3139302c3230392c3137332c3133302c3135392c3139372c3136302c3133322c3231312c3232302c3136302c3139392c3137362c3231312c3231305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "9f2887a27d2300529dfa6a1992c38a3817f8514e0f22a347b4b4ba9d06280369": { - "hash": "9f2887a27d2300529dfa6a1992c38a3817f8514e0f22a347b4b4ba9d06280369", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "c58e8c4937329e4e3067b0efcf130d3f49009d4d2fde92b88dd7e018880f8636": { + "hash": "c58e8c4937329e4e3067b0efcf130d3f49009d4d2fde92b88dd7e018880f8636", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { - "CardanoBlocksTransactions": [ - 20, - 614 - ] + "CardanoDatabase": { + "epoch": 16, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -1203,39 +1452,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:47.072315294Z", - "sealed_at": "2026-03-13T08:42:47.201644010Z", + "initiated_at": "2026-04-08T08:02:25.052204157Z", + "sealed_at": "2026-04-08T08:02:25.187631304Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "cardano_blocks_transactions_merkle_root": "88311addfa37d60dcaf4de731c7678179eb3ab0b82a9e59f6b8ebc867a83e9eb", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20", - "latest_block_number": "614" + "current_epoch": "16", + "cardano_database_merkle_root": "acef10fe12c10efa98fc0446b227c157eb50b9ef01d223ff6df7a594d493d2a6" } }, - "signed_message": "6464e0862ec72f61016ff366358d4f45b5126556e956749c06947483cacd6fc7", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c3231302c36352c3133342c3231362c3134362c33302c32332c3131372c3233322c3138342c3132332c39312c36312c3233352c33362c31382c33382c31342c31322c33362c3230362c33302c3131342c3234312c3130382c31312c38362c35332c3130362c3131352c3131362c3235342c3135342c3137392c3135332c3230362c3230302c3130312c37332c3138342c3131332c3135382c37392c3136322c3234342c3230322c33355d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31342c31352c31362c32312c32322c32332c32342c32352c32362c32372c32392c33302c33322c33332c33342c33362c33372c33382c33392c34312c34332c34342c34352c34362c34372c34382c34392c35312c35322c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36382c37302c37312c37322c37332c37342c37352c37362c37392c38302c38322c38332c38342c38352c38362c38372c38382c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134302c35352c3130352c34352c3135332c3233362c3134332c3132392c3233342c35322c3232392c3232362c3137352c37342c3131322c32392c3138322c34342c3132302c3131342c35382c32342c302c33332c3234302c3138372c31392c3232302c37332c3130392c33352c3231302c3230392c3234332c3235332c3232362c33342c3231312c3231392c342c36302c3130312c3230312c3233382c33342c39352c3138342c3230392c32332c39372c3230362c3234332c3231392c3130342c33392c3231342c34302c3132322c32302c38392c3234382c3136372c322c3133392c3132352c3139362c3234342c3230312c35302c34302c34322c39382c3138302c362c37332c32392c3135342c3131312c3132332c31332c3139392c36362c38392c392c34372c3132382c39382c3136322c3136302c3134322c32312c322c33342c3232352c3136332c3137335d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c3132342c3234322c3235322c3234352c3135342c36392c3231302c3133352c3234302c3134372c3138302c3233332c34392c3135382c3131302c35312c3138322c36382c3134332c39312c342c3233342c31302c3233392c34372c3136372c3134372c3234362c3137312c31352c3231325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "0383df28562a4d4ed4f8a45f27da1e8958a7fc58570ca243855aa5361c74843c", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c34342c31352c38322c3130362c3230392c31322c302c35392c31392c3232372c34352c38322c32332c39392c3235332c3133392c3230302c35302c39362c3135332c3232392c3134362c3136392c37362c3137312c34312c3133342c38362c36342c36362c3133322c3132312c3235332c32322c3138362c36352c3139352c32372c3232362c3132342c33382c38362c3135322c3231312c3139342c3138342c3232375d2c22696e6465786573223a5b302c312c322c352c362c372c392c31302c31312c31322c31332c31342c31352c31362c32302c32322c32332c32342c32352c32362c32382c32392c33302c33312c33322c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34382c35302c35322c35342c35352c35362c35372c35382c36302c36312c36332c36342c36352c36362c36372c37302c37322c37342c37352c37362c37392c38322c38332c38342c38352c38362c38372c39302c39312c39322c39332c39342c39352c39362c39372c39392c3130302c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134312c3232302c3133372c362c3131362c3232322c38362c33342c38302c37372c3136392c3136352c37342c31382c32312c36332c32352c38342c34302c33362c3133342c3134342c342c37392c3232382c3133372c3130382c3136372c3138352c31342c3139312c3135382c3233392c3133372c3134322c39302c3230392c34382c35342c3138322c34392c3230332c3133302c3132342c3233332c3130342c3136382c32302c31362c34322c3137362c3231302c3136392c37382c3134352c3233372c32372c3130322c3230302c3230392c3133352c342c37302c3131312c3235302c3130312c3138322c32382c3133362c3135382c33372c33362c3132332c3133332c33312c3231362c31302c3233312c3234392c3233362c38392c38302c37332c3233372c3139362c3137302c3233372c382c3131342c34392c3131342c3230302c3139322c3235332c36332c3233315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131392c332c38302c3234342c322c37342c32382c3234352c32302c39382c3132332c3234362c34342c3135332c36352c3134352c32352c3133352c38322c32342c36312c3132362c35302c3135382c3131342c31372c34372c3136302c3233392c3132322c33312c385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "a0416b473bc0ffdb8c8c9c8bbd9c1f8c452c4be135dc6f521e563d12c5be059c": { - "hash": "a0416b473bc0ffdb8c8c9c8bbd9c1f8c452c4be135dc6f521e563d12c5be059c", - "previous_hash": "326c537f77f8e8c05c6cb6ed59b95570f3a13b975fb0911ce8cfcc84a1e6d18a", - "epoch": 15, + "c61b0881d91dd098da5083d1e01746ba6a50e88880655bac4d76b6a4c3f052a1": { + "hash": "c61b0881d91dd098da5083d1e01746ba6a50e88880655bac4d76b6a4c3f052a1", + "previous_hash": "8b099770c556da485b1798e07af0722b2174e57aa8c668c276460a6c121d9317", + "epoch": 12, "signed_entity_type": { - "CardanoStakeDistribution": 14 + "MithrilStakeDistribution": 12 }, "metadata": { "network": "devnet", @@ -1245,41 +1493,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:30.568716014Z", - "sealed_at": "2026-03-13T08:42:30.705199822Z", + "initiated_at": "2026-04-08T08:02:12.298446326Z", + "sealed_at": "2026-04-08T08:02:12.452838447Z", "signers": [ { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35392c3138392c3132322c352c3137332c36312c39302c3139362c3132372c35372c35312c3230372c3230362c3139322c33392c3230302c38332c3234332c3235312c3235302c3231372c37332c33322c3132322c3233312c332c3232322c3136332c3235322c3235302c32312c3130335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "15", - "cardano_stake_distribution_epoch": "14", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "12" } }, - "signed_message": "c0c20feef88857e803459a05940a6dc65ec255c529e3664f40fe00c980de4a98", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234372c37362c3134322c35352c3136392c36302c3139302c35322c3131342c3130392c3139302c3135392c3131362c3233382c37352c3131342c3130392c3135382c3234312c3137382c3134342c39312c32322c3131332c3132372c35342c3233382c3130312c38342c34312c38302c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136322c3130372c3235342c3137322c34312c3132392c3131312c3136382c36392c3139342c3132342c32342c3138362c31342c35362c33342c3137392c3136342c3139302c32302c3231332c3137322c3233322c3132322c3234332c3131302c342c3138332c38382c31382c31392c3130322c36382c3137322c3234382c3137392c35352c3136312c3137332c34342c3234322c3233322c31342c33382c34342c3235322c3232352c36375d2c22696e6465786573223a5b302c322c342c352c362c372c382c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32322c32332c32342c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34362c34392c35302c35312c35322c35332c35342c35362c35382c35392c36302c36312c36342c36352c36362c36372c36382c36392c37302c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39302c39322c39332c39342c39352c39362c39372c39392c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138312c3231362c3235352c3234362c3132372c3234372c3234352c3138362c3131342c34352c34372c3133322c3136342c3132352c3132342c3230362c3134332c3131362c3233342c3136382c3137332c3134332c39332c32372c35392c39302c3230332c32362c32332c3135362c3133352c35352c3131302c38312c3139302c3232372c3132322c3138332c31372c34312c38342c3137372c3235322c3134372c3135302c32332c3131302c33332c31342c3137342c32352c3233382c37312c332c3233382c3137332c35392c3137332c3230322c32362c3138372c32392c3231392c3134362c3135332c3133392c37362c37322c3235342c3233312c38372c3232322c3130302c38332c3134352c3131332c3234322c382c3232332c35352c3231352c3132372c3137312c3136312c3138352c34312c3230342c3230382c3131302c3139332c39322c3233312c31302c3134342c37332c305d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b36312c3133382c3133392c3137342c3232322c3130382c35322c3135312c3235322c3232362c3137342c31312c3131342c3138302c3131302c3134362c3233312c3131362c35342c3132382c3130312c3233342c3133312c36352c3136352c3133352c38372c3230352c3231332c34372c3136302c3231305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "b87fdd5119fb3b3631d81a97206d907a662f3a3853a6c76309db4a9eaac4224c", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131362c34362c34352c3138362c322c3138332c3136302c36302c37372c3136332c39362c3133322c3139382c36312c3131392c3133302c39352c3136352c3235312c34342c3131302c3230382c3234302c34322c34342c3234312c3131372c39342c32362c34332c3232312c3133315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133342c312c3232342c34312c3234332c3138322c3230332c39362c32322c3130312c3134392c3138332c3233302c3139392c3234302c3131322c3232372c39322c3235312c3230312c3233352c31322c3133342c3231302c3130392c342c39362c3138362c3132362c3136302c3136392c3139392c3231352c3235342c39352c3132372c3135332c3135382c36322c3134352c35342c3235342c37322c38302c35322c37382c3230382c3137305d2c22696e6465786573223a5b312c322c332c352c362c372c382c392c31302c31312c31332c31342c31352c31362c31372c31392c32302c32312c32322c32332c32342c32352c32372c32382c32392c33312c33322c33332c33352c33362c33372c33392c34322c34332c34342c34352c34362c34372c34392c35302c35312c35322c35342c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37322c37332c37352c37362c37372c37382c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136332c3131322c38332c35372c3233372c3139322c33362c3131312c3139302c372c3132332c3131342c37332c3136372c39332c3233322c35372c3231362c3131392c38312c3230372c3139352c352c3130302c3233332c3231352c3231372c3233392c38362c3132352c3137362c3138302c3135302c3134382c3134372c372c35312c3139342c3234352c32322c3134382c3132352c39342c3134352c3137342c39312c3235342c3136362c322c36322c3136322c3231352c3135372c3137352c3231332c3235302c3233302c3231352c3235352c3232362c32362c3137392c39382c3139302c34312c34362c3233332c3134382c3133312c39332c3234332c3136372c3232322c3136392c33302c3233352c3134392c3138312c39322c3230342c3139352c32372c3234382c3136372c3133342c3130352c33342c3232362c35362c34362c3134332c35322c3137382c3235312c34312c39385d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3136382c3130392c35392c3130342c3130342c3231312c3131332c36342c3235332c392c3235302c33332c39312c3133342c35382c38342c3231342c3235302c34312c3230322c3138362c3130362c3230302c342c3132302c3231362c3139352c35382c3138312c3135312c33302c3135352c3130302c38352c3136392c3232342c3138302c36362c3232332c3136352c34382c3136312c3231372c36322c34392c37372c3232352c3231315d2c22696e6465786573223a5b302c342c31322c31382c32362c33342c33382c34302c34312c35362c36342c37342c37392c38305d2c227369676e65725f696e646578223a317d2c5b5b3138312c3137352c3233352c3234332c3130342c36312c36392c3137342c3133382c3138392c3233312c3134322c3133302c32332c3130312c3132302c3131322c35372c3133332c3130382c3130362c3131392c37342c3131322c3132342c36352c38352c3138352c3137322c3135372c38392c3132322c38302c3135322c3131302c3230312c35322c37362c3134322c32342c3139332c3230382c3132342c3135362c32362c3230312c36392c3234302c32302c38322c36372c37302c3133332c3132352c3234302c3232372c39342c3136372c3132372c3131342c3234392c3131302c34372c33342c3232382c3135362c39342c3137302c3230392c3234312c3232322c37362c35312c3131392c3130392c3230322c3137382c32342c36392c3131372c3232382c34362c3131392c3135322c36372c35332c38352c32342c3233362c35392c35322c3139342c33342c3135332c362c3230315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "b199a418cdc34f56221303bebf99ba838111ba3380c1f2022565a0332bfd551e": { - "hash": "b199a418cdc34f56221303bebf99ba838111ba3380c1f2022565a0332bfd551e", - "previous_hash": "135c6de9fa65ffd328b00918df0b40b51df9a9f7394cdec81a9a2b7368bfe545", - "epoch": 18, + "ce91a1c3f44e65526703086a95603996538fadd33f20f48e611f3173b26dd6bd": { + "hash": "ce91a1c3f44e65526703086a95603996538fadd33f20f48e611f3173b26dd6bd", + "previous_hash": "767f4dc796ac98eb14e4b319b6e53aadf9742e81a9a94b1d977c1e6b735cdc73", + "epoch": 9, "signed_entity_type": { "CardanoDatabase": { - "epoch": 18, - "immutable_file_number": 4 + "epoch": 9, + "immutable_file_number": 1 } }, "metadata": { @@ -1290,41 +1536,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:40.069518351Z", - "sealed_at": "2026-03-13T08:42:40.203465346Z", + "initiated_at": "2026-04-08T08:02:04.054240055Z", + "sealed_at": "2026-04-08T08:02:04.193369884Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33302c3234362c372c3136352c392c3234392c3133352c33392c3137332c32312c3133302c3138352c34362c33382c39322c3137372c3234352c3134312c3132342c3136392c3138382c3134362c3231362c3138382c3131302c3138352c3231382c3133372c3231332c3234332c3234372c3134375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "18", - "cardano_database_merkle_root": "91381531385f9b95ca544297c9ee75010615661f720c117b0a0df24db19bf683" + "current_epoch": "9", + "cardano_database_merkle_root": "cd0693755010decd3f5cfd111ab0b502e60249ca85c5b6d0f552d53ef2deb4d1" } }, - "signed_message": "3c91d7209639b8928d07a702c268344a96ee8ec3f6e7d2df6260f693d24d4872", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135302c36362c3232352c3133352c35352c3138342c3133332c37302c3139302c3232332c3132392c3235352c38392c3234382c3136312c32392c3130302c3233382c35392c38312c3138342c3234362c3130342c33332c33342c36342c3231372c3234332c3139362c32382c3231362c37335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3138352c3138312c3231302c37342c3138332c3132372c31392c3234382c3137332c3138332c32352c3234372c3132362c3235352c3137352c3234312c33342c32342c3233382c3138312c39342c36312c34332c3134332c3131342c3232312c332c31312c34342c3231392c3132322c3232342c3134362c3231372c3230392c39312c3134322c31302c3135352c3131352c3131372c3134392c34362c3130372c3138352c3137392c36345d2c22696e6465786573223a5b302c372c31312c31322c31332c31342c31372c32302c34322c35382c36312c37322c38362c3130305d2c227369676e65725f696e646578223a307d2c5b5b3134352c3136362c3232352c3235322c38372c3136392c3135302c3134352c31362c3233362c3135312c3130372c38342c3135312c3138322c3134302c31302c3130322c39362c32312c39362c3231382c37322c3130302c3231342c3139322c3136352c31332c36372c32362c32322c3136342c3139332c3134312c3233382c3230382c3139312c36362c3131382c3230362c3133382c37382c3231312c31362c37392c3136352c3134342c3232372c32322c3139332c3135382c31362c3135332c3131312c39322c3230312c3133322c312c38392c3139322c3235312c3234302c3233392c3234392c3232302c35312c3137312c37302c3137352c36312c31342c34342c3138342c3135372c3134312c32342c3231392c3136302c39372c32352c34332c3137342c38332c3130342c32302c3230322c34362c3234392c32382c3131392c36382c34342c37382c3134302c3230332c3233315d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3133342c3134352c3231352c3137342c33352c36312c3133322c3230382c3138362c34382c3233352c34302c302c38332c39382c38382c3135312c3235322c3132382c31312c3139322c34312c3139352c3230302c3231322c39372c3138322c3231302c3138342c38362c35362c3136342c3234392c38342c31382c3134362c3133322c3137372c3131392c3136372c3139342c3136352c3139382c3234342c3139342c32352c32332c3138385d2c22696e6465786573223a5b312c322c332c342c352c362c382c392c31302c31352c31362c31382c31392c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36322c36332c36342c36352c36362c36382c36392c37302c37312c37332c37352c37362c37382c37392c38302c38312c38322c38332c38342c38352c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137392c3230392c3136392c3138302c3232372c3137362c3138312c3138322c32302c3137392c38312c34372c3136322c3234392c32342c3135392c3138392c3232322c34342c31332c39362c3133312c3233312c3133342c3232342c3136342c3135302c3232342c3230372c3233342c3233362c3130352c3232322c3137392c3231342c3132302c3134352c3234372c3232382c32392c382c3137382c3230362c33372c3131342c3235352c3131322c39362c31332c3132322c3138392c3134302c32332c3139332c39322c3230322c3134392c38322c3138382c35322c3234392c32312c39362c35322c3231302c3134382c3234382c3134302c3132352c34352c3137352c3139382c3136372c34302c39322c3231352c3132322c302c3133382c34382c31372c3136342c3230302c3134372c33362c3231342c3136342c32332c3233322c3131392c3132362c3231322c3137372c3234302c3235322c31355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "4eaf4ed33a0e86ac1783f5b506f5a79c98ec8e677dbd022436dc2c6196e860a2", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230302c3132302c3131352c3130392c34312c3139302c3133392c3232352c3232382c3139302c3139332c3131302c39372c3131382c3235332c3132302c3132322c3138362c3136302c33362c3230382c35382c3231392c3131382c37332c3132392c31302c32382c3139312c3137332c3232372c34325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c3131302c3132362c38362c3233342c3136372c3137372c3133332c392c352c3136352c36362c3132322c3136382c3131312c34342c3133382c3139342c3137322c3137302c33322c35372c3134322c39322c3135302c3138322c32382c3232322c3137392c35332c36382c3131342c3135312c31372c3136312c32302c3234342c3231302c31362c3134322c3233312c3233362c3136322c39302c3235322c3133382c3137322c38315d2c22696e6465786573223a5b302c312c322c342c352c362c392c31302c31312c31332c31352c31372c31382c32302c32312c32322c32332c32342c32352c32362c32372c32392c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34362c34372c34382c34392c35302c35322c35342c35372c36302c36312c36332c36342c36352c36362c36372c37312c37322c37332c37342c37352c37362c37372c37392c38312c38322c38332c38342c38352c38372c38392c39302c39312c39322c39342c39352c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134392c39352c3231332c3233372c3232352c34302c3234302c36392c31372c3133352c3131372c3133332c33312c3137362c3232332c3133342c3139372c32362c3132382c3132302c3132382c35342c34322c3135342c3232352c3234372c38302c3130302c36392c35392c392c38352c3133332c38312c3231302c31312c37392c3232332c3136342c33312c3139312c34312c3231322c32362c3138322c3136332c3230372c3138312c31352c3133312c3230312c39312c32312c3231332c3234392c3138392c3139362c3235312c3234382c3130302c3132332c3230382c32342c32302c35352c3130302c3135312c3234362c38352c3232302c3136342c33302c3136372c3231372c38322c3230392c3231352c3134342c3233332c3234392c3134342c3137342c31342c3135362c3134322c34312c39302c3132362c3230362c3133342c34312c3132382c3134362c32342c3232302c38375d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31302c3131362c3138332c3131342c37322c37332c3131362c32372c382c3132362c32372c3136392c3138302c322c36392c3136362c3131332c3130322c3235332c3136312c37382c3138392c3131332c3137332c3139342c3234392c33332c3132352c3133322c3131352c3233322c37345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "b8173ece3d0826e5b16a1ee082fc9ac05ae8b85dbcbb8c347f887f1ecc814f45": { - "hash": "b8173ece3d0826e5b16a1ee082fc9ac05ae8b85dbcbb8c347f887f1ecc814f45", - "previous_hash": "1c4aa48489936100fb4decb172641cb28599792ffe78103917d3844c98866e8a", - "epoch": 16, + "d1d3ad13672fcec93c4b5ddbada8221a115d2fc23dd4776cffa104cd73bd3180": { + "hash": "d1d3ad13672fcec93c4b5ddbada8221a115d2fc23dd4776cffa104cd73bd3180", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "epoch": 16, - "immutable_file_number": 3 - } + "CardanoTransactions": [ + 15, + 449 + ] }, "metadata": { "network": "devnet", @@ -1334,40 +1580,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:33.819076344Z", - "sealed_at": "2026-03-13T08:42:33.955714520Z", + "initiated_at": "2026-04-08T08:02:22.344438076Z", + "sealed_at": "2026-04-08T08:02:22.440938766Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "9509a8c04b1222a2881ae8977af38ffb7682007c686a4fe159c97de11a5c14e8", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3132302c3235312c3232302c3139392c3232352c3135332c35372c36322c3235312c32372c36392c3130332c36302c34362c3230372c33352c38372c3136372c3233312c36312c3231382c3139352c35322c3139392c39382c3130382c3233362c3233332c3130352c3138322c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "16" + "current_epoch": "15", + "latest_block_number": "449" } }, - "signed_message": "27efa52caa4f721b72e9400feba7aa48f00ba19936ffc739932d9c98d03a8189", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35392c3138392c3132322c352c3137332c36312c39302c3139362c3132372c35372c35312c3230372c3230362c3139322c33392c3230302c38332c3234332c3235312c3235302c3231372c37332c33322c3132322c3233312c332c3232322c3136332c3235322c3235302c32312c3130335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c33362c3132332c3230362c3137352c3137302c3132392c38332c3234362c3234362c3230342c31332c3233342c3233382c3131322c3139372c3138332c3232392c3139392c3133322c3234382c3136312c36342c3235302c3138312c33382c35392c34332c3233302c3136382c39332c31342c3139302c37302c33352c3137302c3230362c3232372c3231312c3134382c3139342c32392c3233382c3231352c3135382c36372c31332c3231325d2c22696e6465786573223a5b312c322c332c352c362c372c382c392c31322c31332c31342c31352c31372c31382c31392c32302c32312c32322c32332c32352c32372c32392c33302c33312c33322c33342c33362c33372c33382c33392c34302c34322c34342c34352c34362c34372c34382c35322c35342c35352c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c3130312c3130335d2c227369676e65725f696e646578223a307d2c5b5b3132382c3232332c3131312c3135392c3138392c3138362c39312c36312c3134322c3130362c33392c372c3139332c3136342c36382c382c3132382c34352c33342c302c3136382c3133362c35352c37372c3134312c36362c3230302c36372c392c3136362c3138392c35392c3230312c382c32362c3139302c34382c33382c3235332c3138392c3138372c3230362c3231332c34352c3232362c3135372c38312c3130362c31312c3230352c3131372c31352c3232302c39342c3230392c3139312c38332c3230322c31372c39392c3234342c3139302c3138322c3130372c3135342c35332c31342c3232372c39302c3234382c36312c3231372c37352c3132342c3233322c3131332c3131342c31372c34372c3235332c3138372c37372c34352c3230312c3231362c31392c3134332c36302c3133362c32322c3135382c33302c32372c31332c35302c34315d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3134372c35352c372c33302c3136392c3231352c34382c32382c3133302c37332c36352c36342c3232332c3132362c33372c3131392c36352c3132372c3130382c3138332c3131322c3134372c36312c35372c3231342c3136362c3139372c3137342c3139302c31352c3131352c36362c39352c3132322c38342c3130332c3234322c33362c37392c34392c3233392c3230362c31362c32392c3131372c38302c3231392c3138305d2c22696e6465786573223a5b302c342c32342c32362c32382c33332c33352c34312c34332c34392c35312c35332c35372c37302c38332c39392c3130302c3130325d2c227369676e65725f696e646578223a317d2c5b5b3137302c3132352c3139312c3232352c3234392c38362c37382c3230342c3133382c3233332c3232392c3135302c3136322c3234342c3136382c3136352c3235352c3233352c3231382c31312c37382c3130302c34302c36312c312c39302c3233372c3134362c38302c3132342c3138322c3139372c34372c3232332c3235332c35382c3233362c37312c37352c37392c39382c3135392c32332c3234302c3139382c39322c3138312c3133332c302c3231362c3230312c3130322c3234362c3233332c3136302c3133362c3130352c3132322c3130342c32392c3132322c3135392c39312c3130332c38392c3232352c3136332c3234372c36362c302c35372c35312c3233302c3136302c36302c3135372c32382c3131352c3136332c3231392c3133352c3233362c332c3133332c3133342c3230312c3234302c32322c3130312c34372c3230382c32302c3233372c3134332c3135302c3232395d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "55ebfdbbe03c2ad123af359533f4284477b040f0492e288335fcca2327fabd80", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134342c3131372c3133342c3231342c3132392c3231362c35342c35302c3135352c3231372c37372c3235342c3234322c32332c3139392c3130352c36302c3137372c3137342c34322c34392c32302c33382c3133352c33322c3136362c31352c3130302c3230362c3135352c3130332c3234372c3232382c34352c37322c312c3136362c3130372c3138322c3230342c31392c3130322c3233302c38392c3231302c3233372c3135382c36375d2c22696e6465786573223a5b302c312c322c332c342c362c372c382c31302c31312c31332c31342c31352c31362c31372c32302c32312c32322c32332c32342c32352c32362c32372c33302c33312c33322c33342c33362c33372c33382c33392c34312c34322c34342c34352c34362c34372c34392c35332c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36362c36392c37302c37312c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38372c38382c38392c39302c39322c39332c39342c39352c39362c39372c39382c39392c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133312c35372c3134342c35382c31342c3232302c37322c3132332c33352c37382c3234302c38342c38392c3131362c3232312c35372c3230302c3234322c35332c31372c39302c3132332c3135372c3132302c3231362c3138392c3230382c3136312c39382c3232372c3139372c3231312c36322c3235342c3139332c33342c34352c36302c3139342c3230302c3135312c3131392c34392c3133392c37362c3230302c3133312c3135332c342c3135372c372c38322c3138362c32342c3133332c38382c3230392c38372c36342c31362c3138332c31302c38372c37322c322c3230352c3233342c3234312c37352c31362c3132342c3230332c33302c35352c37302c33372c34332c33362c3139342c33342c3234382c35392c3133302c3232392c33392c36312c3138332c3235332c3232342c39372c3232382c3132322c3135342c3230312c34302c3133345d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230302c3137302c36362c33372c3231342c35302c3231352c38352c34392c3137322c3232382c3134362c36302c3231382c3233332c3230312c3137302c34382c31392c34342c38352c3233372c382c35332c3232342c3132302c3230302c3131342c3233342c3131372c3131342c39355d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "bb8321282158276637d6bfa4766b0a5769cf2ec837db3042044dc0ed4d65c4da": { - "hash": "bb8321282158276637d6bfa4766b0a5769cf2ec837db3042044dc0ed4d65c4da", - "previous_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "epoch": 19, + "d2a42057e168a0f385d4652c07bf1de65b433442f4576079d21f751ec4261879": { + "hash": "d2a42057e168a0f385d4652c07bf1de65b433442f4576079d21f751ec4261879", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { - "CardanoDatabase": { - "epoch": 19, - "immutable_file_number": 4 + "CardanoImmutableFilesFull": { + "epoch": 16, + "immutable_file_number": 3 } }, "metadata": { @@ -1378,40 +1625,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:43.069232062Z", - "sealed_at": "2026-03-13T08:42:43.200649408Z", + "initiated_at": "2026-04-08T08:02:24.814356659Z", + "sealed_at": "2026-04-08T08:02:24.951098750Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "6e0d192003c2bd6c8308388224d4eb4ebaf1d8594862045182dbc9dac49c1dff", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "19", - "cardano_database_merkle_root": "91381531385f9b95ca544297c9ee75010615661f720c117b0a0df24db19bf683" + "current_epoch": "16" } }, - "signed_message": "409c2f79c33ad517ac3f8372396dc0aa69020668da8df1216f9550e501f8642f", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134342c3235342c37342c3132302c35342c33352c3234362c3138382c3137352c3137312c3231322c35382c39322c3231322c3133372c3234332c3133332c3231362c37312c3139372c37392c3136342c3231322c3131342c3231362c3232332c35322c3133312c31362c31352c3232392c3132332c3234322c3134312c3137332c3235332c3131302c39352c32322c37392c39322c32312c3136322c33362c3137362c302c3139352c3130375d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c31302c31312c31322c31332c31342c31352c31362c31382c31392c32302c32312c32322c32332c32342c32352c32362c32382c32392c33302c33322c33342c33352c33362c33372c33392c34302c34312c34322c34332c34342c34362c34372c34392c35302c35312c35332c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37362c37382c37392c38322c38342c38352c38362c38372c38382c39302c39312c39322c39332c39342c39352c39362c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136392c3136302c3136322c3234392c36392c332c3139302c36332c3235352c3130382c31362c3134382c3231312c35302c32322c34382c3137322c3230342c35342c3133332c3132352c3132322c35362c32372c31372c3138312c3132362c38352c33362c3132302c3230392c3231322c36302c31312c3137342c3132352c35332c3230332c31392c3130382c3134312c3134392c3232392c3232362c3137382c3131342c3230362c3232362c302c3230322c3234392c3136392c3133322c3235302c35312c32302c35332c3231382c33392c32362c3231322c3231352c3138332c38342c3136382c3139342c3232332c3230352c3137312c35382c3138332c32342c3234382c3131302c3232362c3232362c3135362c3138352c39322c36312c3131332c37312c3230352c3130372c372c35322c3130372c3138332c3139392c32382c39352c3138392c3133392c3230342c3234392c37315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31332c3136362c36392c312c332c3139372c3235312c3132322c3137372c37362c3230322c3130362c32372c32322c35332c382c3130302c3230362c37302c3230382c3133362c3232332c35372c35322c3132372c3235332c3131322c3232372c3134342c32342c3135312c3131385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "eb3e75d3930ad7f96c392523919d8b3c3cce2a17664ed2d67fba64bb6cf94820", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137332c3136392c31302c35382c3138362c3130312c3134342c3137312c3233372c3135312c3139352c31322c3230312c32312c34382c3234392c38312c3233362c3136312c38382c31382c3136362c38322c3135392c3131332c3134322c332c3231332c3131372c39382c36372c3134382c3139302c33352c37372c36382c31372c3139362c32302c38302c33332c3134352c37342c3137332c3139382c3131342c3131382c36335d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c392c31302c31312c31322c31342c31352c31362c31372c31392c32302c32312c32322c32332c32342c32352c32372c33302c33332c33352c33362c33372c33382c33392c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35332c35342c35352c35372c35382c35392c36302c36312c36322c36332c36342c36352c36382c36392c37312c37332c37342c37352c37372c37382c37392c38312c38322c38332c38352c38362c38382c39322c39332c39342c39362c39372c39382c39392c3130302c3130325d2c227369676e65725f696e646578223a307d2c5b5b3134312c3232302c3133372c362c3131362c3232322c38362c33342c38302c37372c3136392c3136352c37342c31382c32312c36332c32352c38342c34302c33362c3133342c3134342c342c37392c3232382c3133372c3130382c3136372c3138352c31342c3139312c3135382c3233392c3133372c3134322c39302c3230392c34382c35342c3138322c34392c3230332c3133302c3132342c3233332c3130342c3136382c32302c31362c34322c3137362c3231302c3136392c37382c3134352c3233372c32372c3130322c3230302c3230392c3133352c342c37302c3131312c3235302c3130312c3138322c32382c3133362c3135382c33372c33362c3132332c3133332c33312c3231362c31302c3233312c3234392c3233362c38392c38302c37332c3233372c3139362c3137302c3233372c382c3131342c34392c3131342c3230302c3139322c3235332c36332c3233315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131392c332c38302c3234342c322c37342c32382c3234352c32302c39382c3132332c3234362c34342c3135332c36352c3134352c32352c3133352c38322c32342c36312c3132362c35302c3135382c3131342c31372c34372c3136302c3233392c3132322c33312c385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "be1b94ed76fd39ff0e01277650a989abb0f12457d980a06bfb2866bcaf94de18": { - "hash": "be1b94ed76fd39ff0e01277650a989abb0f12457d980a06bfb2866bcaf94de18", - "previous_hash": "7d8ad90cfa2289b90a4a153a6660bb77f08a1ae11297f4c1a8fe848674a47217", - "epoch": 17, + "d3da763f3e1bf078031419394c6f81415096f89094794df38bab1694806cddec": { + "hash": "d3da763f3e1bf078031419394c6f81415096f89094794df38bab1694806cddec", + "previous_hash": "8b099770c556da485b1798e07af0722b2174e57aa8c668c276460a6c121d9317", + "epoch": 11, "signed_entity_type": { "CardanoDatabase": { - "epoch": 17, - "immutable_file_number": 4 + "epoch": 11, + "immutable_file_number": 2 } }, "metadata": { @@ -1422,35 +1669,35 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:37.070525949Z", - "sealed_at": "2026-03-13T08:42:37.201123395Z", + "initiated_at": "2026-04-08T08:02:10.060149707Z", + "sealed_at": "2026-04-08T08:02:10.191604784Z", "signers": [ { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135302c36362c3232352c3133352c35352c3138342c3133332c37302c3139302c3232332c3132392c3235352c38392c3234382c3136312c32392c3130302c3233382c35392c38312c3138342c3234362c3130342c33332c33342c36342c3231372c3234332c3139362c32382c3231362c37335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131362c34362c34352c3138362c322c3138332c3136302c36302c37372c3136332c39362c3133322c3139382c36312c3131392c3133302c39352c3136352c3235312c34342c3131302c3230382c3234302c34322c34342c3234312c3131372c39342c32362c34332c3232312c3133315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "17", - "cardano_database_merkle_root": "91381531385f9b95ca544297c9ee75010615661f720c117b0a0df24db19bf683" + "current_epoch": "11", + "cardano_database_merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04" } }, - "signed_message": "bc7c19dd3800759941d4b18667aa346c6e1cac9bc2cba8e1cd6f898ada11d560", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3132302c3235312c3232302c3139392c3232352c3135332c35372c36322c3235312c32372c36392c3130332c36302c34362c3230372c33352c38372c3136372c3233312c36312c3231382c3139352c35322c3139392c39382c3130382c3233362c3233332c3130352c3138322c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133332c3232362c3231312c3139392c362c3134382c3130302c3132392c3130362c312c3130362c3233332c3139392c3134332c38372c39382c3133342c322c39322c3134362c3231302c37372c3138382c3135372c3231362c37362c38302c37392c3137372c352c34342c3137312c35372c3135362c3136352c3130322c33302c372c3136302c3136362c3130372c35382c3235302c3136362c3134382c3234302c3130392c3132385d2c22696e6465786573223a5b302c312c322c342c352c372c382c31302c31312c31322c31342c31362c31372c31382c31392c32312c32342c32362c32372c32392c33302c33312c33322c33332c33352c33362c33372c33382c33392c34302c34322c34332c34352c34362c34372c34382c34392c35302c35312c35322c35342c35352c35362c35372c35392c36302c36312c36322c36332c36342c36352c36372c36382c36392c37302c37312c37322c37352c37372c37382c38322c38332c38342c38352c38362c38372c38392c39302c39312c39332c39342c39352c39362c39372c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3137372c37302c3230332c34382c3136382c3131382c3137392c3233372c3132352c3134372c3233322c3132372c39392c3131322c3134312c3133372c33312c32382c3131312c3137312c3137332c33382c3130392c3135332c3136372c3234342c3234342c31362c36302c3234312c3137392c32392c3232372c3234332c3235312c312c33312c3232382c3234352c3138342c3134372c3132312c32352c33362c38362c3136362c3133312c36362c302c3135332c3138362c39302c3139382c37352c3133352c34392c3137332c3230382c3235302c31302c3130372c32382c38342c3231362c3136342c39352c37372c39362c3134312c3134372c39322c3139342c38352c3132302c3131342c37382c36302c3235332c3232352c39342c3135302c35302c3234352c3138392c3130302c312c3234302c32352c3134392c33382c31382c38382c3233352c38332c31312c3230395d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233382c3136312c3133362c3138342c38372c31342c3136342c3130332c3136322c36342c3136312c3135382c3138322c3231312c3130312c3232332c392c3231352c37302c3232372c36302c35372c3131352c3136322c35352c3135362c33302c3131322c3135322c3232352c3232322c39395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "6b3159ab420dd5a07e333ffb89bcf9f41eb538a79c43248ad90fa8cc7c77ab49", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c36382c3139362c32372c3231342c3230352c31352c36332c3232342c33312c3139322c3232362c39382c32392c31322c3131342c3130362c31302c3135362c3233332c33352c3232362c39372c3131362c3230372c3134392c3234342c3133332c3133342c33382c3232352c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134352c36362c3137372c3230362c3131302c36312c3133322c3233392c3235312c3233332c33392c32382c3131392c3137302c3138392c35312c3135312c32302c3136372c3232392c3130372c3230352c3131322c33352c38342c35332c3233342c3133382c3134362c31362c3138332c3135372c3137312c3138312c3132302c3132302c3136342c3134322c3234362c3231392c3130342c3234302c34342c33392c362c31392c3232302c3130365d2c22696e6465786573223a5b302c312c332c342c372c382c392c31302c31312c31322c31332c31342c31362c31372c31382c31392c32312c32322c32332c32342c32362c32372c32382c32392c33312c33322c33332c33362c33372c33392c34302c34322c34332c34342c34352c34362c34372c34392c35302c35312c35332c35342c35362c35382c35392c36302c36322c36332c36342c36352c36372c36382c36392c37302c37312c37322c37332c37342c37362c37372c37392c38322c38332c38342c38352c38362c38372c38382c38392c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3132392c39372c382c3233302c3130372c3234322c3134302c3230302c34322c3136372c3138362c3134312c3230372c3133382c3137362c3136372c37302c34332c34392c3135392c35352c3231322c3133342c3232382c35382c3233382c32392c37352c32362c3134332c3131392c3137302c3135352c3135392c3131392c3134342c36302c3136392c34332c3138342c35352c3230382c3233392c3135312c33312c3231312c3133382c3139382c342c3135332c312c36342c3135312c3233362c34382c34342c3132372c3130322c31312c3233302c3234352c32322c3138322c38392c3232392c3132352c3130322c3134362c3131382c3139382c32362c37382c31322c31332c36392c35332c3139312c33392c3234342c3233312c35342c3131352c3132392c3139322c37332c3232392c312c31372c3132342c3132372c31372c312c322c36362c3233342c3139325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234312c3131392c3232392c3135362c31352c3136352c36322c39362c31362c3130332c3131352c3133332c38372c302c3132392c35342c39312c312c3136302c39342c3134392c3137322c3136372c37362c3138352c3134322c3139352c3132372c3139322c32312c37372c3232345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "c23fca694e18b1e6e3cec34e36bbb36e452ea8434c0215d370287056db52a67b": { - "hash": "c23fca694e18b1e6e3cec34e36bbb36e452ea8434c0215d370287056db52a67b", - "previous_hash": "7d8ad90cfa2289b90a4a153a6660bb77f08a1ae11297f4c1a8fe848674a47217", + "d94bac35c8a7714af1a847330bd52ce8fb16cab8e7a95830187ce922c7840f68": { + "hash": "d94bac35c8a7714af1a847330bd52ce8fb16cab8e7a95830187ce922c7840f68", + "previous_hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", "epoch": 17, "signed_entity_type": { "CardanoImmutableFilesFull": { @@ -1466,38 +1713,42 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:36.820997506Z", - "sealed_at": "2026-03-13T08:42:36.953311603Z", + "initiated_at": "2026-04-08T08:02:27.931401335Z", + "sealed_at": "2026-04-08T08:02:28.071838272Z", "signers": [ { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "d2b0fabc7be2892008d3b4e6c1a30bb3773cf82337179f241f64e54bc3a5739b", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135302c36362c3232352c3133352c35352c3138342c3133332c37302c3139302c3232332c3132392c3235352c38392c3234382c3136312c32392c3130302c3233382c35392c38312c3138342c3234362c3130342c33332c33342c36342c3231372c3234332c3139362c32382c3231362c37335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "d60da3b743243914e1df9a73d3c5f16bb65a4d17254fba631b64ab0752c606f7", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", "current_epoch": "17" } }, - "signed_message": "3635fab6fa348b35bb9ba5ac88e04401dce5338a8e076d5e68d35241754004e2", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3132302c3235312c3232302c3139392c3232352c3135332c35372c36322c3235312c32372c36392c3130332c36302c34362c3230372c33352c38372c3136372c3233312c36312c3231382c3139352c35322c3139392c39382c3130382c3233362c3233332c3130352c3138322c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c3136352c3231392c3132322c36302c3138372c3137352c33302c3134372c35392c3233322c3230382c3136372c3130352c3232342c33372c3234312c37312c3135362c3132372c35312c3235352c3138392c34332c3230302c3134372c3135352c3136342c37352c3230342c3232392c3133302c36352c3131302c39322c3230342c3131312c3131312c32392c37302c3230372c36312c32342c39342c39382c3136372c3134392c3234305d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34372c34392c35302c35312c35322c35332c35352c35392c36312c36332c36342c36372c36382c36392c37312c37322c37332c37342c37352c37382c38302c38312c38322c38342c38352c38362c38372c38382c39302c39312c39322c39332c39342c39352c39362c39372c39382c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138352c3132362c3137392c34322c39342c382c3231312c3230342c3230352c3134382c34322c39372c3135372c3235332c37332c38382c3232352c3234382c3138382c33302c3133332c39302c31352c3230392c3137342c38332c3134342c38352c3130322c32362c32322c3136352c31392c33372c32352c32342c3136302c3137342c3134302c32322c3139342c3230382c3134342c3131322c39392c35352c31362c342c32342c36382c34322c3139302c3134362c3139352c3133382c36372c39302c3137302c38372c32342c38332c34372c3234312c34312c39322c38392c3130352c3231322c3234352c3136332c3136332c32362c34312c39302c3234362c3139312c39302c32392c3134352c372c3230312c3231382c3134322c35382c33332c3232342c31342c3233332c3130382c3136332c3230392c31342c37362c31372c38362c3139385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233382c3133342c33322c33342c31392c31372c3132362c39352c302c372c38372c3137352c33362c3131372c3234332c3134342c3132332c38382c3233382c3230392c3135322c3134302c39382c3139312c3131352c35342c35312c37322c32392c3135392c35342c3138365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "736e1c8fbf8a6c28efe475379ed73afc8c3a39ddb700da4e3d275b81536d1209", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c3139382c31362c3134312c3233392c3139352c33302c3132362c36352c38302c3232352c34382c3137382c3233392c36322c3234352c35302c3234372c3132322c3134372c32302c34302c37322c37382c3234362c3138382c3133362c3230332c33302c3134382c3136312c34352c3135332c3133372c3132372c3130332c3132302c3230372c3231352c37392c3232302c33352c36322c35382c3231302c3134362c31302c37385d2c22696e6465786573223a5b302c322c332c342c352c362c372c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32362c32372c32382c33302c33312c33322c33342c33352c33362c33372c33382c34302c34332c34342c34352c34362c34372c34382c34392c35302c35342c35352c35362c35372c35392c36312c36322c36332c36342c36352c36362c36372c36382c37302c37322c37342c37352c37362c37372c37382c37392c38302c38322c38332c38342c38362c38382c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133382c3230322c3233302c332c3136362c36382c3138332c3232302c32302c382c3230352c3130362c3233322c3232382c3234302c3130382c38302c3131342c38342c3135342c35342c3233322c39342c3137302c38372c3132302c3138312c39392c3131342c3139372c3133342c34322c36392c36342c3137362c3134392c3230322c3138302c37332c3135332c38382c3135392c3137342c35302c3137362c3135372c36362c3139362c322c3131342c35352c3232362c35372c31372c39352c3232302c32322c35322c3233322c33392c3230302c3230392c3130302c3234342c3131332c37342c37352c3139302c3133312c3135382c3130392c352c3137312c392c3135382c3232332c3133372c35342c38332c3138342c3234342c3234362c37392c3136312c3133342c3230372c35302c35322c3235302c3131332c3138362c3138322c3230352c382c3234352c36305d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132302c3131302c34382c3133312c3230332c3234312c3233342c312c35352c3139392c31342c31312c31302c38392c3233362c342c32382c3138382c35322c33302c3139372c3235312c32312c3135312c3134322c3134312c3136382c3138392c3233322c3136352c39392c3138395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "c8c9cb1b140f17d0b0cb115a6e673fb80bb1547a4fc97840ac96c1cdadd5e8a2": { - "hash": "c8c9cb1b140f17d0b0cb115a6e673fb80bb1547a4fc97840ac96c1cdadd5e8a2", - "previous_hash": "1c4aa48489936100fb4decb172641cb28599792ffe78103917d3844c98866e8a", - "epoch": 16, + "e3d280143c9b4364a34cdc69131c2c2e85779fa830f4a8a08ced9cf92cbe4e33": { + "hash": "e3d280143c9b4364a34cdc69131c2c2e85779fa830f4a8a08ced9cf92cbe4e33", + "previous_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "epoch": 15, "signed_entity_type": { - "CardanoStakeDistribution": 15 + "CardanoBlocksTransactions": [ + 15, + 464, + 1 + ] }, "metadata": { "network": "devnet", @@ -1507,41 +1758,42 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:33.568111198Z", - "sealed_at": "2026-03-13T08:42:33.702233016Z", + "initiated_at": "2026-04-08T08:02:23.055543344Z", + "sealed_at": "2026-04-08T08:02:23.189734758Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3132302c3235312c3232302c3139392c3232352c3135332c35372c36322c3235312c32372c36392c3130332c36302c34362c3230372c33352c38372c3136372c3233312c36312c3231382c3139352c35322c3139392c39382c3130382c3233362c3233332c3130352c3138322c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_blocks_transactions_merkle_root": "ce70d091af27bef03f7b9c4eaf87393c265490f7cf97b6505d3fbe60c9ac342f", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "16", - "cardano_stake_distribution_epoch": "15", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "15", + "latest_block_number": "464", + "cardano_blocks_transactions_block_number_offset": "1" } }, - "signed_message": "271e155c445b36f6ad5ee97a76343a16cd82c601668e1dcd502af8b664b0b1fe", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35392c3138392c3132322c352c3137332c36312c39302c3139362c3132372c35372c35312c3230372c3230362c3139322c33392c3230302c38332c3234332c3235312c3235302c3231372c37332c33322c3132322c3233312c332c3232322c3136332c3235322c3235302c32312c3130335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134352c3132382c3234312c39362c3133372c32352c3131302c32312c3133382c32352c34322c3130322c34372c3137342c312c3132352c33382c3134342c3231332c3233302c36352c3233332c3131342c3234392c36302c31302c3233332c3131352c38312c3230352c33382c3139362c36362c3232362c33372c3137302c3130342c3137382c32332c35322c3136342c37372c31302c39352c32392c38352c3234352c37355d2c22696e6465786573223a5b302c312c342c352c362c382c392c31302c31312c31322c31332c31342c31352c31372c31392c32302c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c34312c34322c34332c34342c34372c34382c34392c35302c35312c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c38302c38312c38322c38342c38352c38362c38372c38392c39302c39312c39322c39332c39352c39372c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137302c3132352c3139312c3232352c3234392c38362c37382c3230342c3133382c3233332c3232392c3135302c3136322c3234342c3136382c3136352c3235352c3233352c3231382c31312c37382c3130302c34302c36312c312c39302c3233372c3134362c38302c3132342c3138322c3139372c34372c3232332c3235332c35382c3233362c37312c37352c37392c39382c3135392c32332c3234302c3139382c39322c3138312c3133332c302c3231362c3230312c3130322c3234362c3233332c3136302c3133362c3130352c3132322c3130342c32392c3132322c3135392c39312c3130332c38392c3232352c3136332c3234372c36362c302c35372c35312c3233302c3136302c36302c3135372c32382c3131352c3136332c3231392c3133352c3233362c332c3133332c3133342c3230312c3234302c32322c3130312c34372c3230382c32302c3233372c3134332c3135302c3232395d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233342c3132332c3230382c37362c35382c3231322c3135302c3139342c3130302c3130372c32332c33332c3131362c3139312c3136332c3135352c3138372c3137312c3234372c38312c33302c3234332c3138302c3234392c3139382c3132362c32322c32302c33332c34392c38392c32375d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "043bfe07d5c25751ce3a0db5e2f4cbffc4ad9aab3fdb844228bb6bc69b73490a", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31392c3130392c3131382c34382c39312c3135392c3231352c3139362c3137362c3232312c3131382c3230322c3234322c35382c3131392c33332c34342c3234382c31332c3138372c3232342c3233372c3132322c32372c39332c3232302c312c3139372c33382c31392c35382c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132382c3233352c32362c37392c3233362c362c32322c36392c3233372c3235352c3132302c39302c3231342c36342c332c3136372c32322c3235312c3133382c33392c3137382c3234322c3234382c3136372c3231372c3133362c3136342c3234302c3130322c32322c3233322c3137362c3139352c3135322c37382c36312c3230312c36382c38352c312c3139342c312c3135332c3232322c3133322c3230362c3134392c3134395d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32342c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33382c33392c34302c34312c34322c34342c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36362c36382c36392c37312c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38392c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3136372c3131302c33392c3133332c33352c38302c31302c3232392c392c3132312c39392c3235352c34382c3232332c3131342c3234362c342c36302c3139362c3132362c3135342c3233372c35302c3135312c3133382c3130362c36332c3234322c382c3132302c3233342c35362c3130312c33322c36342c3137302c39312c3232372c32382c3137322c3136362c3131332c38312c3139372c31342c3231312c36302c3232362c352c3232342c3235342c3130322c35332c39392c3133372c3233392c3231392c31352c3231392c32382c3139332c3135362c3235342c3233332c3233382c3234322c3135382c3135302c3133332c3131352c34302c3136302c3139352c3133352c3134372c3137392c3135302c33342c3232322c36302c35372c3233342c3134302c3138322c3234362c32332c37342c32332c3135342c3137382c3133372c3130332c3137322c3139302c3139382c31385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132342c3134322c3131322c3136342c31362c3134312c38332c3133342c3139392c32362c3130382c3233312c37352c37372c3231342c32352c3130342c3137372c32342c3131372c3130332c3234382c35322c38332c31362c38362c39372c3230312c3134302c38312c3130342c3231365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "dfff7288d911f52422e7315b979191ccf74f736017ad7fc9741e4225c4e62482": { - "hash": "dfff7288d911f52422e7315b979191ccf74f736017ad7fc9741e4225c4e62482", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "e4f2f1407aa06ec9b7964c04f6729003a5209864d65701cb6dcc6c50e1469c02": { + "hash": "e4f2f1407aa06ec9b7964c04f6729003a5209864d65701cb6dcc6c50e1469c02", + "previous_hash": "c61b0881d91dd098da5083d1e01746ba6a50e88880655bac4d76b6a4c3f052a1", + "epoch": 12, "signed_entity_type": { - "CardanoDatabase": { - "epoch": 20, - "immutable_file_number": 5 + "CardanoImmutableFilesFull": { + "epoch": 12, + "immutable_file_number": 2 } }, "metadata": { @@ -1552,38 +1804,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:46.320213073Z", - "sealed_at": "2026-03-13T08:42:46.451316918Z", + "initiated_at": "2026-04-08T08:02:12.800950998Z", + "sealed_at": "2026-04-08T08:02:12.941103094Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "snapshot_digest": "dd5bb5e8e41e81627b8e6b845d5e8fa56d21321393b5a5ca763764be106a91bf", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20", - "cardano_database_merkle_root": "e58b676fca352bed71c6d5b871e0d6309010c0cc02d095279e00446e334fd1bb" + "current_epoch": "12" } }, - "signed_message": "6831c876b585cfbc314918d9df348593e56be9a2689311622fb2cef1bc66e874", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134362c3139392c3137382c3232362c32382c3130372c38382c3135322c31302c31322c3138372c3133382c35352c37302c39312c33352c3137372c3131362c3133352c31332c34392c36382c3133362c3135312c3232372c34342c3231332c3136392c38332c3231342c35372c3231362c3130382c37382c3136382c3135302c3234312c33322c36342c31332c3136312c3235332c3131342c39302c382c3133312c3137322c3139335d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31322c31332c31342c31352c31362c31382c31392c32302c32332c32342c32352c32382c32392c33312c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34352c34362c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36312c36322c36332c36342c36362c36372c36382c36392c37312c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134302c35352c3130352c34352c3135332c3233362c3134332c3132392c3233342c35322c3232392c3232362c3137352c37342c3131322c32392c3138322c34342c3132302c3131342c35382c32342c302c33332c3234302c3138372c31392c3232302c37332c3130392c33352c3231302c3230392c3234332c3235332c3232362c33342c3231312c3231392c342c36302c3130312c3230312c3233382c33342c39352c3138342c3230392c32332c39372c3230362c3234332c3231392c3130342c33392c3231342c34302c3132322c32302c38392c3234382c3136372c322c3133392c3132352c3139362c3234342c3230312c35302c34302c34322c39382c3138302c362c37332c32392c3135342c3131312c3132332c31332c3139392c36362c38392c392c34372c3132382c39382c3136322c3136302c3134322c32312c322c33342c3232352c3136332c3137335d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c3132342c3234322c3235322c3234352c3135342c36392c3231302c3133352c3234302c3134372c3138302c3233332c34392c3135382c3131302c35312c3138322c36382c3134332c39312c342c3233342c31302c3233392c34372c3136372c3134372c3234362c3137312c31352c3231325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "1dcc3adbd5693e385a3488899b15f4738f9228d7b867e34da0f16f4165295bc3", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131362c34362c34352c3138362c322c3138332c3136302c36302c37372c3136332c39362c3133322c3139382c36312c3131392c3133302c39352c3136352c3235312c34342c3131302c3230382c3234302c34322c34342c3234312c3131372c39342c32362c34332c3232312c3133315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133342c302c3139382c35372c34322c3232372c3139352c3132382c3139392c3139342c3232312c3135392c3131362c34392c33322c33352c3233382c3230352c3234372c38322c32382c39332c38332c37342c3139362c3233322c33372c3137392c34392c3131312c3131382c37352c32392c3135312c3132352c312c372c3135312c39352c34372c3139352c3137302c38332c3230322c3230322c3131372c3131352c34375d2c22696e6465786573223a5b302c322c342c352c362c372c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32322c32332c32342c32362c32372c32382c32392c33302c33312c33322c33352c33362c33372c33382c33392c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36322c36342c36362c36382c36392c37302c37312c37332c37352c37362c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39312c39322c39342c39362c39382c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138312c3137352c3233352c3234332c3130342c36312c36392c3137342c3133382c3138392c3233312c3134322c3133302c32332c3130312c3132302c3131322c35372c3133332c3130382c3130362c3131392c37342c3131322c3132342c36352c38352c3138352c3137322c3135372c38392c3132322c38302c3135322c3131302c3230312c35322c37362c3134322c32342c3139332c3230382c3132342c3135362c32362c3230312c36392c3234302c32302c38322c36372c37302c3133332c3132352c3234302c3232372c39342c3136372c3132372c3131342c3234392c3131302c34372c33342c3232382c3135362c39342c3137302c3230392c3234312c3232322c37362c35312c3131392c3130392c3230322c3137382c32342c36392c3131372c3232382c34362c3131392c3135322c36372c35332c38352c32342c3233362c35392c35322c3139342c33342c3135332c362c3230315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31362c3231302c3133392c3230342c3137392c3230302c33372c3230372c3138342c3133312c3139382c33312c34382c3135392c38342c3233352c3234372c3139352c3134382c38392c3134342c3139322c3130352c3138382c3230342c3137332c35352c3137342c3131372c39312c37362c3130335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332": { - "hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 21, + "e77c90fe8e6f5840f53adb328e9e0cebcdbfc177097820ca648ea5a70a2fe23c": { + "hash": "e77c90fe8e6f5840f53adb328e9e0cebcdbfc177097820ca648ea5a70a2fe23c", + "previous_hash": "8b099770c556da485b1798e07af0722b2174e57aa8c668c276460a6c121d9317", + "epoch": 11, "signed_entity_type": { - "MithrilStakeDistribution": 21 + "CardanoStakeDistribution": 10 }, "metadata": { "network": "devnet", @@ -1593,39 +1845,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:48.317134266Z", - "sealed_at": "2026-03-13T08:42:48.451602039Z", + "initiated_at": "2026-04-08T08:02:09.565256652Z", + "sealed_at": "2026-04-08T08:02:09.701345347Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134322c3230352c3137382c3232372c3232392c31352c35352c3133322c3137372c3135352c3130352c3133362c3233312c34302c3234392c38332c38342c31342c31352c39392c32392c3139362c39352c3232322c3230312c36312c31332c3231312c32372c352c3131302c32305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131362c34362c34352c3138362c322c3138332c3136302c36302c37372c3136332c39362c3133322c3139382c36312c3131392c3133302c39352c3136352c3235312c34342c3131302c3230382c3234302c34322c34342c3234312c3131372c39342c32362c34332c3232312c3133315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "21" + "current_epoch": "11", + "cardano_stake_distribution_epoch": "10", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "909589854b9fc0e32b8c029e8720e8cb361f964f94c27733a0fbed0e9d121cd9", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c3138382c36322c3139352c3135392c3230392c35392c32302c32362c3135302c3234312c3134352c3137392c3230312c3137362c3232382c3231312c3232352c3137392c38302c37342c302c322c34302c31342c3131302c36372c31342c3233322c3137382c37362c36312c342c3137342c31352c3137352c342c37372c31312c3233362c3135332c37382c3133332c3132392c31352c3230362c372c3131355d2c22696e6465786573223a5b302c322c332c352c362c372c382c392c31312c31332c31342c31352c31362c31372c31382c31392c32302c32312c32342c32362c32372c32382c33322c33332c33342c33352c33362c33372c33392c34362c34382c34392c35302c35312c35322c35382c35392c36302c36312c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37362c37382c37392c38302c38312c38322c38332c38362c38392c39302c39322c39332c39362c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3135322c3139302c3133322c3232332c3133362c38352c35382c3138302c3133312c32322c3131322c3231382c3137372c34372c39372c38342c3233302c3231302c39302c37342c34322c3138392c33322c33382c3233312c3230342c3131302c3234342c3139342c3233342c3233382c3133312c3132302c3232302c32352c37342c3136322c33342c3137392c3136312c38322c3133382c34342c37362c3133352c3233322c3136332c3235302c32322c34392c3133312c3230352c3132312c3230382c3139312c3136332c3133342c39362c3137332c33332c3131352c3137372c3230372c3131302c36392c3230302c3231392c3137382c3132392c39362c3136382c3136322c31362c3139312c36342c3132312c3135362c3233382c35312c3130302c38362c3139372c3132332c3139382c3137352c3233312c3233362c3131332c35342c37392c3233312c34322c34392c3232302c3139332c37325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134352c3130312c34362c3130312c3137352c3139392c3138362c3134302c39332c3231372c3137352c3137392c372c3138322c35372c3132392c3132312c3130352c32362c37342c3135382c3134392c3131362c35312c3135372c33332c36332c3137312c3230312c3130342c37362c34305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "05052d4f393e9783347bef5aab7d2eb333ccaaec17026ebb20a49d1f403424d6", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c36382c3139362c32372c3231342c3230352c31352c36332c3232342c33312c3139322c3232362c39382c32392c31322c3131342c3130362c31302c3135362c3233332c33352c3232362c39372c3131362c3230372c3134392c3234342c3133332c3133342c33382c3232352c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135332c3130362c3137332c3232382c32322c3230362c3130342c35352c3130332c32352c3139372c3134362c3232322c38342c3132392c3232352c31302c33322c37362c3134342c302c3133362c3134322c36322c37362c3235302c32332c37342c35342c39342c352c3234302c3137302c3233332c3135392c32352c3133322c36322c3139332c37332c38342c3130312c3234342c3138382c3235332c31382c3134392c32305d2c22696e6465786573223a5b302c312c322c332c352c362c382c392c31302c31312c31322c31332c31342c31352c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32392c33312c33332c33352c33372c33382c33392c34302c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35332c35362c35382c35392c36302c36312c36322c36342c36352c36372c36392c37302c37312c37322c37332c37352c37362c37372c37392c38302c38312c38362c38382c38392c39312c39322c39332c39342c39352c39362c39372c39382c3130302c3130312c3130325d2c227369676e65725f696e646578223a307d2c5b5b3132392c39372c382c3233302c3130372c3234322c3134302c3230302c34322c3136372c3138362c3134312c3230372c3133382c3137362c3136372c37302c34332c34392c3135392c35352c3231322c3133342c3232382c35382c3233382c32392c37352c32362c3134332c3131392c3137302c3135352c3135392c3131392c3134342c36302c3136392c34332c3138342c35352c3230382c3233392c3135312c33312c3231312c3133382c3139382c342c3135332c312c36342c3135312c3233362c34382c34342c3132372c3130322c31312c3233302c3234352c32322c3138322c38392c3232392c3132352c3130322c3134362c3131382c3139382c32362c37382c31322c31332c36392c35332c3139312c33392c3234342c3233312c35342c3131352c3132392c3139322c37332c3232392c312c31372c3132342c3132372c31372c312c322c36362c3233342c3139325d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234312c3131392c3232392c3135362c31352c3136352c36322c39362c31362c3130332c3131352c3133332c38372c302c3132392c35342c39312c312c3136302c39342c3134392c3137322c3136372c37362c3138352c3134322c3139352c3132372c3139322c32312c37372c3232345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "f6bcde660bb71204ccceb58560a3eb8cb2d9753e494f19a4400d6090713117a1": { - "hash": "f6bcde660bb71204ccceb58560a3eb8cb2d9753e494f19a4400d6090713117a1", - "previous_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "epoch": 19, + "f00a3f5039195c81d3f9a47c566cdc549264b000287007f38fcf2a0b9d940d99": { + "hash": "f00a3f5039195c81d3f9a47c566cdc549264b000287007f38fcf2a0b9d940d99", + "previous_hash": "c61b0881d91dd098da5083d1e01746ba6a50e88880655bac4d76b6a4c3f052a1", + "epoch": 12, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "epoch": 19, - "immutable_file_number": 4 + "CardanoDatabase": { + "epoch": 12, + "immutable_file_number": 2 } }, "metadata": { @@ -1636,41 +1890,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:42.820345869Z", - "sealed_at": "2026-03-13T08:42:42.956848314Z", + "initiated_at": "2026-04-08T08:02:13.057856993Z", + "sealed_at": "2026-04-08T08:02:13.188743870Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "91a65d54351c6e9f6df3cd15c0364f59a686a68b460667cbcc58b16ca6346b95", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32372c3232342c39302c39352c33342c3136362c3132352c35332c38312c3138352c3130322c3134322c3231312c3136332c3137322c3136372c3234322c302c322c3230332c38312c36322c38332c36312c36392c38362c3139332c33382c3138322c3231392c3134302c36325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "19" + "current_epoch": "12", + "cardano_database_merkle_root": "9bdd61c0d8ead4c377d05be215fcd490e70648d09ec0121c024f765049983c04" } }, - "signed_message": "628eb270f92c30f0c4b02b7252af9e12d84aff80e7300a483ce8186e2b180e64", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b32382c33382c3130372c31332c3231382c3132392c3139312c3135382c3136302c3132302c39332c39312c3231392c3130332c3232312c34302c3134312c38332c31352c3234342c3231392c3233372c32362c3132362c3130312c3137312c3133382c3132362c3136382c37382c3134332c3139345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3235342c3231312c33342c3232322c3133362c3133302c3232372c3135382c322c37302c3232342c3133312c3230332c3232332c37352c322c3232372c32362c33342c392c3133322c3131302c3231392c3138342c3135302c33392c3135392c3231332c36302c302c3233332c3232322c33362c3230332c38382c3235302c3136392c3133382c37362c312c312c34362c3230332c3233342c3139392c3232372c36325d2c22696e6465786573223a5b302c312c322c362c31302c31312c31372c31382c32312c32332c32342c32352c32362c32382c33302c33312c33332c33342c33382c33392c34302c34322c34332c34342c34352c34362c34372c34382c34392c35322c35332c35342c35352c35362c35372c35382c36302c36312c36322c36332c36352c36362c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38312c38322c38332c38342c38352c38362c38382c38392c39312c39322c39332c39342c39362c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3136392c3136302c3136322c3234392c36392c332c3139302c36332c3235352c3130382c31362c3134382c3231312c35302c32322c34382c3137322c3230342c35342c3133332c3132352c3132322c35362c32372c31372c3138312c3132362c38352c33362c3132302c3230392c3231322c36302c31312c3137342c3132352c35332c3230332c31392c3130382c3134312c3134392c3232392c3232362c3137382c3131342c3230362c3232362c302c3230322c3234392c3136392c3133322c3235302c35312c32302c35332c3231382c33392c32362c3231322c3231352c3138332c38342c3136382c3139342c3232332c3230352c3137312c35382c3138332c32342c3234382c3131302c3232362c3232362c3135362c3138352c39322c36312c3131332c37312c3230352c3130372c372c35322c3130372c3138332c3139392c32382c39352c3138392c3133392c3230342c3234392c37315d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31332c3136362c36392c312c332c3139372c3235312c3132322c3137372c37362c3230322c3130362c32372c32322c35332c382c3130302c3230362c37302c3230382c3133362c3232332c35372c35322c3132372c3235332c3131322c3232372c3134342c32342c3135312c3131385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "bacceba8d5f2e9c2e8e6afdfa71e6cc86196a5fb958937f5b0c1b68b8a6a28fa", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131362c34362c34352c3138362c322c3138332c3136302c36302c37372c3136332c39362c3133322c3139382c36312c3131392c3133302c39352c3136352c3235312c34342c3131302c3230382c3234302c34322c34342c3234312c3131372c39342c32362c34332c3232312c3133315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137332c31342c3133332c37372c32372c3137362c3130372c312c3232382c37322c32342c3233362c37362c3131372c3132362c302c392c31392c3235322c332c3130342c3231332c3139352c3131302c3137382c36312c34372c35312c3133392c3233352c3139302c38382c31342c3135312c35302c38302c33352c3133332c3130302c3234372c3231312c392c3134322c3235302c3134352c34352c3233382c34375d2c22696e6465786573223a5b302c332c352c362c372c382c392c31312c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32382c32392c33302c33312c33322c33352c33362c33382c33392c34312c34322c34332c34342c34352c34372c34382c34392c35302c35322c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36382c37302c37312c37342c37362c37392c38302c38312c38332c38342c38362c38372c38382c38392c39302c39322c39342c39352c39362c39372c39392c3130302c3130312c3130335d2c227369676e65725f696e646578223a307d2c5b5b3136332c3131322c38332c35372c3233372c3139322c33362c3131312c3139302c372c3132332c3131342c37332c3136372c39332c3233322c35372c3231362c3131392c38312c3230372c3139352c352c3130302c3233332c3231352c3231372c3233392c38362c3132352c3137362c3138302c3135302c3134382c3134372c372c35312c3139342c3234352c32322c3134382c3132352c39342c3134352c3137342c39312c3235342c3136362c322c36322c3136322c3231352c3135372c3137352c3231332c3235302c3233302c3231352c3235352c3232362c32362c3137392c39382c3139302c34312c34362c3233332c3134382c3133312c39332c3234332c3136372c3232322c3136392c33302c3233352c3134392c3138312c39322c3230342c3139352c32372c3234382c3136372c3133342c3130352c33342c3232362c35362c34362c3134332c35322c3137382c3235312c34312c39385d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3136322c38342c3134392c3231372c3132382c3232362c3131352c36322c3235312c3130332c3139302c37322c3134382c35382c3136322c3135322c3138322c3233322c3130322c35332c35382c3138342c3137312c3234392c3135332c37352c33362c3134342c31342c33312c3138372c3138325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "f74444221dd32e37435b8178d01d39ef42ab525e23022f854019f5e0bf5e8838": { - "hash": "f74444221dd32e37435b8178d01d39ef42ab525e23022f854019f5e0bf5e8838", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "f07c5c3ec905ddb20c360c38f1606c55efd4d5ec47da5479daa7a60aaedab944": { + "hash": "f07c5c3ec905ddb20c360c38f1606c55efd4d5ec47da5479daa7a60aaedab944", + "previous_hash": "9d6661d59afcb0e5647990604645f7bedc31c9e8daceb17f8a70af0e4a2eb273", + "epoch": 17, "signed_entity_type": { - "CardanoTransactions": [ - 20, - 614 - ] + "CardanoStakeDistribution": 16 }, "metadata": { "network": "devnet", @@ -1680,39 +1931,42 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:46.922305365Z", - "sealed_at": "2026-03-13T08:42:46.952678832Z", + "initiated_at": "2026-04-08T08:02:27.687256722Z", + "sealed_at": "2026-04-08T08:02:27.814821322Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34342c3137392c36342c35342c39302c3136372c3131312c3139342c3233362c3132352c362c3234322c3130382c3232332c3135332c3137302c3137322c33322c3137382c3134312c3231352c3234312c3233322c39372c3233382c3232332c302c36332c36382c3138362c3230332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20", - "latest_block_number": "614" + "current_epoch": "17", + "cardano_stake_distribution_epoch": "16", + "cardano_stake_distribution_merkle_root": "ba1bda7f96a4b3217c942abba0de5301766facee5b4b01bdcaf4c08e068bb506" } }, - "signed_message": "341faa41c4c22a1c7e0eb8fe788d81466860efdfb2e4504003f899abe946273d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133352c3234302c34342c3138332c342c3136362c38372c3230392c3231332c3230382c3139362c32352c3232312c35392c3234332c3136322c3135392c3130372c3232372c3136312c302c37332c3130382c31372c3132352c37362c3135352c3139302c3130342c3134352c3231302c3232372c34322c3139302c35382c39352c32362c35362c3133302c3234342c3130342c3232382c36382c3133352c33372c37302c3139362c3233325d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c32302c32332c32342c32352c32372c32382c32392c33302c33322c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35372c35392c36302c36312c36342c36362c36372c36382c36392c37302c37312c37322c37342c37382c38302c38312c38322c38342c38352c38372c38382c38392c39312c39342c39352c39362c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134302c35352c3130352c34352c3135332c3233362c3134332c3132392c3233342c35322c3232392c3232362c3137352c37342c3131322c32392c3138322c34342c3132302c3131342c35382c32342c302c33332c3234302c3138372c31392c3232302c37332c3130392c33352c3231302c3230392c3234332c3235332c3232362c33342c3231312c3231392c342c36302c3130312c3230312c3233382c33342c39352c3138342c3230392c32332c39372c3230362c3234332c3231392c3130342c33392c3231342c34302c3132322c32302c38392c3234382c3136372c322c3133392c3132352c3139362c3234342c3230312c35302c34302c34322c39382c3138302c362c37332c32392c3135342c3131312c3132332c31332c3139392c36362c38392c392c34372c3132382c39382c3136322c3136302c3134322c32312c322c33342c3232352c3136332c3137335d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c3132342c3234322c3235322c3234352c3135342c36392c3231302c3133352c3234302c3134372c3138302c3233332c34392c3135382c3131302c35312c3138322c36382c3134332c39312c342c3233342c31302c3233392c34372c3136372c3134372c3234362c3137312c31352c3231325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "1a2a0a3e3f02b1f41612d4c4a72375660322ee6b2d29b4441492909b86fb7b2f", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136332c32392c3137352c3138312c3132362c3130392c3132372c33312c37372c32372c3231312c3232352c38362c3230382c3134302c32352c332c342c3234312c3135342c3130312c36322c3139322c312c3132362c3133342c39372c3138352c3235322c3232382c36322c35322c37332c3233302c3133392c33362c3234372c302c3134392c3134312c3130382c3132352c3137382c3231372c36372c3134302c3133322c3235335d2c22696e6465786573223a5b302c312c322c332c342c362c372c382c392c31302c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33392c34302c34312c34322c34332c34342c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35382c35392c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38352c38372c38382c38392c39302c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133382c3230322c3233302c332c3136362c36382c3138332c3232302c32302c382c3230352c3130362c3233322c3232382c3234302c3130382c38302c3131342c38342c3135342c35342c3233322c39342c3137302c38372c3132302c3138312c39392c3131342c3139372c3133342c34322c36392c36342c3137362c3134392c3230322c3138302c37332c3135332c38382c3135392c3137342c35302c3137362c3135372c36362c3139362c322c3131342c35352c3232362c35372c31372c39352c3232302c32322c35322c3233322c33392c3230302c3230392c3130302c3234342c3131332c37342c37352c3139302c3133312c3135382c3130392c352c3137312c392c3135382c3232332c3133372c35342c38332c3138342c3234342c3234362c37392c3136312c3133342c3230372c35302c35322c3235302c3131332c3138362c3138322c3230352c382c3234352c36305d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132302c3131302c34382c3133312c3230332c3234312c3233342c312c35352c3139392c31342c31312c31302c38392c3233362c342c32382c3138382c35322c33302c3139372c3235312c32312c3135312c3134322c3134312c3136382c3138392c3233322c3136352c39392c3138395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "fb29c6dd8527914601072217ce2db9573c05ea5c485144c53f22f3713d021ce3": { - "hash": "fb29c6dd8527914601072217ce2db9573c05ea5c485144c53f22f3713d021ce3", - "previous_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "epoch": 20, + "f664ef08a4591bbaedb182fcb214bd298b0d47ffec4dcaf269c7adabc5abd4a0": { + "hash": "f664ef08a4591bbaedb182fcb214bd298b0d47ffec4dcaf269c7adabc5abd4a0", + "previous_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "epoch": 16, "signed_entity_type": { - "CardanoStakeDistribution": 19 + "CardanoTransactions": [ + 16, + 479 + ] }, "metadata": { "network": "devnet", @@ -1722,31 +1976,62 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2026-03-13T08:42:45.569181519Z", - "sealed_at": "2026-03-13T08:42:45.705183808Z", + "initiated_at": "2026-04-08T08:02:25.344858195Z", + "sealed_at": "2026-04-08T08:02:25.449502567Z", "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", "stake": 20000000001 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131392c3131392c34352c3234342c3131302c3138352c3138392c36342c3131342c3138312c3131362c3230372c3132302c32312c33342c39352c39352c3131392c3131372c3137362c3137312c3131312c38352c3138302c3230352c3133352c33312c3131302c3132362c3232332c3138312c34365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "cardano_transactions_merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33342c3235352c3131362c35372c3235312c32322c3134342c3139362c3138372c3235342c3139362c3132372c3137362c3134332c3136382c3133392c3234332c3130392c33342c33322c38382c3231342c3131302c34352c33382c3231382c3230382c3130322c38342c3132372c32372c3232305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", - "current_epoch": "20", - "cardano_stake_distribution_epoch": "19", - "cardano_stake_distribution_merkle_root": "7c1a7bf3e9d6a2fae1dd8acef675e77ba34c932482a27e58186d82627a85cc2e" + "current_epoch": "16", + "latest_block_number": "479" } }, - "signed_message": "35b22b899be47ade3dc0e4ef804fb0b481de1cbd9ea1b517cc203525beab8be1", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231362c36392c3131382c3235302c36322c38392c3235302c3134332c3139312c36352c3132372c35302c3130312c3234362c3133342c34362c37332c3231312c362c3230322c3137382c38352c3130372c3136332c3137322c3133342c3137362c3232332c39362c3235332c3139312c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133332c3131312c3230332c3138312c3131392c33302c34372c3234372c3132392c35322c33332c3131332c35382c3136372c3233352c3138302c3137332c342c322c3233302c3231342c39322c3230352c36322c3230362c3232332c3131302c3130342c3138332c32312c39322c3232322c3132322c3130372c3137322c33322c36392c36332c3136352c35302c3133312c31312c3136342c35312c3230372c3138392c3136342c39355d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33312c33332c33352c33362c33372c34302c34312c34322c34332c34342c34362c34372c34382c34392c35302c35312c35322c35342c35352c35372c35392c36302c36322c36342c36362c36392c37302c37312c37322c37332c37342c37352c37362c37372c37392c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39332c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137362c38352c3132332c37312c31392c32322c3139352c31382c3138302c3131332c33342c3230372c3133372c342c3230312c3230312c37332c3137332c35312c3134322c3139342c3233312c3234392c3135332c3134362c36382c34382c3132302c37342c39362c31372c39322c37382c36322c3133362c312c3230382c32342c3234382c38392c3137302c3139302c3139352c3130362c3232322c3132392c3233362c33362c352c3138362c3231332c3134352c3138322c3135332c31302c38392c34302c3232312c39392c32372c3137372c3137392c33312c3230382c3130392c3138332c38322c3230362c372c31362c3131362c3130322c38332c37332c3137302c32342c3135372c3131382c3231312c34382c3132382c3135322c34372c3137362c3230372c36322c37322c3136312c3235312c35352c33362c3233332c31392c3234352c32362c38345d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232392c3136322c3136342c3137372c3131372c3135332c36332c37372c342c372c32382c34352c3235352c312c3139302c36312c382c3131362c3130342c3232372c3230332c3134322c3231392c38322c3234302c34322c3233332c3136322c38392c32342c3132362c35385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "dd04faeaaa4527ec2a71e82149bf4dfd2fc3225348a6d1729652cf8c37927dd3", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234332c3134342c32352c34392c35302c3135362c3233352c392c34312c3133332c32382c312c3234342c36352c34352c3130372c31352c37302c3231302c31352c3132352c34362c36362c3133322c39372c3133382c33362c33392c3132332c34342c3131322c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135332c3232322c3136372c33302c39362c3137342c3230382c3234382c3230392c3130312c3139382c32362c39332c3139362c3136322c3134322c3130392c31342c3132302c3233312c38322c3132302c3133322c3234352c3138372c3230372c39372c372c36312c36362c3133342c3133382c3132372c32352c3132362c37302c33362c3136312c36312c3131372c39392c3131302c3131302c3232382c3230332c33332c35352c31395d2c22696e6465786573223a5b302c372c32382c33312c34302c34312c34322c34342c34362c35302c35332c35362c36382c37372c38372c39382c3130302c3130335d2c227369676e65725f696e646578223a307d2c5b5b3134312c3232302c3133372c362c3131362c3232322c38362c33342c38302c37372c3136392c3136352c37342c31382c32312c36332c32352c38342c34302c33362c3133342c3134342c342c37392c3232382c3133372c3130382c3136372c3138352c31342c3139312c3135382c3233392c3133372c3134322c39302c3230392c34382c35342c3138322c34392c3230332c3133302c3132342c3233332c3130342c3136382c32302c31362c34322c3137362c3231302c3136392c37382c3134352c3233372c32372c3130322c3230302c3230392c3133352c342c37302c3131312c3235302c3130312c3138322c32382c3133362c3135382c33372c33362c3132332c3133332c33312c3231362c31302c3233312c3234392c3233362c38392c38302c37332c3233372c3139362c3137302c3233372c382c3131342c34392c3131342c3230302c3139322c3235332c36332c3233315d2c32303030303030303030315d5d2c5b7b227369676d61223a5b3132382c3132382c3133332c3232332c3131342c3230322c3231332c35342c3234332c3134392c3137332c38342c3135392c3130372c3135362c3235342c3134352c34362c302c37352c3133382c302c342c3137312c3134312c36352c3130332c39332c3139372c3134332c3138342c3131322c3138392c392c382c3135302c38372c3130352c3130322c37392c3139352c3134362c39352c3134372c3137322c3233312c37362c35365d2c22696e6465786573223a5b312c322c332c342c352c362c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32392c33302c33322c33332c33342c33352c33382c33392c34332c34352c34372c34382c34392c35312c35322c35342c35352c35372c35382c35392c36302c36312c36322c36342c36352c36362c36372c36392c37302c37322c37332c37342c37352c37362c37382c37392c38302c38312c38322c38332c38342c38352c38362c38392c39302c39312c39322c39332c39342c39352c39372c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137312c3132392c38352c3230352c3131312c3235352c3130372c3231392c31382c3130342c36352c3233392c37302c3233322c35352c352c39352c3136322c38332c3134342c3130382c3130362c32372c35372c3130382c34302c3233312c3133392c3136332c3233372c3138362c3132382c3139322c33392c33362c3130352c302c38382c35332c38322c3130342c3232312c3132392c3136352c3231342c3234362c392c36322c322c3136342c35302c3131342c3136372c3131332c39322c39312c3134372c3234372c3133382c3138362c37352c3230332c3235312c35342c392c3234372c37322c32322c3134332c3136332c3233332c3135302c37322c3131392c3135352c3137342c3134312c3232392c3233392c3138312c32312c34322c3134342c34362c3139362c3235342c33392c3233342c3131322c3233382c3135322c32302c3235342c3135332c3139342c3135355d2c32303030303030303030315d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" + }, + "f6bbb0835db01516dc812c2509e1b41387b03df8faf5c8c570e602b18dc700c7": { + "hash": "f6bbb0835db01516dc812c2509e1b41387b03df8faf5c8c570e602b18dc700c7", + "previous_hash": "", + "epoch": 8, + "signed_entity_type": { + "MithrilStakeDistribution": 8 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 70, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2026-04-08T08:02:00.260199922Z", + "sealed_at": "2026-04-08T08:02:00.260200869Z", + "signers": [] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230302c3132302c3131352c3130392c34312c3139302c3133392c3232352c3232382c3139302c3139332c3131302c39372c3131382c3235332c3132302c3132322c3138362c3136302c33362c3230382c35382c3231392c3131382c37332c3132392c31302c32382c3139312c3137332c3232372c34325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "next_protocol_parameters": "c36d7a800cb88eed32791ad2de7a37d758ed878c3c721b254a9a29e42cc6ad4f", + "current_epoch": "8" + } + }, + "signed_message": "64c05a94e020e3862138203000f3f7b80ddd90faf4f4a9d647b201f9df8a54de", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230302c3132302c3131352c3130392c34312c3139302c3133392c3232352c3232382c3139302c3139332c3131302c39372c3131382c3235332c3132302c3132322c3138362c3136302c33362c3230382c35382c3231392c3131382c37332c3132392c31302c32382c3139312c3137332c3232372c34325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a34303030303030303030327d", + "multi_signature": "", + "genesis_signature": "991e866d0318c317b1ac2058e18c21b85ca37fbe9ee87b343ec1d87006c44ce9612ff99707c02b7fd978eb5b5687c9378f541345b5ed8196fffbc414f7042708" } } diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-list.json index bb617eec649..8a1456d3dfa 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-list.json @@ -1,14 +1,17 @@ [ { - "transaction_hash": "f5d05b5cf46271ba2ecb0b878b3fa85d5a7bccc200e40b1b6335691e280b35a5" + "transaction_hash": "c20218c27498a9f425fb8ce761dbfdfabfe20f35b6ec26aacd1b3b176bf89b66" }, { - "transaction_hash": "93e942f3727805efd14b236dc6b81ac381f8e51ac4cf47f49b132947a7bb5159" + "transaction_hash": "0a1575b9abe1d9ae05f3f4928509610977e1d65296d6e893878647eba1141b26" }, { - "transaction_hash": "8c4b42a82923100949961cf797f6ce9699a79fe2e62db8b18030573352ab3516" + "transaction_hash": "b0cbeb7b08527b492d721073d1b48967e8fc2a379b850b24467669babc7f4c0c" }, { - "transaction_hash": "e73c5c7a9df8b7bd8bcfeb4dd9a0f352e51835f214749a5688b6edc33d9caf75" + "transaction_hash": "cb052a5ef7b65b34b9bf164948ebec0650629034b5d37772ef46af2ac553bce1" + }, + { + "transaction_hash": "40431302b97cce19ee903b49f1c0701572c09da554857f3f830177f85a2527da" } ] diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-v2-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-v2-list.json index bb617eec649..8a1456d3dfa 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-v2-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-v2-list.json @@ -1,14 +1,17 @@ [ { - "transaction_hash": "f5d05b5cf46271ba2ecb0b878b3fa85d5a7bccc200e40b1b6335691e280b35a5" + "transaction_hash": "c20218c27498a9f425fb8ce761dbfdfabfe20f35b6ec26aacd1b3b176bf89b66" }, { - "transaction_hash": "93e942f3727805efd14b236dc6b81ac381f8e51ac4cf47f49b132947a7bb5159" + "transaction_hash": "0a1575b9abe1d9ae05f3f4928509610977e1d65296d6e893878647eba1141b26" }, { - "transaction_hash": "8c4b42a82923100949961cf797f6ce9699a79fe2e62db8b18030573352ab3516" + "transaction_hash": "b0cbeb7b08527b492d721073d1b48967e8fc2a379b850b24467669babc7f4c0c" }, { - "transaction_hash": "e73c5c7a9df8b7bd8bcfeb4dd9a0f352e51835f214749a5688b6edc33d9caf75" + "transaction_hash": "cb052a5ef7b65b34b9bf164948ebec0650629034b5d37772ef46af2ac553bce1" + }, + { + "transaction_hash": "40431302b97cce19ee903b49f1c0701572c09da554857f3f830177f85a2527da" } ] diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-v2.json b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-v2.json index dec8e3f8167..af4816dfd32 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-v2.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs-v2.json @@ -1,66 +1,87 @@ { - "8c4b42a82923100949961cf797f6ce9699a79fe2e62db8b18030573352ab3516": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "0a1575b9abe1d9ae05f3f4928509610977e1d65296d6e893878647eba1141b26": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_transactions": { "items": [ { - "transaction_hash": "8c4b42a82923100949961cf797f6ce9699a79fe2e62db8b18030573352ab3516", - "block_number": 321, - "slot_number": 321, - "block_hash": "695847aec71f7deea8bae1c01d44c874dd8ab86605f872fffceaf6dd2c32912d" + "transaction_hash": "0a1575b9abe1d9ae05f3f4928509610977e1d65296d6e893878647eba1141b26", + "block_number": 294, + "slot_number": 294, + "block_hash": "4b5b1b45740457c1d9edf8056adf3697949dd051072e9c84583a3970035174c8" } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d01272080605fa24a1bc1c265ba93988245414e96b028b1286bf6d6f28e56673c45f42b520620c9581c6389f8df56d90f26d0dd4ee1e7ec3c7ae0a4542358542594c6055b6a702053685d4ecdc4c9e11ebc7e5091bab825ecf5e2d2d9c6ae77c83956c15c2d4f7220c60fb93bd193d5ca783e14440da73508decd4c1c2c405919745696da6fc1af1e208b6758e9e47bebef5285aeadf30b77571a094818a4db015030475dfb935d6d7120073c2dba880d8588388d1f0fc041a91ee617211454d478c897e62d5210e848a520ee3af84152b4469f3efd8e583a1012157086710670729bae97a9f61e29f3e08f01fb3b01fb4a0120375ceff9b2e32cac444f8ea033d42dec7bbba11719f94ecad45a136f0efc931b011a8c54782f386334623432613832393233313030393439393631636637393766366365393639396137396665326536326462386231383033303537333335326162333531362f363935383437616563373166376465656138626165316330316434346338373464643861623836363035663837326666666365616636646432633332393132642f3332312f3332311f044e426c6f636b2f383965396137626531393731636638313465396133643661633136346463356637643037386231633130373765313635363231663737326532396430626365612f3332392f33323920a176fdf43328f923e0014ffb62b63bf5cb325025db65e08a4d97eb5db663671120504e1c2299b6e9eaeb598f7bec83f548bbd433756f30f13ea986290d0460d7cd204561f7cf967c9985e4d5fecd8eda2234d32044e29d19d02d406c422b112fb65200" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9012320b57b68d82e03c7ca66d0c097d0b2fe92c0342dfb639b783bc784fc5db2148af2400620b4767b1ea88b3d1a794d7fb5081d4d2a11d03a40c573538df13f46b7e783d944206e4526ee82256bff1cce754b193d4297b75decdafd4b87ffba6fb27d33dc0f03207ae10f19508a20576a94387467b62b55e494769f1c28e256a797ca016196a20e20ff9e638c681beeeccba17bd10913c6d1023321cd49bdd081fa7f23066ab3ba52205c3f7d059675b16423fc33ee2d34ad6aab333b219feb16fb6c72e7eb72869f5920dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e01fb1d01fb2c01206e6f7fd84403ec6c3c42de1048413dde29f37c5ad3468828ffcce81661023d0c011a8c54782f306131353735623961626531643961653035663366343932383530393631303937376531643635323936643665383933383738363437656261313134316232362f346235623162343537343034353763316439656466383035366164663336393739343964643035313037326539633834353833613339373030333531373463382f3239342f3239341f044e426c6f636b2f663765643539313935313563356666376139303835373663653634313738663432396134646235633535306339633763343733626632356434373531323235362f3239392f32393920020572ea31530c3e7d7e9ac6ce9cc9f497a97eb8d2291756229cb29f31816bff205c65157098169a7d14705d5da5aeffe8a564a09249074068b4d0104c5acd1fad207b4de37dfc4ddeb9dacd98c92fea789a28d6b887fbff0ba61aff18a339e95ef800" }, "non_certified_transactions": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "93e942f3727805efd14b236dc6b81ac381f8e51ac4cf47f49b132947a7bb5159": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "40431302b97cce19ee903b49f1c0701572c09da554857f3f830177f85a2527da": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_transactions": { "items": [ { - "transaction_hash": "93e942f3727805efd14b236dc6b81ac381f8e51ac4cf47f49b132947a7bb5159", - "block_number": 425, - "slot_number": 425, - "block_hash": "adbae84ef409f20d394b053d9a55294a8cfb3e8d6e5ff76b3888ab6750a9534c" + "transaction_hash": "40431302b97cce19ee903b49f1c0701572c09da554857f3f830177f85a2527da", + "block_number": 127, + "slot_number": 127, + "block_hash": "8ae045ead92ec9cc8602f744bff8ce64aa5cad1786b88115dc6b30d3f4870784" } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d0135201b8c02583cdfdc2bc5357f031b153da1bea683955c8510242ae2cab8ac8752ca52062062ffacbaf25cd82f59c7587a9bde9558e51f82c0fecc3c8af4fbfdfeb56f061f20184ad9d67c248db1448992d841603a827260451ca2f5c6bc2aa31fb9adedde3420f8867706fbb771b446acb6cdee9bf4ab25e4bd08f46c5282d65e156a4b76f52d20ae99105962ce7ce6c61786f510ab5659aad1126fd7c6dbec45d99d31f975ddb420073c2dba880d8588388d1f0fc041a91ee617211454d478c897e62d5210e848a520ee3af84152b4469f3efd8e583a1012157086710670729bae97a9f61e29f3e08f01fba401fbb30120545c8a673d5f69aecb9e478c3d4c6bc847f4f01c472cfbad92db1fedbcfa2567011a8c54782f393365393432663337323738303565666431346232333664633662383161633338316638653531616334636634376634396231333239343761376262353135392f616462616538346566343039663230643339346230353364396135353239346138636662336538643665356666373662333838386162363735306139353334632f3432352f3432351f044e426c6f636b2f663262306362666464306639643838363965303365326130636232613162313563393031363038363463613239626631353339306537623732373366613863632f3433342f3433342079bc49a2074d22629b2fabb2e7856bc7f84824ff0d4e1b44f3daf655e60f38dc2088444427d4733b8b93bfd043f978c5252099f6915e5ed4d37406599090dbf9682099d779807e9c15cc2ab5e8cade411b3173f5d0851591c6867e568c57f5f05c5000" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9010f20573d424159510107919adbbbca69382f3e84288f53062208c3f3fbd6c2e10b0f400620a2a6f010b7931fda6478ea4cfc2978e2870cb774632e4862ef0ec334a986be58201bf4d617b32ee8f41d6bc4675a7fef9242955e16ad2c9cf12c7fb016bed0eec72040df8f3c8a2eb34a840f29a04442ccade4c9a34d13ca09b45625187e7fe4e1e220ce187dbb9d20ea770912fb91b34395fc01d685575a2ad35c8be2e8d9145ec6c5207abd0107f7168276c34906e6b8f6fa23640d94fbc64b364b7af6060f1616efa420dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e0178872098f036e7cf039042fc4c86efd30cdee2612de42dc569373862572e67894ec3e6011a8c54782f343034333133303262393763636531396565393033623439663163303730313537326330396461353534383537663366383330313737663835613235323764612f386165303435656164393265633963633836303266373434626666386365363461613563616431373836623838313135646336623330643366343837303738342f3132372f3132371f044e426c6f636b2f616431393838353537353063353335366431313232376339303630306233313034613766373339663330653235613734386565613435643037373165653937362f3133342f3133342000ed5d5ee51cc5cab169d339486a3b235c19107ea61818c938702db40ca9f419209c28fead9d56982cefafa09ee1b7ad77df993a4441458fa1d273700112db5ee2204a5178f12e979f0cde5ea1b25c043aaf2f1179bae436dac86f1138867be4b35200" }, "non_certified_transactions": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "e73c5c7a9df8b7bd8bcfeb4dd9a0f352e51835f214749a5688b6edc33d9caf75": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "b0cbeb7b08527b492d721073d1b48967e8fc2a379b850b24467669babc7f4c0c": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_transactions": { "items": [ { - "transaction_hash": "e73c5c7a9df8b7bd8bcfeb4dd9a0f352e51835f214749a5688b6edc33d9caf75", - "block_number": 169, - "slot_number": 169, - "block_hash": "5f2f209c59d1546042cc08cb81b181d6b1d728c4d0862f8f3b6c49c2ea59c4ff" + "transaction_hash": "b0cbeb7b08527b492d721073d1b48967e8fc2a379b850b24467669babc7f4c0c", + "block_number": 249, + "slot_number": 249, + "block_hash": "e61991923ac1db9feef01200d3d6344657be45240645aee51a2b773868a7fca0" } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d01132071b7faf5894947a923523f5582f043ea8c65181b871d8f59e0f6ea76ab2399185206206479d92bb42c02c2b99844b3fbe70772ba799c53cb225336913d3cbf691d224f200cde52f08ee4e989fdbe307f0e9043d31c1eafbd20fc65f949b9fdf6abbb2dea203b35c6192eb793e71f93b84d376529651ef5102bf4e061eeab2cfefb73ad0fad20a671abbf5c07a5e23e57ec384c69cfc955a9f6776e4607ff547bcb0f14d1d9e2207cc84c680320775a1286c1e49ce804da42e79713cce361e32e2e38cf2d7536cd20ee3af84152b4469f3efd8e583a1012157086710670729bae97a9f61e29f3e08f01a5b4203866a0aeb192c293a77e8d9f2f1ffe9a981440a25a8a7aea196ad2609d22b82d011a8c54782f653733633563376139646638623762643862636665623464643961306633353265353138333566323134373439613536383862366564633333643963616637352f356632663230396335396431353436303432636330386362383162313831643662316437323863346430383632663866336236633439633265613539633466662f3136392f3136391f044e426c6f636b2f653630633235393331373931666334383961656438303030656266646634616332636237363666663166306236623962343837386638376235343165323437362f3137392f31373920ca99367455990fa2d16551ca792c50d6209e0928f2b842277e44aa34a8f57bea2061efb51c113b5efa6bd04390c3d5ae525a8f1f911465dc31e409ed98b57732ff207631699e7b3ecfbf04874948ebc08117cf11f4f73081fc6e748c63639727886800" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a9011f20ff5483cf92211666e61272a607baecd787ddeb7cb32b0da4317676f12aa868994006205724f6eea9f3a29b73a2cf4e37211b7f473b08522f714de9dcaa02a018a0c3f8204ec6f8c3e4a9f49095641bff06bacf54e048f74275c4adacaf4d2f8c6912dee2207ae10f19508a20576a94387467b62b55e494769f1c28e256a797ca016196a20e20ff9e638c681beeeccba17bd10913c6d1023321cd49bdd081fa7f23066ab3ba52205c3f7d059675b16423fc33ee2d34ad6aab333b219feb16fb6c72e7eb72869f5920dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e01f0fbff0020a7552172c4d58a93f6df74092257b383be3affbef19409b91ffb12d3c67c54ec011a8c54782f623063626562376230383532376234393264373231303733643162343839363765386663326133373962383530623234343637363639626162633766346330632f653631393931393233616331646239666565663031323030643364363334343635376265343532343036343561656535316132623737333836386137666361302f3234392f3234391f044e426c6f636b2f346131383731646337373632336439386536376161366563653433366238623237613236646336656331373138613038646339383137356138383531626332372f3235342f32353420b699331165a5132056a48ee7544164085d3872c14d14d6967b08153e7dc361c520fc21aaa465def9b27f7cea88b93f50d92825cb9b143fa635e62320e5fe2b5d1620fc0740d047680eb04e1f8bb5b6cb86c70cd25c5f1e7caf6a8bdef65d4cbe299700" }, "non_certified_transactions": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 }, - "f5d05b5cf46271ba2ecb0b878b3fa85d5a7bccc200e40b1b6335691e280b35a5": { - "certificate_hash": "3c188a5efea657e259faf4e9302d3873717984d1d4e5b86ee5ab9372b22bfb9a", + "c20218c27498a9f425fb8ce761dbfdfabfe20f35b6ec26aacd1b3b176bf89b66": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", "certified_transactions": { "items": [ { - "transaction_hash": "f5d05b5cf46271ba2ecb0b878b3fa85d5a7bccc200e40b1b6335691e280b35a5", - "block_number": 515, - "slot_number": 515, - "block_hash": "ec895ace4f621aff2182ef61f92cb26994d8ba6e225573f59a349209da4d8d63" + "transaction_hash": "c20218c27498a9f425fb8ce761dbfdfabfe20f35b6ec26aacd1b3b176bf89b66", + "block_number": 341, + "slot_number": 341, + "block_hash": "481e7f967768d0f390c913a232eade6859aee7cf1127da77697917509d2c9135" } ], - "proof": "20a59faa1b81a148e382f82f2c4d5b5a7ba94517077223bed448fecf65339a1c3d014220f2c847d649033edb97962004e4fe3330ee0d29263827aa87ddee681336aa20065205206b978b3ea39da8aa227aae3a8e56578cdfcfabf6d80d751ce9f8628e62580e22201c83dc54b37ea917649778a7622df627c4a3024fd0857d239268034cb319b67820a06f5ac0baa23d180cfa66375a0b5a7733cbafedb82f0d5c36949768a1797267207edd2f2da7217b57eb82dbda3a4be91176c64a056d98fe32abeb7d125b8aca27208da9aa9d38caa55e03ae6c0312362faa04c4383b2e1ead446cbcea92a11d787e01fbfe01fb0d0220aa812d509be2c7b4d10f40b22db9cb0017d311a5e05ebb37c6aa10e1b51aabdd011a8c54782f663564303562356366343632373162613265636230623837386233666138356435613762636363323030653430623162363333353639316532383062333561352f656338393561636534663632316166663231383265663631663932636232363939346438626136653232353537336635396133343932303964613464386436332f3531352f3531351f044e426c6f636b2f366634333461383435656236373530383033396438656463303331326635323263383331333935623264616335346464383735343366313861343532326131312f3532342f35323420117fc3cf598925ebc3f1299e91d3b00db10a25256f542f95f1bd42f1eb26321520dfc81a25a2055f3ce2de6710ed4abb5b945f07ae49796263410afd8e92a603cb200bb5c73c5ec32888c930ae89e212f1045aaf50f9c111da1524e6433eaca1b31c00" + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a901292034e87e8f024ac0085df639976474e8480ceeefc0c7426146ccea33146e2ec04e400620a5bd0312a5d0c1d6d9f7c763f63e8d678fa6258124c16b00fe509ed7c7140dac20d7a3a70269ca9a73ab89b065224be388b67102cdd8ef33752d6f15cd61b2e6f520d8d20193f48299f750c05a0cb8062b5b4942d923f3f850773211c5d60b03a6f120ff9e638c681beeeccba17bd10913c6d1023321cd49bdd081fa7f23066ab3ba52205c3f7d059675b16423fc33ee2d34ad6aab333b219feb16fb6c72e7eb72869f5920dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e01fb4a01fb5901204efcf9ac194afdfd585e85b9575c13c74fe164c97e1dc20d7a922fba251d920d011a8c54782f633230323138633237343938613966343235666238636537363164626664666162666532306633356236656332366161636431623362313736626638396236362f343831653766393637373638643066333930633931336132333265616465363835396165653763663131323764613737363937393137353039643263393133352f3334312f3334311f044e426c6f636b2f663130376463663930623364396664366161353638316238396533653131643336303836366538356631643635653864663263336231633665336139346330362f3334342f33343420d7bb9d7cff14db608517c0cf90c5e1baedafa201fb0a7d49cd46c347c27533c220557915285ed104519d4653a2883dd0f0c05ec72e540c415c21070b125f45a35220a537141ffe6572442b9dc4e97f7ccbec33ec365d25d7091fff69f81ce7fa5baa00" }, "non_certified_transactions": [], - "latest_block_number": 644 + "latest_block_number": 494, + "security_parameter": 1 + }, + "cb052a5ef7b65b34b9bf164948ebec0650629034b5d37772ef46af2ac553bce1": { + "certificate_hash": "5520ab925b14c01c473c3a5db74c8f1097f005b20e611e08daa77c8eed6d3476", + "certified_transactions": { + "items": [ + { + "transaction_hash": "cb052a5ef7b65b34b9bf164948ebec0650629034b5d37772ef46af2ac553bce1", + "block_number": 150, + "slot_number": 150, + "block_hash": "317d134fe6a64cb79a7b5c0b38dbb313c15a6b1897bfc724513193b4763c90c8" + } + ], + "proof": "206afd8528e9a4e1ffc8004ec0df39762e2523ec74d72dfca33304d5d5d95c26a90112209fcd70148e10cf2a2d6cfe71197b0b98c54bd446b3e5c4ad282b8f3f398b5a634006206a0e5b890ba46f801de91d2f942d1e4273652f1018389dc610ba385aa5478db62007b374f55b9fdde85123cb693474e07ad82fb6805fe0287880ed3f7aa283b9462040df8f3c8a2eb34a840f29a04442ccade4c9a34d13ca09b45625187e7fe4e1e220ce187dbb9d20ea770912fb91b34395fc01d685575a2ad35c8be2e8d9145ec6c5207abd0107f7168276c34906e6b8f6fa23640d94fbc64b364b7af6060f1616efa420dcb0f9a89b5c77a59bdaffaf743aed42050cb61d1e75f4b659bc79226d79aa3e0196a5201d6bf403f0173c5c880ab16b3eb80c19dabb39a6593a01fd62b4c74d1c413255011a8c54782f636230353261356566376236356233346239626631363439343865626563303635303632393033346235643337373732656634366166326163353533626365312f333137643133346665366136346362373961376235633062333864626233313363313561366231383937626663373234353133313933623437363363393063382f3135302f3135301f044e426c6f636b2f623332393865346564383262646661353764633232383038616636326639393261633232376263616366663435336562613537386638633661313830343864322f3136342f31363420147a97f0fd79326315607a6e9ff4d702dd6a27d538cb810a1713872a5ce255e7207753323d606f94ddca421970b47f0f947b72833281d7928e69c8d5a76fd187ca20f06d8e96b81e763938b657fc519b35bf518b18c6ba3af6db27c88a94abc5409c00" + }, + "non_certified_transactions": [], + "latest_block_number": 494, + "security_parameter": 1 } } diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs.json b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs.json index 9061f773197..d5661a316a9 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-proofs.json @@ -1,54 +1,67 @@ { - "8c4b42a82923100949961cf797f6ce9699a79fe2e62db8b18030573352ab3516": { - "certificate_hash": "2a9785896933f0fe7a4715a7bb73d1d03cffe68b6a2e91508c405a8eda48b441", + "0a1575b9abe1d9ae05f3f4928509610977e1d65296d6e893878647eba1141b26": { + "certificate_hash": "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1", "certified_transactions": [ { "transactions_hashes": [ - "8c4b42a82923100949961cf797f6ce9699a79fe2e62db8b18030573352ab3516" + "0a1575b9abe1d9ae05f3f4928509610977e1d65296d6e893878647eba1141b26" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133362c3132352c3134342c3130352c31302c3132392c3136302c3131362c3133322c35302c31352c37342c37392c3131302c3135332c36302c3130352c39342c3130312c3231362c3136312c3135322c35322c3235342c3139332c3132322c3133372c33392c3230362c3136382c3233302c3235325d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b3231332c3135352c32372c32382c3134342c3232352c3136352c36382c33322c3138392c3136332c3133302c34372c33382c33352c35332c35312c3139392c35322c35342c3235332c3133382c3133372c3136342c3232312c3132302c32372c3130382c3232342c35372c32352c3234305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a372c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3233392c3130362c32362c3136312c3135302c39322c3233392c37382c34342c3232302c32342c3232322c32312c39302c3235352c37322c3231332c3234382c35342c37352c302c3235312c3235332c3130392c38322c38342c38312c3233302c3139382c39342c35382c34305d7d2c7b2268617368223a5b3233322c3130342c3132362c3230312c39392c3132362c32382c3135332c3133302c3232392c33372c38352c31392c3232342c382c37332c3139302c3136372c3235332c3139342c3139392c3134392c3134342c31312c36322c34382c3233332c38362c3234302c32302c3130322c3230345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3331352c22656e64223a3333307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35362c39392c35322c39382c35322c35302c39372c35362c35302c35372c35302c35312c34392c34382c34382c35372c35322c35372c35372c35342c34392c39392c3130322c35352c35372c35352c3130322c35342c39392c3130312c35372c35342c35372c35372c39372c35352c35372c3130322c3130312c35302c3130312c35342c35302c3130302c39382c35362c39382c34392c35362c34382c35312c34382c35332c35352c35312c35312c35332c35302c39372c39382c35312c35332c34392c35345d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35362c39392c35322c39382c35322c35302c39372c35362c35302c35372c35302c35312c34392c34382c34382c35372c35322c35372c35372c35342c34392c39392c3130322c35352c35372c35352c3130322c35342c39392c3130312c35372c35342c35372c35372c39372c35352c35372c3130322c3130312c35302c3130312c35342c35302c3130302c39382c35362c39382c34392c35362c34382c35312c34382c35332c35352c35312c35312c35332c35302c39372c39382c35312c35332c34392c35345d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b37382c36302c3133332c3136342c34342c3132382c3232322c37332c3135322c37362c38382c3233312c342c36392c36362c3135392c3138362c31362c3136362c38362c3137322c3232362c39302c36362c3235312c3137332c3235352c3137352c3132382c38332c3130332c375d7d2c22696e6e65725f6c6561766573223a5b5b342c7b2268617368223a5b35342c33382c3235332c3230392c3139322c31382c3132302c3132362c35372c3131342c3233312c39392c3233312c37322c3135322c3136322c3230372c34392c3130332c39352c38372c3134372c37312c37362c3131382c34332c32342c3134392c3139392c3131382c3134382c3233375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b37342c3137352c3136372c3134372c3231372c332c3133382c3234372c37302c3138392c3234342c39312c37362c34372c3231392c32312c35362c34382c32302c3233322c3230362c3235342c33352c35312c3131322c3139362c37372c35392c37392c3130352c3133362c3132315d7d2c7b2268617368223a5b3235302c3133382c38372c3132332c3137372c39312c32312c34352c3138362c3234362c3133322c3233332c3131372c36362c37312c3136352c3136332c322c33382c34362c3136312c3130302c36322c35302c39302c3136352c33302c36322c3230352c3235352c3137382c34315d7d2c7b2268617368223a5b32362c39392c3234312c3131332c35352c3136342c3235332c31322c35342c36302c31302c3137372c3131342c33382c3232372c3232322c3134332c39362c38312c3232392c37332c31322c3132322c3138312c32332c38302c3135362c3231332c31382c3131342c3137372c39365d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3238352c22656e64223a3330307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34382c39372c34392c35332c35352c35332c39382c35372c39372c39382c3130312c34392c3130302c35372c39372c3130312c34382c35332c3130322c35312c3130322c35322c35372c35302c35362c35332c34382c35372c35342c34392c34382c35372c35352c35352c3130312c34392c3130302c35342c35332c35302c35372c35342c3130302c35342c3130312c35362c35372c35312c35362c35352c35362c35342c35322c35352c3130312c39382c39372c34392c34392c35322c34392c39382c35302c35345d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34382c39372c34392c35332c35352c35332c39382c35372c39372c39382c3130312c34392c3130302c35372c39372c3130312c34382c35332c3130322c35312c3130322c35322c35372c35302c35362c35332c34382c35372c35342c34392c34382c35372c35352c35352c3130312c34392c3130302c35342c35332c35302c35372c35342c3130302c35342c3130312c35362c35372c35312c35362c35352c35362c35342c35322c35352c3130312c39382c39372c34392c34392c35322c34392c39382c35302c35345d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 644 + "latest_block_number": 494 }, - "93e942f3727805efd14b236dc6b81ac381f8e51ac4cf47f49b132947a7bb5159": { - "certificate_hash": "2a9785896933f0fe7a4715a7bb73d1d03cffe68b6a2e91508c405a8eda48b441", + "40431302b97cce19ee903b49f1c0701572c09da554857f3f830177f85a2527da": { + "certificate_hash": "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1", "certified_transactions": [ { "transactions_hashes": [ - "93e942f3727805efd14b236dc6b81ac381f8e51ac4cf47f49b132947a7bb5159" + "40431302b97cce19ee903b49f1c0701572c09da554857f3f830177f85a2527da" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133362c3132352c3134342c3130352c31302c3132392c3136302c3131362c3133322c35302c31352c37342c37392c3131302c3135332c36302c3130352c39342c3130312c3231362c3136312c3135322c35322c3235342c3139332c3132322c3133372c33392c3230362c3136382c3233302c3235325d7d2c22696e6e65725f6c6561766573223a5b5b332c7b2268617368223a5b3132332c3137352c3132342c3231312c3233352c34322c3230352c3230372c3134392c3230312c3234302c3139382c35302c3231332c3132362c3232332c38332c3135342c3137372c3132392c36302c35352c3235322c3234302c37332c3230352c3138382c38322c3136312c39302c3133322c3132355d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a372c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3133362c3231372c39322c33362c3234382c3138352c3134312c38322c3131332c3230342c32372c3235322c3131392c33332c38392c3131392c3130362c3235332c37362c3137372c36382c34362c32352c3137312c32342c3138352c3235332c37392c3131322c3137372c3139382c3135325d7d2c7b2268617368223a5b342c34312c3139372c3232332c382c332c3231342c3234392c36392c3139312c31302c33302c302c33362c3137352c3139392c3136362c3131362c3135322c3135322c34352c3230312c3131392c39372c32392c37322c36372c38382c3134302c37352c3231372c3231365d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3432302c22656e64223a3433357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35372c35312c3130312c35372c35322c35302c3130322c35312c35352c35302c35352c35362c34382c35332c3130312c3130322c3130302c34392c35322c39382c35302c35312c35342c3130302c39392c35342c39382c35362c34392c39372c39392c35312c35362c34392c3130322c35362c3130312c35332c34392c39372c39392c35322c39392c3130322c35322c35352c3130322c35322c35372c39382c34392c35312c35302c35372c35322c35352c39372c35352c39382c39382c35332c34392c35332c35375d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35372c35312c3130312c35372c35322c35302c3130322c35312c35352c35302c35352c35362c34382c35332c3130312c3130322c3130302c34392c35322c39382c35302c35312c35342c3130302c39392c35342c39382c35362c34392c39372c39392c35312c35362c34392c3130322c35362c3130312c35332c34392c39372c39392c35322c39392c3130322c35322c35352c3130322c35322c35372c39382c34392c35312c35302c35372c35322c35352c39372c35352c39382c39382c35332c34392c35332c35375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b37382c36302c3133332c3136342c34342c3132382c3232322c37332c3135322c37362c38382c3233312c342c36392c36362c3135392c3138362c31362c3136362c38362c3137322c3232362c39302c36362c3235312c3137332c3235352c3137352c3132382c38332c3130332c375d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3135322c3133362c3131312c3136392c3139372c35302c3233392c3230302c3232382c3135362c3233342c3131302c39332c35362c3133322c37322c3234332c3139302c37352c352c3136382c3233362c37372c342c3230342c34392c3235322c3135302c3134352c3133332c36332c3130325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b312c3133322c38302c3139372c35362c33392c3136332c3137342c34392c3133382c3234322c3138302c3133312c3137302c3139372c3138352c3139362c3130342c3231332c37332c3134362c3131382c39302c3139382c31332c3132372c3231372c3130302c3133332c32362c31382c3133325d7d2c7b2268617368223a5b3232312c3130312c36322c3232362c3132372c3135312c3130322c31342c3232382c39392c31342c3235302c3139382c3137372c34392c3134392c3134352c3231362c36352c3132352c35302c35382c3133392c3233332c3130352c342c36382c332c3134322c32372c36332c39345d7d2c7b2268617368223a5b32362c39392c3234312c3131332c35352c3136342c3235332c31322c35342c36302c31302c3137372c3131342c33382c3232372c3232322c3134332c39362c38312c3232392c37332c31322c3132322c3138312c32332c38302c3135362c3231332c31382c3131342c3137372c39365d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3132302c22656e64223a3133357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35322c34382c35322c35312c34392c35312c34382c35302c39382c35372c35352c39392c39392c3130312c34392c35372c3130312c3130312c35372c34382c35312c39382c35322c35372c3130322c34392c39392c34382c35352c34382c34392c35332c35352c35302c39392c34382c35372c3130302c39372c35332c35332c35322c35362c35332c35352c3130322c35312c3130322c35362c35312c34382c34392c35352c35352c3130322c35362c35332c39372c35302c35332c35302c35352c3130302c39375d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35322c34382c35322c35312c34392c35312c34382c35302c39382c35372c35352c39392c39392c3130312c34392c35372c3130312c3130312c35372c34382c35312c39382c35322c35372c3130322c34392c39392c34382c35352c34382c34392c35332c35352c35302c39392c34382c35372c3130302c39372c35332c35332c35322c35362c35332c35352c3130322c35312c3130322c35362c35312c34382c34392c35352c35352c3130322c35362c35332c39372c35302c35332c35302c35352c3130302c39375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 644 + "latest_block_number": 494 }, - "e73c5c7a9df8b7bd8bcfeb4dd9a0f352e51835f214749a5688b6edc33d9caf75": { - "certificate_hash": "2a9785896933f0fe7a4715a7bb73d1d03cffe68b6a2e91508c405a8eda48b441", + "b0cbeb7b08527b492d721073d1b48967e8fc2a379b850b24467669babc7f4c0c": { + "certificate_hash": "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1", "certified_transactions": [ { "transactions_hashes": [ - "e73c5c7a9df8b7bd8bcfeb4dd9a0f352e51835f214749a5688b6edc33d9caf75" + "b0cbeb7b08527b492d721073d1b48967e8fc2a379b850b24467669babc7f4c0c" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133362c3132352c3134342c3130352c31302c3132392c3136302c3131362c3133322c35302c31352c37342c37392c3131302c3135332c36302c3130352c39342c3130312c3231362c3136312c3135322c35322c3235342c3139332c3132322c3133372c33392c3230362c3136382c3233302c3235325d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3233392c3130362c32362c3136312c3135302c39322c3233392c37382c34342c3232302c32342c3232322c32312c39302c3235352c37322c3231332c3234382c35342c37352c302c3235312c3235332c3130392c38322c38342c38312c3233302c3139382c39342c35382c34305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a372c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3231332c3135352c32372c32382c3134342c3232352c3136352c36382c33322c3138392c3136332c3133302c34372c33382c33352c35332c35312c3139392c35322c35342c3235332c3133382c3133372c3136342c3232312c3132302c32372c3130382c3232342c35372c32352c3234305d7d2c7b2268617368223a5b3233322c3130342c3132362c3230312c39392c3132362c32382c3135332c3133302c3232392c33372c38352c31392c3232342c382c37332c3139302c3136372c3235332c3139342c3139392c3134392c3134342c31312c36322c34382c3233332c38362c3234302c32302c3130322c3230345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3136352c22656e64223a3138307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130312c35352c35312c39392c35332c39392c35352c39372c35372c3130302c3130322c35362c39382c35352c39382c3130302c35362c39382c39392c3130322c3130312c39382c35322c3130302c3130302c35372c39372c34382c3130322c35312c35332c35302c3130312c35332c34392c35362c35312c35332c3130322c35302c34392c35322c35352c35322c35372c39372c35332c35342c35362c35362c39382c35342c3130312c3130302c39392c35312c35312c3130302c35372c39392c39372c3130322c35352c35335d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130312c35352c35312c39392c35332c39392c35352c39372c35372c3130302c3130322c35362c39382c35352c39382c3130302c35362c39382c39392c3130322c3130312c39382c35322c3130302c3130302c35372c39372c34382c3130322c35312c35332c35302c3130312c35332c34392c35362c35312c35332c3130322c35302c34392c35322c35352c35322c35372c39372c35332c35342c35362c35362c39382c35342c3130312c3130302c39392c35312c35312c3130302c35372c39392c39372c3130322c35352c35335d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b37382c36302c3133332c3136342c34342c3132382c3232322c37332c3135322c37362c38382c3233312c342c36392c36362c3135392c3138362c31362c3136362c38362c3137322c3232362c39302c36362c3235312c3137332c3235352c3137352c3132382c38332c3130332c375d7d2c22696e6e65725f6c6561766573223a5b5b332c7b2268617368223a5b37342c3137352c3136372c3134372c3231372c332c3133382c3234372c37302c3138392c3234342c39312c37362c34372c3231392c32312c35362c34382c32302c3233322c3230362c3235342c33352c35312c3131322c3139362c37372c35392c37392c3130352c3133362c3132315d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b35342c33382c3235332c3230392c3139322c31382c3132302c3132362c35372c3131342c3233312c39392c3233312c37322c3135322c3136322c3230372c34392c3130332c39352c38372c3134372c37312c37362c3131382c34332c32342c3134392c3139392c3131382c3134382c3233375d7d2c7b2268617368223a5b3235302c3133382c38372c3132332c3137372c39312c32312c34352c3138362c3234362c3133322c3233332c3131372c36362c37312c3136352c3136332c322c33382c34362c3136312c3130302c36322c35302c39302c3136352c33302c36322c3230352c3235352c3137382c34315d7d2c7b2268617368223a5b32362c39392c3234312c3131332c35352c3136342c3235332c31322c35342c36302c31302c3137372c3131342c33382c3232372c3232322c3134332c39362c38312c3232392c37332c31322c3132322c3138312c32332c38302c3135362c3231332c31382c3131342c3137372c39365d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3234302c22656e64223a3235357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b39382c34382c39392c39382c3130312c39382c35352c39382c34382c35362c35332c35302c35352c39382c35322c35372c35302c3130302c35352c35302c34392c34382c35352c35312c3130302c34392c39382c35322c35362c35372c35342c35352c3130312c35362c3130322c39392c35302c39372c35312c35352c35372c39382c35362c35332c34382c39382c35302c35322c35322c35342c35352c35342c35342c35372c39382c39372c39382c39392c35352c3130322c35322c39392c34382c39395d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b39382c34382c39392c39382c3130312c39382c35352c39382c34382c35362c35332c35302c35352c39382c35322c35372c35302c3130302c35352c35302c34392c34382c35352c35312c3130302c34392c39382c35322c35362c35372c35342c35352c3130312c35362c3130322c39392c35302c39372c35312c35352c35372c39382c35362c35332c34382c39382c35302c35322c35322c35342c35352c35342c35342c35372c39382c39372c39382c39392c35352c3130322c35322c39392c34382c39395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 644 + "latest_block_number": 494 }, - "f5d05b5cf46271ba2ecb0b878b3fa85d5a7bccc200e40b1b6335691e280b35a5": { - "certificate_hash": "2a9785896933f0fe7a4715a7bb73d1d03cffe68b6a2e91508c405a8eda48b441", + "c20218c27498a9f425fb8ce761dbfdfabfe20f35b6ec26aacd1b3b176bf89b66": { + "certificate_hash": "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1", "certified_transactions": [ { "transactions_hashes": [ - "f5d05b5cf46271ba2ecb0b878b3fa85d5a7bccc200e40b1b6335691e280b35a5" + "c20218c27498a9f425fb8ce761dbfdfabfe20f35b6ec26aacd1b3b176bf89b66" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133362c3132352c3134342c3130352c31302c3132392c3136302c3131362c3133322c35302c31352c37342c37392c3131302c3135332c36302c3130352c39342c3130312c3231362c3136312c3135322c35322c3235342c3139332c3132322c3133372c33392c3230362c3136382c3233302c3235325d7d2c22696e6e65725f6c6561766573223a5b5b342c7b2268617368223a5b3133362c3231372c39322c33362c3234382c3138352c3134312c38322c3131332c3230342c32372c3235322c3131392c33332c38392c3131392c3130362c3235332c37362c3137372c36382c34362c32352c3137312c32342c3138352c3235332c37392c3131322c3137372c3139382c3135325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a372c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3132332c3137352c3132342c3231312c3233352c34322c3230352c3230372c3134392c3230312c3234302c3139382c35302c3231332c3132362c3232332c38332c3135342c3137372c3132392c36302c35352c3235322c3234302c37332c3230352c3138382c38322c3136312c39302c3133322c3132355d7d2c7b2268617368223a5b342c34312c3139372c3232332c382c332c3231342c3234392c36392c3139312c31302c33302c302c33362c3137352c3139392c3136362c3131362c3135322c3135322c34352c3230312c3131392c39372c32392c37322c36372c38382c3134302c37352c3231372c3231365d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3531302c22656e64223a3532357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130322c35332c3130302c34382c35332c39382c35332c39392c3130322c35322c35342c35302c35352c34392c39382c39372c35302c3130312c39392c39382c34382c39382c35362c35352c35362c39382c35312c3130322c39372c35362c35332c3130302c35332c39372c35352c39382c39392c39392c39392c35302c34382c34382c3130312c35322c34382c39382c34392c39382c35342c35312c35312c35332c35342c35372c34392c3130312c35302c35362c34382c39382c35312c35332c39372c35335d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130322c35332c3130302c34382c35332c39382c35332c39392c3130322c35322c35342c35302c35352c34392c39382c39372c35302c3130312c39392c39382c34382c39382c35362c35352c35362c39382c35312c3130322c39372c35362c35332c3130302c35332c39372c35352c39382c39392c39392c39392c35302c34382c34382c3130312c35322c34382c39382c34392c39382c35342c35312c35312c35332c35342c35372c34392c3130312c35302c35362c34382c39382c35312c35332c39372c35335d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b37382c36302c3133332c3136342c34342c3132382c3232322c37332c3135322c37362c38382c3233312c342c36392c36362c3135392c3138362c31362c3136362c38362c3137322c3232362c39302c36362c3235312c3137332c3235352c3137352c3132382c38332c3130332c375d7d2c22696e6e65725f6c6561766573223a5b5b372c7b2268617368223a5b32362c39392c3234312c3131332c35352c3136342c3235332c31322c35342c36302c31302c3137372c3131342c33382c3232372c3232322c3134332c39362c38312c3232392c37332c31322c3132322c3138312c32332c38302c3135362c3231332c31382c3131342c3137372c39365d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b35322c37312c37372c3131302c33302c3135302c3232392c3232352c37372c38362c37362c3133382c3139352c33382c35302c32302c3136312c34342c37332c3230342c39372c39322c3139352c34342c3138312c39322c3230372c35302c3138322c392c3136382c32365d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3333302c22656e64223a3334357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b39392c35302c34382c35302c34392c35362c39392c35302c35352c35322c35372c35362c39372c35372c3130322c35322c35302c35332c3130322c39382c35362c39392c3130312c35352c35342c34392c3130302c39382c3130322c3130302c3130322c39372c39382c3130322c3130312c35302c34382c3130322c35312c35332c39382c35342c3130312c39392c35302c35342c39372c39372c39392c3130302c34392c39382c35312c39382c34392c35352c35342c39382c3130322c35362c35372c39382c35342c35345d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b39392c35302c34382c35302c34392c35362c39392c35302c35352c35322c35372c35362c39372c35372c3130322c35322c35302c35332c3130322c39382c35362c39392c3130312c35352c35342c34392c3130302c39382c3130322c3130302c3130322c39372c39382c3130322c3130312c35302c34382c3130322c35312c35332c39382c35342c3130312c39392c35302c35342c39372c39372c39392c3130302c34392c39382c35312c39382c34392c35352c35342c39382c3130322c35362c35372c39382c35342c35345d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 644 + "latest_block_number": 494 + }, + "cb052a5ef7b65b34b9bf164948ebec0650629034b5d37772ef46af2ac553bce1": { + "certificate_hash": "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1", + "certified_transactions": [ + { + "transactions_hashes": [ + "cb052a5ef7b65b34b9bf164948ebec0650629034b5d37772ef46af2ac553bce1" + ], + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b37382c36302c3133332c3136342c34342c3132382c3232322c37332c3135322c37362c38382c3233312c342c36392c36362c3135392c3138362c31362c3136362c38362c3137322c3232362c39302c36362c3235312c3137332c3235352c3137352c3132382c38332c3130332c375d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b312c3133322c38302c3139372c35362c33392c3136332c3137342c34392c3133382c3234322c3138302c3133312c3137302c3139372c3138352c3139362c3130342c3231332c37332c3134362c3131382c39302c3139382c31332c3132372c3231372c3130302c3133332c32362c31382c3133325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3135322c3133362c3131312c3136392c3139372c35302c3233392c3230302c3232382c3135362c3233342c3131302c39332c35362c3133322c37322c3234332c3139302c37352c352c3136382c3233362c37372c342c3230342c34392c3235322c3135302c3134352c3133332c36332c3130325d7d2c7b2268617368223a5b3232312c3130312c36322c3232362c3132372c3135312c3130322c31342c3232382c39392c31342c3235302c3139382c3137372c34392c3134392c3134352c3231362c36352c3132352c35302c35382c3133392c3233332c3130352c342c36382c332c3134322c32372c36332c39345d7d2c7b2268617368223a5b32362c39392c3234312c3131332c35352c3136342c3235332c31322c35342c36302c31302c3137372c3131342c33382c3232372c3232322c3134332c39362c38312c3232392c37332c31322c3132322c3138312c32332c38302c3135362c3231332c31382c3131342c3137372c39365d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3135302c22656e64223a3136357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b39392c39382c34382c35332c35302c39372c35332c3130312c3130322c35352c39382c35342c35332c39382c35312c35322c39382c35372c39382c3130322c34392c35342c35322c35372c35322c35362c3130312c39382c3130312c39392c34382c35342c35332c34382c35342c35302c35372c34382c35312c35322c39382c35332c3130302c35312c35352c35352c35352c35302c3130312c3130322c35322c35342c39372c3130322c35302c39372c39392c35332c35332c35312c39382c39392c3130312c34395d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b39392c39382c34382c35332c35302c39372c35332c3130312c3130322c35352c39382c35342c35332c39382c35312c35322c39382c35372c39382c3130322c34392c35342c35322c35372c35322c35362c3130312c39382c3130312c39392c34382c35342c35332c34382c35342c35302c35372c34382c35312c35322c39382c35332c3130302c35312c35352c35352c35352c35302c3130312c3130322c35322c35342c39372c3130322c35302c39372c39392c35332c35332c35312c39382c39392c3130312c34395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + } + ], + "non_certified_transactions": [], + "latest_block_number": 494 } } diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-snapshots-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-snapshots-list.json index 5da77aaffe9..d6bcb2e4d94 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-snapshots-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-snapshots-list.json @@ -1,106 +1,122 @@ [ { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 21, - "block_number": 644, - "hash": "baf02bcf857a2e9a248b26b3e35c0145f910158d124570685e41f8108a0eae2e", - "certificate_hash": "2a9785896933f0fe7a4715a7bb73d1d03cffe68b6a2e91508c405a8eda48b441", - "created_at": "2026-03-13T08:42:49.956261945Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 16, + "block_number": 494, + "hash": "cdee28f8bb38a99637c8fa098b033866d22f09968000b088ea32c912b5fe2f41", + "certificate_hash": "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1", + "created_at": "2026-04-08T08:02:25.942198633Z" }, { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 21, - "block_number": 629, - "hash": "ebf66d7e7cfe9d9e6259a67d96523d1ac17a18c36174102272be41c73640d3d1", - "certificate_hash": "76e327c7c3d155f90a46a5e754c7e55851ffd126d8125d745f65164635302015", - "created_at": "2026-03-13T08:42:49.457629273Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 16, + "block_number": 479, + "hash": "c1fc28e5461e6762a4dfb1ec781b0ba2244a3272a5f82668d8c704ef026cf1ad", + "certificate_hash": "f664ef08a4591bbaedb182fcb214bd298b0d47ffec4dcaf269c7adabc5abd4a0", + "created_at": "2026-04-08T08:02:25.459347725Z" }, { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 20, - "block_number": 614, - "hash": "aee5799b62df6ae3d5613e6d5b949f1f940ba2c0bb599e679749797069a65564", - "certificate_hash": "f74444221dd32e37435b8178d01d39ef42ab525e23022f854019f5e0bf5e8838", - "created_at": "2026-03-13T08:42:46.959410539Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 15, + "block_number": 464, + "hash": "13aca4e029fc45c1a6500f4bac602c82a64a2d30267cbcdcaf030ac6c234aac0", + "certificate_hash": "06523f052e146468e7b64772a4521a827887e34002eb609c05a2276a25f40ccb", + "created_at": "2026-04-08T08:02:22.957853528Z" }, { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 19, - "block_number": 584, - "hash": "4b855b17bde321185cda09ec81bb99a69b7657bc63c98f5e905c0a12264d1c72", - "certificate_hash": "3370016aa061ba684a63f2c04b935c95f8705e07f8d31f43ac316a4c79499a7c", - "created_at": "2026-03-13T08:42:43.960095117Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 15, + "block_number": 449, + "hash": "3dc60bc257deee9b95b0ef311733f18532761a6848f661844724cf9f422e54de", + "certificate_hash": "d1d3ad13672fcec93c4b5ddbada8221a115d2fc23dd4776cffa104cd73bd3180", + "created_at": "2026-04-08T08:02:22.450345976Z" }, { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 19, - "block_number": 569, - "hash": "ab8735ce18a45ab7596137687a30949eb37686aaa4bb36399858447b87f315cc", - "certificate_hash": "9e157d3d75723d3b56a4407302b2c46ee3d97d9edfa6ed1cdca4d3dca3d69423", - "created_at": "2026-03-13T08:42:43.460595207Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 14, + "block_number": 434, + "hash": "6eab9551396624e93441489066d49c259ebc9fea66b895a41b6c01ea9503b0a6", + "certificate_hash": "cd2f624deb3c2f871cbaa31974bc6d93b326fb7dd3172a314545466a00a6575a", + "created_at": "2026-04-08T08:02:19.954436573Z" }, { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 18, - "block_number": 554, - "hash": "cf1ef6f5993208da51c6e80e57ed43e15bd8eb8a67658f361f273506cd6349b8", - "certificate_hash": "da61a594bafadc73e7674199a7daf20821878a57cc37b1344e2f04d5fae9e056", - "created_at": "2026-03-13T08:42:40.957769670Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 14, + "block_number": 419, + "hash": "8a34c53d06d177de6d5da3e10fba1a2b7f601e2fccfce6733c3ebc6aa4255235", + "certificate_hash": "5e328c1dec990637d363a2c9458811697947143ab7486fee49cfa2ad114dcab6", + "created_at": "2026-04-08T08:02:19.450916740Z" }, { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 18, - "block_number": 539, - "hash": "e8a8b56153f2024a1cd92b084c17832433ce0916bb080a46d840253faad8cf2e", - "certificate_hash": "ea0ccdc9cc0418c97284c5b3723f9a278408b88f5789dc64a1aaef81eadb5e84", - "created_at": "2026-03-13T08:42:40.457103617Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 13, + "block_number": 404, + "hash": "e166c645ea150ba30847ebc3586e2cb56099a97d011285eb418df5207568bc25", + "certificate_hash": "d5ccc544d583b98214c26df8f5630aa5a3cd34cb32c6e175d7de90bfcf0a7f84", + "created_at": "2026-04-08T08:02:16.957877686Z" }, { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 17, - "block_number": 524, - "hash": "68a50882e883dcd0d3585470019ae0ac7ca7e1cac9954924db4fc4053e49db1d", - "certificate_hash": "de000391f70969e19cc9b4fc0e891e705862efd6e3db33d5e46fc23168e4459c", - "created_at": "2026-03-13T08:42:37.958953536Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 13, + "block_number": 389, + "hash": "7eb1629f31e24e99d7b01a80e472930819b2680857096e9d83534a60438cec6f", + "certificate_hash": "d7caaa201ced79a1ea5da38cc42f4f45961988eeeb47d179baea8b6d8e296614", + "created_at": "2026-04-08T08:02:16.450130721Z" }, { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", - "epoch": 17, - "block_number": 509, - "hash": "de21b56afaa8cc3b5da52e47cf9b4d48008776fd4be56edc14183f845b2e647e", - "certificate_hash": "5e081facf256356eff06125f17ee5086598dd741378d29995c5c84193d692333", - "created_at": "2026-03-13T08:42:37.459621046Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 12, + "block_number": 374, + "hash": "54ce475926b2c6b6b63da1a9b0da0c7b72c8b702110d0d6179359819bf3c69f3", + "certificate_hash": "a92a512719ba48622318e56242aded91a635c6ee2cfd3b1f7153d02d01c3ce06", + "created_at": "2026-04-08T08:02:13.951433315Z" }, { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", - "epoch": 16, - "block_number": 494, - "hash": "f4d4429bf0be29e0123df5c7025ee3b5c72e4518dde26cfbd972efffb0d54c23", - "certificate_hash": "0de6d05b637f733e43d406291c0c777db2414c99b7b172fbdc6177aef9c26948", - "created_at": "2026-03-13T08:42:34.962694153Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 12, + "block_number": 359, + "hash": "fb02a6391141ede332ee19cd455afde75d157f1835dfdac44c24135595581b8b", + "certificate_hash": "2663a8f72507c41a21717bb1d99d91be61a583c2797a51e1f858764b78d6160f", + "created_at": "2026-04-08T08:02:13.450128581Z" }, { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", - "epoch": 16, - "block_number": 479, - "hash": "a44dcdfd26424445973855ef06acdf9733081bbc88dabdcc2d4ef4b75068b029", - "certificate_hash": "3f4cce099508a3029191cb63949bc62127ad8d28c0aacd5ae2368dfa153f13e3", - "created_at": "2026-03-13T08:42:34.462550150Z" + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 11, + "block_number": 344, + "hash": "64280f41d2d21d0964a11e0d78c8a648ea4081b98756ea3b27045bf7f1303407", + "certificate_hash": "8c3e9ce6362a42d678dc571859e9d7a170860c643219909de82271c013e91e16", + "created_at": "2026-04-08T08:02:10.940520235Z" }, { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", - "epoch": 15, - "block_number": 464, - "hash": "299077260cca885a1ada70edf808cc07805f3cf2ee749ad4707f64e54ce97068", - "certificate_hash": "46898f7d982df7ad1a975ac75ace4d869fd5fa6d9c25f602084a5fb064c23e3c", - "created_at": "2026-03-13T08:42:31.960787647Z" + "merkle_root": "34474d6e1e96e5e14d564c8ac3263214a12c49cc615cc32cb55ccf32b609a81a", + "epoch": 11, + "block_number": 329, + "hash": "e885f4241c6a113353ac549fd801052a147e9e1c311e6f9adfc8bb8c9ffdf99a", + "certificate_hash": "a76674598a211858cc802f214095933e6773a9f4283c0484e15b546ca9df4a1e", + "created_at": "2026-04-08T08:02:10.443809505Z" }, { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", - "epoch": 15, - "block_number": 449, - "hash": "33619cb3b1638d4838af71936163b52e30e68c7852a930f8e7507b0f530a74a9", - "certificate_hash": "eceb1786c2fe9419ed4ec2205c30eb42e7a850c94852f69a6972335fa6a639ec", - "created_at": "2026-03-13T08:42:31.466588835Z" + "merkle_root": "34474d6e1e96e5e14d564c8ac3263214a12c49cc615cc32cb55ccf32b609a81a", + "epoch": 10, + "block_number": 314, + "hash": "8b3d2c4534b1c31b2e05c096d843f94af2c29c3602a8bb5adde7cf836246300e", + "certificate_hash": "b9efceb1f7982f6ffa03b7fcf619e5c7acf85f38f8f9a4bfbfc6aaa3cab960ce", + "created_at": "2026-04-08T08:02:07.950811662Z" + }, + { + "merkle_root": "bdc261629dafb803704af594b7413a21fd71a839724442d5c3a98a14b93ff782", + "epoch": 9, + "block_number": 284, + "hash": "a1d8b7f9e27177b333728b5b60e58df0fc1f648aca17fd20272cc5c4abea283e", + "certificate_hash": "95cb8d9ecc7d2dabd2ba61ef70cfbf507b7bbbdd37bf56f75da9a3d6fd142758", + "created_at": "2026-04-08T08:02:04.953069335Z" + }, + { + "merkle_root": "bdc261629dafb803704af594b7413a21fd71a839724442d5c3a98a14b93ff782", + "epoch": 9, + "block_number": 269, + "hash": "edc1e44acf43616d3c3047c197174961aac743494db3a4435e742cb913e8dc93", + "certificate_hash": "4244f6003097031946983cb4222232ec7b40c0e1c7aad9746003e17956ac80cf", + "created_at": "2026-04-08T08:02:04.440556998Z" } ] diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-snapshots.json b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-snapshots.json index 207964d5088..bb491c1f35e 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-snapshots.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/ctx-snapshots.json @@ -1,106 +1,122 @@ { - "299077260cca885a1ada70edf808cc07805f3cf2ee749ad4707f64e54ce97068": { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", + "13aca4e029fc45c1a6500f4bac602c82a64a2d30267cbcdcaf030ac6c234aac0": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", "epoch": 15, "block_number": 464, - "hash": "299077260cca885a1ada70edf808cc07805f3cf2ee749ad4707f64e54ce97068", - "certificate_hash": "46898f7d982df7ad1a975ac75ace4d869fd5fa6d9c25f602084a5fb064c23e3c", - "created_at": "2026-03-13T08:42:31.960787647Z" + "hash": "13aca4e029fc45c1a6500f4bac602c82a64a2d30267cbcdcaf030ac6c234aac0", + "certificate_hash": "06523f052e146468e7b64772a4521a827887e34002eb609c05a2276a25f40ccb", + "created_at": "2026-04-08T08:02:22.957853528Z" }, - "33619cb3b1638d4838af71936163b52e30e68c7852a930f8e7507b0f530a74a9": { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", + "3dc60bc257deee9b95b0ef311733f18532761a6848f661844724cf9f422e54de": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", "epoch": 15, "block_number": 449, - "hash": "33619cb3b1638d4838af71936163b52e30e68c7852a930f8e7507b0f530a74a9", - "certificate_hash": "eceb1786c2fe9419ed4ec2205c30eb42e7a850c94852f69a6972335fa6a639ec", - "created_at": "2026-03-13T08:42:31.466588835Z" + "hash": "3dc60bc257deee9b95b0ef311733f18532761a6848f661844724cf9f422e54de", + "certificate_hash": "d1d3ad13672fcec93c4b5ddbada8221a115d2fc23dd4776cffa104cd73bd3180", + "created_at": "2026-04-08T08:02:22.450345976Z" }, - "4b855b17bde321185cda09ec81bb99a69b7657bc63c98f5e905c0a12264d1c72": { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 19, - "block_number": 584, - "hash": "4b855b17bde321185cda09ec81bb99a69b7657bc63c98f5e905c0a12264d1c72", - "certificate_hash": "3370016aa061ba684a63f2c04b935c95f8705e07f8d31f43ac316a4c79499a7c", - "created_at": "2026-03-13T08:42:43.960095117Z" + "54ce475926b2c6b6b63da1a9b0da0c7b72c8b702110d0d6179359819bf3c69f3": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 12, + "block_number": 374, + "hash": "54ce475926b2c6b6b63da1a9b0da0c7b72c8b702110d0d6179359819bf3c69f3", + "certificate_hash": "a92a512719ba48622318e56242aded91a635c6ee2cfd3b1f7153d02d01c3ce06", + "created_at": "2026-04-08T08:02:13.951433315Z" }, - "68a50882e883dcd0d3585470019ae0ac7ca7e1cac9954924db4fc4053e49db1d": { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 17, - "block_number": 524, - "hash": "68a50882e883dcd0d3585470019ae0ac7ca7e1cac9954924db4fc4053e49db1d", - "certificate_hash": "de000391f70969e19cc9b4fc0e891e705862efd6e3db33d5e46fc23168e4459c", - "created_at": "2026-03-13T08:42:37.958953536Z" + "64280f41d2d21d0964a11e0d78c8a648ea4081b98756ea3b27045bf7f1303407": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 11, + "block_number": 344, + "hash": "64280f41d2d21d0964a11e0d78c8a648ea4081b98756ea3b27045bf7f1303407", + "certificate_hash": "8c3e9ce6362a42d678dc571859e9d7a170860c643219909de82271c013e91e16", + "created_at": "2026-04-08T08:02:10.940520235Z" }, - "a44dcdfd26424445973855ef06acdf9733081bbc88dabdcc2d4ef4b75068b029": { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", - "epoch": 16, - "block_number": 479, - "hash": "a44dcdfd26424445973855ef06acdf9733081bbc88dabdcc2d4ef4b75068b029", - "certificate_hash": "3f4cce099508a3029191cb63949bc62127ad8d28c0aacd5ae2368dfa153f13e3", - "created_at": "2026-03-13T08:42:34.462550150Z" - }, - "ab8735ce18a45ab7596137687a30949eb37686aaa4bb36399858447b87f315cc": { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 19, - "block_number": 569, - "hash": "ab8735ce18a45ab7596137687a30949eb37686aaa4bb36399858447b87f315cc", - "certificate_hash": "9e157d3d75723d3b56a4407302b2c46ee3d97d9edfa6ed1cdca4d3dca3d69423", - "created_at": "2026-03-13T08:42:43.460595207Z" + "6eab9551396624e93441489066d49c259ebc9fea66b895a41b6c01ea9503b0a6": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 14, + "block_number": 434, + "hash": "6eab9551396624e93441489066d49c259ebc9fea66b895a41b6c01ea9503b0a6", + "certificate_hash": "cd2f624deb3c2f871cbaa31974bc6d93b326fb7dd3172a314545466a00a6575a", + "created_at": "2026-04-08T08:02:19.954436573Z" }, - "aee5799b62df6ae3d5613e6d5b949f1f940ba2c0bb599e679749797069a65564": { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 20, - "block_number": 614, - "hash": "aee5799b62df6ae3d5613e6d5b949f1f940ba2c0bb599e679749797069a65564", - "certificate_hash": "f74444221dd32e37435b8178d01d39ef42ab525e23022f854019f5e0bf5e8838", - "created_at": "2026-03-13T08:42:46.959410539Z" + "7eb1629f31e24e99d7b01a80e472930819b2680857096e9d83534a60438cec6f": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 13, + "block_number": 389, + "hash": "7eb1629f31e24e99d7b01a80e472930819b2680857096e9d83534a60438cec6f", + "certificate_hash": "d7caaa201ced79a1ea5da38cc42f4f45961988eeeb47d179baea8b6d8e296614", + "created_at": "2026-04-08T08:02:16.450130721Z" }, - "baf02bcf857a2e9a248b26b3e35c0145f910158d124570685e41f8108a0eae2e": { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 21, - "block_number": 644, - "hash": "baf02bcf857a2e9a248b26b3e35c0145f910158d124570685e41f8108a0eae2e", - "certificate_hash": "2a9785896933f0fe7a4715a7bb73d1d03cffe68b6a2e91508c405a8eda48b441", - "created_at": "2026-03-13T08:42:49.956261945Z" + "8a34c53d06d177de6d5da3e10fba1a2b7f601e2fccfce6733c3ebc6aa4255235": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 14, + "block_number": 419, + "hash": "8a34c53d06d177de6d5da3e10fba1a2b7f601e2fccfce6733c3ebc6aa4255235", + "certificate_hash": "5e328c1dec990637d363a2c9458811697947143ab7486fee49cfa2ad114dcab6", + "created_at": "2026-04-08T08:02:19.450916740Z" }, - "cf1ef6f5993208da51c6e80e57ed43e15bd8eb8a67658f361f273506cd6349b8": { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 18, - "block_number": 554, - "hash": "cf1ef6f5993208da51c6e80e57ed43e15bd8eb8a67658f361f273506cd6349b8", - "certificate_hash": "da61a594bafadc73e7674199a7daf20821878a57cc37b1344e2f04d5fae9e056", - "created_at": "2026-03-13T08:42:40.957769670Z" + "8b3d2c4534b1c31b2e05c096d843f94af2c29c3602a8bb5adde7cf836246300e": { + "merkle_root": "34474d6e1e96e5e14d564c8ac3263214a12c49cc615cc32cb55ccf32b609a81a", + "epoch": 10, + "block_number": 314, + "hash": "8b3d2c4534b1c31b2e05c096d843f94af2c29c3602a8bb5adde7cf836246300e", + "certificate_hash": "b9efceb1f7982f6ffa03b7fcf619e5c7acf85f38f8f9a4bfbfc6aaa3cab960ce", + "created_at": "2026-04-08T08:02:07.950811662Z" }, - "de21b56afaa8cc3b5da52e47cf9b4d48008776fd4be56edc14183f845b2e647e": { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", - "epoch": 17, - "block_number": 509, - "hash": "de21b56afaa8cc3b5da52e47cf9b4d48008776fd4be56edc14183f845b2e647e", - "certificate_hash": "5e081facf256356eff06125f17ee5086598dd741378d29995c5c84193d692333", - "created_at": "2026-03-13T08:42:37.459621046Z" + "a1d8b7f9e27177b333728b5b60e58df0fc1f648aca17fd20272cc5c4abea283e": { + "merkle_root": "bdc261629dafb803704af594b7413a21fd71a839724442d5c3a98a14b93ff782", + "epoch": 9, + "block_number": 284, + "hash": "a1d8b7f9e27177b333728b5b60e58df0fc1f648aca17fd20272cc5c4abea283e", + "certificate_hash": "95cb8d9ecc7d2dabd2ba61ef70cfbf507b7bbbdd37bf56f75da9a3d6fd142758", + "created_at": "2026-04-08T08:02:04.953069335Z" }, - "e8a8b56153f2024a1cd92b084c17832433ce0916bb080a46d840253faad8cf2e": { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 18, - "block_number": 539, - "hash": "e8a8b56153f2024a1cd92b084c17832433ce0916bb080a46d840253faad8cf2e", - "certificate_hash": "ea0ccdc9cc0418c97284c5b3723f9a278408b88f5789dc64a1aaef81eadb5e84", - "created_at": "2026-03-13T08:42:40.457103617Z" - }, - "ebf66d7e7cfe9d9e6259a67d96523d1ac17a18c36174102272be41c73640d3d1": { - "merkle_root": "887d90690a81a07484320f4a4f6e993c695e65d8a19834fec17a8927cea8e6fc", - "epoch": 21, - "block_number": 629, - "hash": "ebf66d7e7cfe9d9e6259a67d96523d1ac17a18c36174102272be41c73640d3d1", - "certificate_hash": "76e327c7c3d155f90a46a5e754c7e55851ffd126d8125d745f65164635302015", - "created_at": "2026-03-13T08:42:49.457629273Z" + "c1fc28e5461e6762a4dfb1ec781b0ba2244a3272a5f82668d8c704ef026cf1ad": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 16, + "block_number": 479, + "hash": "c1fc28e5461e6762a4dfb1ec781b0ba2244a3272a5f82668d8c704ef026cf1ad", + "certificate_hash": "f664ef08a4591bbaedb182fcb214bd298b0d47ffec4dcaf269c7adabc5abd4a0", + "created_at": "2026-04-08T08:02:25.459347725Z" }, - "f4d4429bf0be29e0123df5c7025ee3b5c72e4518dde26cfbd972efffb0d54c23": { - "merkle_root": "b577f881f72e0483dc15bd894390974d2b4fe6fbeeefbf6d36fd884826934b91", + "cdee28f8bb38a99637c8fa098b033866d22f09968000b088ea32c912b5fe2f41": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", "epoch": 16, "block_number": 494, - "hash": "f4d4429bf0be29e0123df5c7025ee3b5c72e4518dde26cfbd972efffb0d54c23", - "certificate_hash": "0de6d05b637f733e43d406291c0c777db2414c99b7b172fbdc6177aef9c26948", - "created_at": "2026-03-13T08:42:34.962694153Z" + "hash": "cdee28f8bb38a99637c8fa098b033866d22f09968000b088ea32c912b5fe2f41", + "certificate_hash": "77a4abf5c99317021a6c671111eb75db38dfbcdc504d8e912113e140308548c1", + "created_at": "2026-04-08T08:02:25.942198633Z" + }, + "e166c645ea150ba30847ebc3586e2cb56099a97d011285eb418df5207568bc25": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 13, + "block_number": 404, + "hash": "e166c645ea150ba30847ebc3586e2cb56099a97d011285eb418df5207568bc25", + "certificate_hash": "d5ccc544d583b98214c26df8f5630aa5a3cd34cb32c6e175d7de90bfcf0a7f84", + "created_at": "2026-04-08T08:02:16.957877686Z" + }, + "e885f4241c6a113353ac549fd801052a147e9e1c311e6f9adfc8bb8c9ffdf99a": { + "merkle_root": "34474d6e1e96e5e14d564c8ac3263214a12c49cc615cc32cb55ccf32b609a81a", + "epoch": 11, + "block_number": 329, + "hash": "e885f4241c6a113353ac549fd801052a147e9e1c311e6f9adfc8bb8c9ffdf99a", + "certificate_hash": "a76674598a211858cc802f214095933e6773a9f4283c0484e15b546ca9df4a1e", + "created_at": "2026-04-08T08:02:10.443809505Z" + }, + "edc1e44acf43616d3c3047c197174961aac743494db3a4435e742cb913e8dc93": { + "merkle_root": "bdc261629dafb803704af594b7413a21fd71a839724442d5c3a98a14b93ff782", + "epoch": 9, + "block_number": 269, + "hash": "edc1e44acf43616d3c3047c197174961aac743494db3a4435e742cb913e8dc93", + "certificate_hash": "4244f6003097031946983cb4222232ec7b40c0e1c7aad9746003e17956ac80cf", + "created_at": "2026-04-08T08:02:04.440556998Z" + }, + "fb02a6391141ede332ee19cd455afde75d157f1835dfdac44c24135595581b8b": { + "merkle_root": "4e3c85a42c80de49984c58e70445429fba10a656ace25a42fbadffaf80536707", + "epoch": 12, + "block_number": 359, + "hash": "fb02a6391141ede332ee19cd455afde75d157f1835dfdac44c24135595581b8b", + "certificate_hash": "2663a8f72507c41a21717bb1d99d91be61a583c2797a51e1f858764b78d6160f", + "created_at": "2026-04-08T08:02:13.450128581Z" } } diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/epoch-settings.json b/mithril-test-lab/mithril-aggregator-fake/default_data/epoch-settings.json index d5406ab2858..f5337da5f73 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/epoch-settings.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/epoch-settings.json @@ -1,5 +1,5 @@ { - "epoch": 22, + "epoch": 16, "signer_registration_protocol": { "k": 70, "m": 105, @@ -7,33 +7,33 @@ }, "current_signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3135332c3232332c3235352c3231382c36362c35312c3131362c39322c3139332c34372c3234322c3134372c36322c3135392c3235342c34352c34342c3232322c31332c37392c32372c3138322c32312c3133352c32312c3131352c3133352c312c352c3138382c3232392c38342c3135302c34342c3234362c3234382c3235312c3135372c3231322c38352c3136342c39312c3232382c36352c3233362c3231332c3130362c3133312c31342c36312c35302c37382c3232372c3134382c3232312c33302c3230342c3232362c3235322c37322c31392c39362c3230322c302c362c3134322c3139342c3138302c3233382c39382c39322c3131332c34352c3230352c372c3139312c3132392c3136352c3230392c37382c3134302c3234382c3134302c35342c32352c3132392c3132332c38302c34352c35302c3138322c37362c3135332c3234352c32342c34385d2c22706f70223a5b3136332c3231392c3136362c3133352c3235332c3138332c3235302c37332c31352c3137362c3234322c38352c37352c37302c3139322c3132312c36372c3130352c3139362c34372c36302c3135312c3235302c3130302c39392c3138392c3232342c3232352c36352c3235312c3131332c3139372c3130332c3233372c3231342c3230382c38312c382c3233372c3232362c3139312c3135302c3231302c3136382c33312c3137342c34362c3232312c3137362c39362c3232332c38362c35332c34342c3233362c37302c3136382c3130352c31382c3135312c31392c35332c3231392c33312c3134332c372c3132372c3137302c38312c35372c36342c37392c3133312c332c3133342c35342c3232392c3138332c3230392c3130382c3131342c32342c3134322c34372c392c33382c33322c34372c3234342c37312c32322c37382c37312c3233332c3130372c3137315d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138322c3234332c3231312c37342c3131322c3131312c3134352c3230312c392c3139322c3130322c3133352c3130352c3136342c3136332c382c3232362c342c3131322c3234352c38362c39312c3235302c37342c36372c36342c3230362c3233382c34342c35382c3138392c38342c3131322c34342c37382c3130392c38302c35322c37332c3137302c36302c38392c39342c32352c31362c3131332c3231322c3138312c3234352c3131332c3135322c3131322c37352c3233302c35362c34362c34312c3231302c3232352c3133392c3139342c3134302c3131332c335d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3137312c3132392c38352c3230352c3131312c3235352c3130372c3231392c31382c3130342c36352c3233392c37302c3233322c35352c352c39352c3136322c38332c3134342c3130382c3130362c32372c35372c3130382c34302c3233312c3133392c3136332c3233372c3138362c3132382c3139322c33392c33362c3130352c302c38382c35332c38322c3130342c3232312c3132392c3136352c3231342c3234362c392c36322c322c3136342c35302c3131342c3136372c3131332c39322c39312c3134372c3234372c3133382c3138362c37352c3230332c3235312c35342c392c3234372c37322c32322c3134332c3136332c3233332c3135302c37322c3131392c3135352c3137342c3134312c3232392c3233392c3138312c32312c34322c3134342c34362c3139362c3235342c33392c3233342c3131322c3233382c3135322c32302c3235342c3135332c3139342c3135355d2c22706f70223a5b3133392c312c3233352c32302c3137312c3136332c3135382c32352c35382c3231302c3133342c3230342c38332c3136302c3135312c38352c35382c3233302c3136392c3133392c3130322c3232362c3234312c3134302c31302c36352c3133322c3232392c3232362c32322c3235302c3135362c38382c35392c38312c3131332c36322c3230332c3233312c3235302c3232302c3134392c392c3138322c3235302c3130312c3132382c3134332c3137352c332c3233372c35342c3132312c3138342c3139392c36332c33382c37342c3132322c3132372c32322c3235332c32362c3234342c3137362c3136302c3139312c3234342c36332c3230342c3131372c3131312c3131372c3133362c3137302c32312c3136322c37362c3231322c32362c352c342c3132302c3230322c3230312c392c36332c3131362c38392c3131342c38372c3133332c3132382c33362c3231362c3136395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3131332c39382c3232302c34332c34312c3139312c3235352c3234382c3134372c3230312c31332c37322c3235332c3135312c3136362c3134392c38322c3131392c3138322c38312c3139342c3235302c3130342c3135312c38392c3231332c37332c3138322c3131322c3136322c3130352c3133362c312c3137392c3234332c3135352c3234342c3139392c31332c3231332c3234392c39382c3131312c38342c39352c3138332c3131322c3235342c3233312c3231332c3133302c332c3137342c3134362c33332c37382c39352c3139302c39342c37372c32332c3136372c32372c325d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3134392c3231352c3134352c3135352c3131362c31392c36362c3230312c3136382c3130312c3139352c38372c3139312c3231362c3133332c39302c3139302c3139342c36392c38352c3133342c3230312c3235352c38332c3134342c3233382c3231382c34382c3130392c3233332c3130392c32342c3234302c3135312c3134322c3138312c35332c3230332c3233352c3233392c31332c32362c3132362c3137392c38372c3235302c3139302c3230372c31372c3231352c3131382c3130332c38352c3134382c39322c352c3133312c38352c39362c3233372c34312c3135352c3230392c31362c32372c35372c3232332c33382c34382c35302c3233302c3135362c3137342c35362c3137322c37342c3232382c34352c35312c32392c332c3131302c3130312c39372c3138352c32312c3232392c3130322c3233332c33392c3134312c31322c3233322c3133372c3135352c33365d2c22706f70223a5b3133362c3230302c33312c3230312c3137392c31322c3235342c3139332c382c3231362c39322c3130352c342c3136302c3138332c3234312c3131372c3131312c35312c3137302c3134322c35312c3134332c37322c3133392c35372c3234392c3134382c3132382c38372c3138332c39352c3132362c3134312c3232332c39332c34372c31392c3232382c34302c3130312c39372c3135312c3138332c3135322c3231392c3130382c3137372c3133392c31322c3232372c3138352c3131332c3135312c3136302c3138332c3232392c32322c392c3139392c3233332c38332c3235302c35382c3133362c38332c322c3232322c3137392c32352c38372c3133362c3138332c3139322c33312c3139302c3139382c3235342c32332c33362c31382c3235322c3231362c39362c36332c39312c3136312c3231372c36352c3233332c3136322c3136322c3139322c3138382c372c38355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b37352c3135302c3137392c3231342c32342c3138372c3230352c3139362c3138322c3234302c38302c32342c3230302c33382c3135362c3135332c36342c3132382c33332c31332c37342c3234342c3130342c3233312c3139332c35312c3137342c3232392c3230362c3235342c3235312c35342c39322c3231372c37322c3133392c3234332c3230342c3134332c3235302c3233312c3231352c3232322c3232382c38382c3136392c36382c31392c35312c31312c33392c3138342c38322c35302c3131362c38322c3132312c3137312c31372c3235302c35312c37332c3231352c335d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3134312c3232302c3133372c362c3131362c3232322c38362c33342c38302c37372c3136392c3136352c37342c31382c32312c36332c32352c38342c34302c33362c3133342c3134342c342c37392c3232382c3133372c3130382c3136372c3138352c31342c3139312c3135382c3233392c3133372c3134322c39302c3230392c34382c35342c3138322c34392c3230332c3133302c3132342c3233332c3130342c3136382c32302c31362c34322c3137362c3231302c3136392c37382c3134352c3233372c32372c3130322c3230302c3230392c3133352c342c37302c3131312c3235302c3130312c3138322c32382c3133362c3135382c33372c33362c3132332c3133332c33312c3231362c31302c3233312c3234392c3233362c38392c38302c37332c3233372c3139362c3137302c3233372c382c3131342c34392c3131342c3230302c3139322c3235332c36332c3233315d2c22706f70223a5b3134372c3233372c3234312c3230382c3234342c3134352c34322c3235312c3230312c38392c3131312c35322c3134382c302c37362c3138372c34312c32352c3231372c31362c3231382c3235322c38332c36332c3133392c3233352c3233312c3130382c3234382c352c3136382c36302c3139392c36382c3135332c3139332c3232362c3232332c3132342c35312c3231372c3136332c3232382c3131332c3130382c3231312c3130382c3138392c3138322c3138352c3138322c3133372c34362c3231332c3137372c3133372c352c3231362c3234302c3137382c3130342c3132372c33312c37302c3139352c32372c3233372c33352c392c3232372c39322c3132392c37322c3231322c36332c32332c31382c3137302c34382c32342c35312c38382c3139362c3134302c3233392c3232302c32392c33362c35302c3135362c3133322c32332c3138362c3137332c3137342c3135365d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3134392c3231392c37312c3230372c372c34312c34332c38312c3234382c3230342c33372c3233342c39312c3137372c3131332c3139312c31372c3130322c34372c372c3132392c39332c39382c3233322c38382c3136332c32332c3132362c3135332c31352c37382c3134342c3235322c3232322c3233352c3134322c3134322c3136302c3130302c3230372c34342c3130332c3136312c3131352c3230382c3232312c39302c3137312c33362c3138312c38342c342c3131372c36392c33332c3130392c3133342c3230392c35392c332c3234312c3231302c3235312c31345d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0 } ], "next_signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3137352c37392c3233332c3131322c3233322c33312c3135352c34312c3232342c3132322c36302c3235332c39332c3232312c3132372c34352c3135342c3232352c3231382c3234362c3234322c33322c3234332c3138332c33302c39382c3138322c38332c38382c3231392c31302c3133312c3230302c3234392c38352c38312c3130322c37312c3136392c3137322c3235332c3231382c36392c3136392c3135312c3137302c3132382c33362c342c39362c3138392c3135372c39382c3133382c35312c3231332c3233302c34372c3135382c39362c3232342c31362c3135322c3230362c3130362c34322c3138312c3231392c3130312c32382c3234362c3135302c37332c3234302c3234322c3131322c3131312c3232312c3130302c3137362c3131302c3130302c38382c3134302c3131372c3133322c3233312c38322c3132312c35372c3131362c3235342c3232392c39312c3139352c3230365d2c22706f70223a5b3134372c3137352c37322c3132362c33322c39372c3231322c3233332c3133392c3231322c34302c34392c3230392c3235342c3133302c38322c32322c31352c35382c33302c3233352c3230302c32362c3130312c3131352c3138362c3135302c39382c3233302c3231352c3230392c33302c3138392c3130332c34392c3234382c3234382c34362c37362c39362c32342c3138382c3233312c3135342c34342c3133322c33352c3135332c3136312c3138342c3134362c3130342c37322c3230372c32372c39382c3232372c37352c33382c3132302c3234312c31342c3233332c3134332c38362c3131372c3131392c3230312c3133332c39372c39312c32302c3131382c33322c38362c3131332c31392c3233362c392c32362c3135392c38322c36392c3130342c3134312c37332c3130332c36302c34332c34372c3132312c3230312c37322c32392c3139362c32365d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35372c31312c3133322c3135372c37332c39392c3139372c3137342c3137382c3137392c3131312c3137372c3135302c3136322c3133382c3235342c3137332c3138362c3139312c3138302c3130352c39392c36342c3231392c34332c3231382c31382c36392c32302c3234382c38312c3235322c3231392c3136352c3230322c3134322c3234312c3231332c37342c38392c3131342c3139372c31382c32372c3138382c3138332c3232302c3133372c33322c33322c3133372c3138302c3139302c31372c3232332c33352c37342c3132342c352c3230372c31302c34392c3234352c31335d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3134372c3137302c3131372c38372c35372c3231332c3139332c3138392c3131332c3131352c34302c3235352c3230392c3232392c3132392c3130382c35382c3138342c32342c3231352c3134332c3139362c3230322c3132382c3232322c37322c3132352c3134322c3131322c38312c3139312c3230362c3135362c3133322c3136322c36352c3135362c39342c35332c32302c3136362c342c3134352c32322c3130332c3234362c37372c3231342c382c3234352c3136392c3230382c3138332c3235302c3135372c3136322c38392c35352c37372c3130312c3134372c3233302c38372c3135342c39342c3131372c3139372c3231332c3135302c3231332c3134312c33312c3232372c3139352c3230342c33352c3234302c3231392c3139332c3139392c35332c3232382c3137342c3233302c3230322c3233332c32372c38382c3231382c3235312c3133362c39372c35332c3132392c35352c3136385d2c22706f70223a5b3136342c38312c3136312c312c3232362c3135322c38392c33382c38382c3139342c38352c3133352c3132332c3138342c3135342c3139342c3139332c31312c3132312c35382c3230392c3231352c35352c33352c3231362c3134332c3233332c3230312c39392c3235302c362c3139372c37392c3131352c3130342c33322c3231382c3230312c34322c3232332c35382c3137302c3136362c36342c37352c3138382c37362c3137372c3138302c3233312c37382c3234362c3132332c3135312c36382c3136312c34342c36392c37382c33322c382c352c35332c3233312c3136382c34332c332c3230392c3231362c3231332c322c36392c3230382c3138392c3133342c36352c3133332c3232382c38342c38322c3134322c3234322c32322c34362c3133382c39312c34382c3139322c3133392c3134392c3230352c3132302c32342c36362c38352c39355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3137362c3137362c3130352c36392c3131332c3230312c33362c34392c3132382c35372c32342c31332c3134392c332c3232372c3233362c3234362c35392c3134352c3135382c3139312c3231342c3232382c32352c3135382c3231392c3136352c3231352c3135322c3230372c36372c37352c3139372c37362c34372c3130352c3132322c3231312c3134362c32342c31332c332c3139362c3132392c39362c3132342c39302c37382c3136372c3131302c3136312c3235312c3235322c3233352c3137322c3130392c39382c36302c32322c3232382c3130352c3134382c3233352c355d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3138302c3136352c3231332c3132312c3131302c3138312c3134342c37332c3135392c3235312c3234372c3135312c32322c3132302c35302c312c3132302c3234372c3131372c3131372c3138352c32322c3233302c3132352c31392c3139332c3233372c3230322c37382c3134372c3138352c3133342c3134382c38312c392c3134312c3137362c3137392c3234352c33332c3135352c36362c34372c32372c36382c37322c3136352c3135382c31392c33312c342c3133372c39382c3232392c3235302c382c38362c3132392c3133302c38392c37322c36362c362c32372c3139392c3231342c3137322c33322c3234382c3230372c3130312c302c35342c3137372c35332c302c34362c3133322c37372c3137342c3232322c3131302c34312c38312c39352c3138302c37332c3133352c3132322c31362c3134372c3132392c31392c3134352c3130312c3132365d2c22706f70223a5b3138322c3231312c36392c3233312c39392c35312c3130362c3133302c3231322c37332c3234382c33352c3130352c35372c3230372c3139382c3132362c37362c3233392c3135382c3232322c34302c3133302c3132322c3137372c3131352c33322c3233352c38302c35302c3136372c34302c35392c3136382c32302c34302c3133382c3136342c3135322c3231372c37382c3138362c3130362c3235312c3133392c3231352c3234362c38342c3134392c3137352c3131372c3137322c3230352c3130392c3132302c3130352c3136382c32302c39382c32372c3230352c3132332c362c3133362c392c3131392c3136352c31392c3132332c3130362c32392c3230302c3136342c3230392c3139352c34332c3231362c3133372c3232382c3130382c3138362c3134322c3137332c3138372c3134322c33382c3135382c3133342c37322c3136352c3132302c3139312c3231392c36322c3133382c32325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b32372c37342c3135302c3232362c392c3131352c3230302c33302c3135362c32342c3234382c3135382c36392c3132372c3138302c3130372c3232382c33332c3232362c3134372c33392c3233372c33332c3135372c3230372c3138312c39332c3138362c37312c37312c3231362c3235332c3139382c3230382c3139312c3234362c3233382c36362c3231372c39372c3139302c3130362c37372c3233392c3139332c32322c3135372c37372c3137322c3135362c3232362c3132392c3135322c3231382c3135352c3137372c3234332c3231372c3135392c35352c38382c38362c3231322c31305d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3133382c3230322c3233302c332c3136362c36382c3138332c3232302c32302c382c3230352c3130362c3233322c3232382c3234302c3130382c38302c3131342c38342c3135342c35342c3233322c39342c3137302c38372c3132302c3138312c39392c3131342c3139372c3133342c34322c36392c36342c3137362c3134392c3230322c3138302c37332c3135332c38382c3135392c3137342c35302c3137362c3135372c36362c3139362c322c3131342c35352c3232362c35372c31372c39352c3232302c32322c35322c3233322c33392c3230302c3230392c3130302c3234342c3131332c37342c37352c3139302c3133312c3135382c3130392c352c3137312c392c3135382c3232332c3133372c35342c38332c3138342c3234342c3234362c37392c3136312c3133342c3230372c35302c35322c3235302c3131332c3138362c3138322c3230352c382c3234352c36305d2c22706f70223a5b3136362c3133302c3137382c3138342c3232392c3136382c34332c3131322c3134322c37332c392c33302c3138352c3232322c38362c3231312c35342c34342c3133392c3130322c36382c3231392c3230362c39332c3235332c38352c32362c32322c3136382c3231332c32322c3134352c3234342c36362c362c38382c35372c3231302c38372c322c3233372c35312c39372c34352c32302c35352c32332c3132352c3134342c3130392c35362c3234312c38332c3131372c31382c31382c33352c3138372c36362c36342c3139392c3231352c3231302c3137322c3234312c38362c37352c37392c36302c36392c36372c3137302c3137382c37302c3138322c3233362c3230382c3134352c3132302c3139372c3138352c3132362c3130392c3139392c3234352c3135332c3136382c3234312c3139352c3138322c3235302c3136342c3231382c3132382c3136322c3139345d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3235312c34352c3233392c3135332c3134392c32352c38372c3133362c3133302c34312c31382c3131372c3230302c3230322c31302c3135392c3139312c3233322c36392c3131302c3233332c3133332c34332c3233352c36342c332c3133302c3134302c3230322c3230342c3132352c3232382c3231342c3233372c3139362c3134312c3134392c35312c3135352c3139382c33332c3230322c3131342c37322c39372c3135342c37352c34322c32332c37312c31342c3136332c34372c3232332c35342c3234352c3232302c3231392c33372c37312c38302c3230382c36332c305d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0 } ], diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/mithril-stake-distributions-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/mithril-stake-distributions-list.json index a05a0844960..d2683a74df7 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/mithril-stake-distributions-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/mithril-stake-distributions-list.json @@ -1,50 +1,50 @@ [ { - "epoch": 22, - "hash": "a3b223c57e59d37a9be5bd5cf7bcc601b89b56ba7e6dfebaa57d8d91a0a06cc6", - "certificate_hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "created_at": "2026-03-13T08:42:51.463083053Z" + "epoch": 16, + "hash": "be201f57de8b6ef8cbab31ef29a93c8395b02afa343f5d13367ab6f6c6f7ee92", + "certificate_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "created_at": "2026-04-08T08:02:24.455466649Z" }, { - "epoch": 21, - "hash": "c2cadb32181d511db1710dbdb36e8b9162272ea6321dd7c38920b410e975d42e", - "certificate_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "created_at": "2026-03-13T08:42:48.456284020Z" + "epoch": 15, + "hash": "57f80e237e2bf1fb5ad7e86dc39b079dce088141de2f6a31ed4ea516e51fa28f", + "certificate_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "created_at": "2026-04-08T08:02:21.449400115Z" }, { - "epoch": 20, - "hash": "2691204f662fe329515b29caa4e1d5c5052ceb00890a5337dbe824694ffcb08e", - "certificate_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "created_at": "2026-03-13T08:42:45.460416623Z" + "epoch": 14, + "hash": "d6941340b73b76afe40a839c4fbc1c2b53de0dbfd7b2d42e039616c715e2535d", + "certificate_hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", + "created_at": "2026-04-08T08:02:18.444833762Z" }, { - "epoch": 19, - "hash": "5efd11b6a941e1f87eb6907919b78475fe342ebfc25f489deb4efca11335adbb", - "certificate_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "created_at": "2026-03-13T08:42:42.461431050Z" + "epoch": 13, + "hash": "3f69d9811adf1fc5b3904c70f281eb229a9faf66f95634c64fd67b430b545f6b", + "certificate_hash": "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1", + "created_at": "2026-04-08T08:02:15.445173546Z" }, { - "epoch": 18, - "hash": "43a2b42938469846f9bafe988ee02e281c2b184593ea28b278b2b4c299cb8a9d", - "certificate_hash": "135c6de9fa65ffd328b00918df0b40b51df9a9f7394cdec81a9a2b7368bfe545", - "created_at": "2026-03-13T08:42:39.457806478Z" + "epoch": 12, + "hash": "daa3817a27eda1238ba4d0d15adf2235823a0ab4f39288faacee369e331a258a", + "certificate_hash": "c61b0881d91dd098da5083d1e01746ba6a50e88880655bac4d76b6a4c3f052a1", + "created_at": "2026-04-08T08:02:12.461542673Z" }, { - "epoch": 17, - "hash": "eb15b4008919882202f760cb758675dc5e7d136917093b0e9e93aa1553f3cafa", - "certificate_hash": "7d8ad90cfa2289b90a4a153a6660bb77f08a1ae11297f4c1a8fe848674a47217", - "created_at": "2026-03-13T08:42:36.462477235Z" + "epoch": 11, + "hash": "fa8493f779ea9a4bff2fe966c631deeab686a4a80b51112f34e2d71cd9ef2a22", + "certificate_hash": "8b099770c556da485b1798e07af0722b2174e57aa8c668c276460a6c121d9317", + "created_at": "2026-04-08T08:02:09.444348417Z" }, { - "epoch": 16, - "hash": "d538d953ff5ebfa6e10835472115feb54ef6823612e9ecd6b288be1596387bd6", - "certificate_hash": "1c4aa48489936100fb4decb172641cb28599792ffe78103917d3844c98866e8a", - "created_at": "2026-03-13T08:42:33.457649602Z" + "epoch": 10, + "hash": "ff34072e95de6deaf796985a194c635051b489fc35e909c711f7420bae2f05c5", + "certificate_hash": "0f8f818a070cd6034f334226472382e57700c261ac9208e4ee64f50d60638d33", + "created_at": "2026-04-08T08:02:06.455402587Z" }, { - "epoch": 15, - "hash": "723223d33bdce36864fa8244410b21a8c2c88eeafb4ff9da779eae4261009aba", - "certificate_hash": "326c537f77f8e8c05c6cb6ed59b95570f3a13b975fb0911ce8cfcc84a1e6d18a", - "created_at": "2026-03-13T08:42:30.457971328Z" + "epoch": 9, + "hash": "f2e712accb656d08398572c653972b091e11611dba998e98d8fade0c59e6597d", + "certificate_hash": "767f4dc796ac98eb14e4b319b6e53aadf9742e81a9a94b1d977c1e6b735cdc73", + "created_at": "2026-04-08T08:02:03.449714803Z" } ] diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/mithril-stake-distributions.json b/mithril-test-lab/mithril-aggregator-fake/default_data/mithril-stake-distributions.json index 0e871874b1c..ba1ee01b4ca 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/mithril-stake-distributions.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/mithril-stake-distributions.json @@ -1,230 +1,230 @@ { - "2691204f662fe329515b29caa4e1d5c5052ceb00890a5337dbe824694ffcb08e": { - "epoch": 20, + "3f69d9811adf1fc5b3904c70f281eb229a9faf66f95634c64fd67b430b545f6b": { + "epoch": 13, "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3137342c34342c3138362c3232332c3135342c3139382c3230312c3234332c32372c39362c3132382c3235322c3230362c36312c3135392c36352c3130342c32322c3230342c34362c3132392c39362c3135332c3139352c3134342c3234382c3234382c3133362c3230362c312c3134362c32332c37352c3231332c39392c3130382c3133362c3139372c352c3133392c32302c3231392c3132332c3231332c3130362c3130312c3235302c3138312c32352c3130352c3232372c3233302c3138362c3138302c37392c3234362c3131332c3135302c36382c3130372c33332c31312c322c3230352c3132322c36322c35312c3137322c3131302c3137342c3230342c34392c3235342c3234382c3137322c36382c3134392c37332c31372c3230322c3136332c3132352c34372c38332c34372c3230392c35372c3135322c34312c3235322c3139392c34332c31362c3137392c3234362c39355d2c22706f70223a5b3133392c35342c3136302c3130332c34352c3233302c35372c3132392c37312c372c3234382c3138362c3136332c3231382c3138372c31312c3137342c3133332c33302c32362c3232392c33352c3130372c3230322c35382c34392c39322c3133312c38302c3134332c34322c32302c3134322c3131322c3130392c32332c372c33302c3130302c3139382c3231382c35302c3231302c39392c35302c34392c34322c3231372c3138352c3235302c32382c3133372c39352c3231312c3133332c37342c3232332c3231352c3232312c34362c3132332c32392c3231382c37352c3132392c3139332c38362c3133332c3235302c38352c3232372c3235332c3130342c37312c3130352c3134302c3135362c3234352c3133342c3233362c36392c36322c3134322c38372c3234362c38372c3133362c35342c3131382c36332c36362c3130392c3131372c3231382c3234332c38355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b322c3235302c312c3132332c34392c3231392c3230332c3138352c3232342c3230342c36352c3136302c34342c3139352c3138392c3138342c32382c39352c3131302c32302c3138322c3139312c38302c3136352c3135312c33362c31332c3133312c38322c39332c3232332c38382c35312c3135372c3132332c3130392c31302c3133362c37382c3130382c352c3135362c3134312c3136362c3131372c3233372c32332c33302c3138362c36362c3133332c38342c3234362c3233392c36372c3133302c3132392c3135302c3136302c35342c3231352c39322c3234342c335d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3134302c3132362c3130382c36332c3231332c3230362c3231352c33342c31312c3233362c3134332c3138322c36322c35362c3230382c31312c3134362c33302c31312c3130392c3132312c34312c3230352c36382c39312c36302c3132362c3230302c33362c3134312c35392c3131312c3139342c3139352c33362c3139392c38342c3137322c36362c3232342c3230392c3134382c39342c3133312c38312c392c38382c3132302c31302c3131302c3131332c3132332c38372c3231332c3132342c3138372c3130372c3136362c39312c3136362c33322c34302c33352c3234382c36382c32382c3135382c32302c3134352c37372c37302c37392c3130322c35322c39332c37302c3136382c36392c3135342c38322c34312c36362c33352c38312c3233302c36312c3130382c3231382c34372c39312c3132312c3234392c3135362c31352c37342c38315d2c22706f70223a5b3134302c3233342c3130392c36342c38312c34392c37392c33352c35392c3130382c3233382c3135372c3232392c3133372c39352c3232312c36312c3233362c3133312c38382c3136322c33322c3231382c35372c36362c3232382c35302c31322c36362c3235352c31342c38382c3233302c3131352c3138352c37382c34372c39382c382c3234372c39322c3230392c3230362c3131302c31302c37372c3132362c38342c3133372c3230392c362c3139322c3132342c3232362c312c34392c34382c3130342c34372c3138372c33332c37302c372c3134342c35322c37372c3233362c3136382c3232392c3231332c35352c3233372c3137352c36302c3134342c3133352c3235302c33332c36362c322c3234352c3232392c3234362c39352c36372c33372c3133342c3131382c302c3231382c36302c32322c3130372c34362c362c3233395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3234372c3137372c34362c3230302c3133332c31342c3133302c322c32312c3136362c3233342c3138392c3235332c31382c3131322c3136392c3136342c3135332c3132302c3234342c38322c3133332c31332c3138362c38322c32392c36362c3134392c38312c3130332c3139372c3137352c3137332c3136322c36322c39302c3134312c3132392c3130362c3134342c32332c33392c3235352c3235302c35302c3134352c31362c3233352c3134302c3133362c3131312c3138362c3137322c39332c3231342c3234332c38342c3230372c362c3231302c34382c3130312c362c385d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0, "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3135322c3139302c3133322c3232332c3133362c38352c35382c3138302c3133312c32322c3131322c3231382c3137372c34372c39372c38342c3233302c3231302c39302c37342c34322c3138392c33322c33382c3233312c3230342c3131302c3234342c3139342c3233342c3233382c3133312c3132302c3232302c32352c37342c3136322c33342c3137392c3136312c38322c3133382c34342c37362c3133352c3233322c3136332c3235302c32322c34392c3133312c3230352c3132312c3230382c3139312c3136332c3133342c39362c3137332c33332c3131352c3137372c3230372c3131302c36392c3230302c3231392c3137382c3132392c39362c3136382c3136322c31362c3139312c36342c3132312c3135362c3233382c35312c3130302c38362c3139372c3132332c3139382c3137352c3233312c3233362c3131332c35342c37392c3233312c34322c34392c3232302c3139332c37325d2c22706f70223a5b3136352c3133382c3130332c31342c33332c3135352c3132342c31352c3133322c3130322c3132342c3137332c3135392c37382c37342c3132332c35352c3132392c3232332c39362c3133352c3235302c3235352c372c37312c3134382c31362c3232382c382c3138322c35302c3233372c3130382c3131352c31312c3231332c3232302c332c3235312c39342c39382c3136332c32312c3133332c33382c3139372c37382c3232382c3136352c3137332c3135372c3135322c3232362c32392c3232352c3230312c3235322c36352c35332c3235302c37322c34382c3133332c36342c3133302c39302c3232312c3138362c3133312c3133352c3138372c33352c3231322c3234382c3234302c3232372c39382c35302c3134342c3130322c3133372c3137322c38382c36302c39352c3232352c31342c3137392c3235322c3231322c31362c33392c3234302c3232322c3139332c34385d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b312c302c3137372c3232382c3132302c3231372c3235332c34332c3230382c3135372c3137372c35332c38372c37392c3137302c3232392c3133312c302c3131372c3132372c3138342c35372c3132362c3132342c3130372c3231342c3130392c36352c32342c33382c32342c3137392c3234322c332c3231332c3230362c3134312c3230302c3131352c39322c3133362c36352c3136332c34372c3137382c32312c36352c37382c3234392c38302c35352c35352c3232382c35332c31362c3131362c32392c34332c3131312c3131382c3135342c39322c332c355d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3133342c3234342c3131332c3233382c31372c34372c35322c3231352c3139302c3133312c3137332c3133332c3137342c322c3139302c3139322c3132362c34342c3232332c34372c3137362c3232372c3131332c3130362c3234312c3232342c3134312c3233392c3134362c37382c3131372c3137382c3132302c3132372c39302c31382c3230302c32392c372c3130362c32302c33362c3134372c3138322c35322c342c36332c37302c342c3136302c3136312c31332c37372c3130322c3133362c3137382c39362c37382c3134342c3139302c3137362c3136312c3134392c3137362c3135362c34382c3132372c3231312c36372c3137352c3136342c332c3138382c3234342c3131302c3133392c35312c3134372c3136332c3233342c3132392c3132392c39332c3231352c3234362c3134322c3232302c3130302c3136392c3136302c33342c33352c3139352c34302c34302c34355d2c22706f70223a5b3136372c3135372c3232332c3134302c37322c3137352c3131332c38332c3136312c31342c3136342c36302c3130362c32302c39322c3234312c32302c3137392c3135372c35312c36352c3234372c3230312c37302c34302c3133392c35332c35392c3139362c3137382c39392c33362c3132362c3139302c3135362c35392c3135392c3135392c3131372c3132392c33372c3131362c322c3139312c3136302c3234382c3234372c3232322c3133362c3138342c3136392c3133322c3137362c3230322c3131312c3232352c35332c3132362c36332c3133342c3131382c3136312c3138342c3230302c3136382c31322c3233312c3134362c3139362c34352c3233372c3139312c3230372c35302c3234322c3230322c37392c3134362c3235302c3132382c32372c3134312c32322c31332c38302c37332c3137352c3138382c38312c38382c33392c39312c37342c3133312c3137382c3138335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3234302c32342c3232312c3134372c3132362c362c3134382c3138332c3131322c3231392c3136382c36382c3231322c36392c302c34332c3131352c3232362c3137382c3230322c31382c3231312c3234302c3232312c362c3135352c39302c37312c3232372c33362c34302c3139352c32312c37382c31302c38342c3139342c3133372c35312c3233372c3231332c3130352c3131352c3234322c3232362c3137352c36322c3235302c3134312c3138392c3131372c3230332c3234302c3130322c3131322c3139312c3137392c36362c3137382c3132372c34362c36362c35342c335d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0, "stake": 20000000001 } ], - "hash": "2691204f662fe329515b29caa4e1d5c5052ceb00890a5337dbe824694ffcb08e", - "certificate_hash": "57fcc55c8bb55c260b2a89f7d4e3b94eb840c2ec933ccc4a73a523c5b9752b52", - "created_at": "2026-03-13T08:42:45.460416623Z", + "hash": "3f69d9811adf1fc5b3904c70f281eb229a9faf66f95634c64fd67b430b545f6b", + "certificate_hash": "553e5c5659ca3ae7d52f6d3837a154ff8bce1abb1b9e19f8741f0e77d8f3ecd1", + "created_at": "2026-04-08T08:02:15.445173546Z", "protocol_parameters": { "k": 70, "m": 105, "phi_f": 0.95 } }, - "43a2b42938469846f9bafe988ee02e281c2b184593ea28b278b2b4c299cb8a9d": { - "epoch": 18, + "57f80e237e2bf1fb5ad7e86dc39b079dce088141de2f6a31ed4ea516e51fa28f": { + "epoch": 15, "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3136392c3136302c3136322c3234392c36392c332c3139302c36332c3235352c3130382c31362c3134382c3231312c35302c32322c34382c3137322c3230342c35342c3133332c3132352c3132322c35362c32372c31372c3138312c3132362c38352c33362c3132302c3230392c3231322c36302c31312c3137342c3132352c35332c3230332c31392c3130382c3134312c3134392c3232392c3232362c3137382c3131342c3230362c3232362c302c3230322c3234392c3136392c3133322c3235302c35312c32302c35332c3231382c33392c32362c3231322c3231352c3138332c38342c3136382c3139342c3232332c3230352c3137312c35382c3138332c32342c3234382c3131302c3232362c3232362c3135362c3138352c39322c36312c3131332c37312c3230352c3130372c372c35322c3130372c3138332c3139392c32382c39352c3138392c3133392c3230342c3234392c37315d2c22706f70223a5b3134312c3130372c33382c3232322c38312c382c3232312c3137372c3234322c35352c3137382c3139362c39372c31352c3134332c3130322c3138302c38372c342c3134362c3231302c31322c32392c3132322c3233382c3230392c3138332c3134302c36372c3130352c3139372c3231312c312c34302c3134322c34302c3234352c3231302c3235322c3130392c36392c39322c3138362c3133302c3134352c3135362c3136372c36372c3134332c3132302c3131312c3137382c3234302c3233312c3135342c35372c33382c3232342c3133362c3139322c3138342c31362c33312c3132352c36382c3232372c3137362c3231342c38312c33342c3132362c3130322c3232352c33372c3130372c33372c32392c31332c34302c3137352c3135312c33392c372c3232382c3132332c39322c3233342c3230362c35362c3131372c38392c3133322c37372c37332c39342c3136315d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3230322c352c32312c3135392c3130322c3139362c3137382c3131392c3232312c39362c37332c3130302c3233322c3234392c3131382c3136322c31372c3135332c3231342c3134372c3135332c3135302c33322c3231362c3137352c33382c32382c3235322c36362c3133392c34342c3233332c3136322c3232302c32382c31372c36322c33302c392c36302c302c3132382c33372c3136322c36382c34302c35372c35312c3234312c31362c3230332c38332c3131342c33302c3233342c3134312c33362c3130342c3133322c39332c3139322c33322c39332c305d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3137312c3132392c38352c3230352c3131312c3235352c3130372c3231392c31382c3130342c36352c3233392c37302c3233322c35352c352c39352c3136322c38332c3134342c3130382c3130362c32372c35372c3130382c34302c3233312c3133392c3136332c3233372c3138362c3132382c3139322c33392c33362c3130352c302c38382c35332c38322c3130342c3232312c3132392c3136352c3231342c3234362c392c36322c322c3136342c35302c3131342c3136372c3131332c39322c39312c3134372c3234372c3133382c3138362c37352c3230332c3235312c35342c392c3234372c37322c32322c3134332c3136332c3233332c3135302c37322c3131392c3135352c3137342c3134312c3232392c3233392c3138312c32312c34322c3134342c34362c3139362c3235342c33392c3233342c3131322c3233382c3135322c32302c3235342c3135332c3139342c3135355d2c22706f70223a5b3133392c312c3233352c32302c3137312c3136332c3135382c32352c35382c3231302c3133342c3230342c38332c3136302c3135312c38352c35382c3233302c3136392c3133392c3130322c3232362c3234312c3134302c31302c36352c3133322c3232392c3232362c32322c3235302c3135362c38382c35392c38312c3131332c36322c3230332c3233312c3235302c3232302c3134392c392c3138322c3235302c3130312c3132382c3134332c3137352c332c3233372c35342c3132312c3138342c3139392c36332c33382c37342c3132322c3132372c32322c3235332c32362c3234342c3137362c3136302c3139312c3234342c36332c3230342c3131372c3131312c3131372c3133362c3137302c32312c3136322c37362c3231322c32362c352c342c3132302c3230322c3230312c392c36332c3131362c38392c3131342c38372c3133332c3132382c33362c3231362c3136395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3131332c39382c3232302c34332c34312c3139312c3235352c3234382c3134372c3230312c31332c37322c3235332c3135312c3136362c3134392c38322c3131392c3138322c38312c3139342c3235302c3130342c3135312c38392c3231332c37332c3138322c3131322c3136322c3130352c3133362c312c3137392c3234332c3135352c3234342c3139392c31332c3231332c3234392c39382c3131312c38342c39352c3138332c3131322c3235342c3233312c3231332c3133302c332c3137342c3134362c33332c37382c39352c3139302c39342c37372c32332c3136372c32372c325d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0, "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3137352c3231312c3135332c33352c3134382c34312c362c3132342c39372c3230302c362c3136382c3235342c3134302c38312c3136332c32382c3131372c34342c34362c332c3138342c3136302c34312c3134372c31322c39372c3230322c3136382c33342c3132392c3132302c3136352c34392c3231392c3133392c34392c33322c3136392c3131362c3135352c35352c35372c3136322c3134332c35312c37392c3138332c362c3230352c3235332c3235332c37302c38372c3233302c3136372c31352c38372c32302c3231322c3130322c32382c3231322c3233302c3130312c35322c3139342c3230362c3138332c34332c3132382c3135332c3230352c38392c3231342c37392c3136312c3131342c3233302c32352c34372c32332c3137342c3139322c3131362c3132372c3137362c3230362c3233352c3132302c3135372c33352c3134302c37392c3231322c3138325d2c22706f70223a5b3134372c3131302c3232372c32362c352c3131372c3233312c3232302c3232372c3230312c3138332c35312c36352c3139322c3231342c3130332c3136322c3131362c3235322c3131302c3234312c3131382c34382c3136302c3231302c3230352c36352c3131382c3232382c33312c3230362c3133372c312c3139322c39392c3139342c3135322c36382c37322c3136362c37322c3131372c36302c3231362c3132372c3233312c37392c31332c3133302c3131322c39332c36312c35392c3233332c36302c3139342c3133342c3231302c3134392c31312c39312c3137362c37302c3232362c3135342c3232382c3137372c3135342c3131322c3234322c3137392c3133382c3130382c38332c39372c3235302c39332c3130302c38332c39352c32362c34312c39322c38382c32352c3232312c3234322c3135312c3134352c3131312c3231322c31392c3135312c3230312c3134312c3134335d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b38312c3130322c3131332c3231332c3132372c3138322c3235352c3134352c38312c3130382c3131312c35342c36312c36342c36322c3234372c3133302c392c32392c3139392c3233362c36302c3130352c33302c37392c3234332c3234312c3137312c39382c35302c31352c3136382c33312c31352c3231382c3138372c3133382c3132342c3139362c3138352c37362c34392c3232382c3232362c3133372c3136382c3130382c3234392c3137312c3133372c31332c3133382c3133362c37332c3130372c382c3232352c34342c3131332c3136352c3234342c3130362c3134372c31305d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3134312c3232302c3133372c362c3131362c3232322c38362c33342c38302c37372c3136392c3136352c37342c31382c32312c36332c32352c38342c34302c33362c3133342c3134342c342c37392c3232382c3133372c3130382c3136372c3138352c31342c3139312c3135382c3233392c3133372c3134322c39302c3230392c34382c35342c3138322c34392c3230332c3133302c3132342c3233332c3130342c3136382c32302c31362c34322c3137362c3231302c3136392c37382c3134352c3233372c32372c3130322c3230302c3230392c3133352c342c37302c3131312c3235302c3130312c3138322c32382c3133362c3135382c33372c33362c3132332c3133332c33312c3231362c31302c3233312c3234392c3233362c38392c38302c37332c3233372c3139362c3137302c3233372c382c3131342c34392c3131342c3230302c3139322c3235332c36332c3233315d2c22706f70223a5b3134372c3233372c3234312c3230382c3234342c3134352c34322c3235312c3230312c38392c3131312c35322c3134382c302c37362c3138372c34312c32352c3231372c31362c3231382c3235322c38332c36332c3133392c3233352c3233312c3130382c3234382c352c3136382c36302c3139392c36382c3135332c3139332c3232362c3232332c3132342c35312c3231372c3136332c3232382c3131332c3130382c3231312c3130382c3138392c3138322c3138352c3138322c3133372c34362c3231332c3137372c3133372c352c3231362c3234302c3137382c3130342c3132372c33312c37302c3139352c32372c3233372c33352c392c3232372c39322c3132392c37322c3231322c36332c32332c31382c3137302c34382c32342c35312c38382c3139362c3134302c3233392c3232302c32392c33362c35302c3135362c3133322c32332c3138362c3137332c3137342c3135365d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3134392c3231392c37312c3230372c372c34312c34332c38312c3234382c3230342c33372c3233342c39312c3137372c3131332c3139312c31372c3130322c34372c372c3132392c39332c39382c3233322c38382c3136332c32332c3132362c3135332c31352c37382c3134342c3235322c3232322c3233352c3134322c3134322c3136302c3130302c3230372c34342c3130332c3136312c3131352c3230382c3232312c39302c3137312c33362c3138312c38342c342c3131372c36392c33332c3130392c3133342c3230392c35392c332c3234312c3231302c3235312c31345d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0, "stake": 20000000001 } ], - "hash": "43a2b42938469846f9bafe988ee02e281c2b184593ea28b278b2b4c299cb8a9d", - "certificate_hash": "135c6de9fa65ffd328b00918df0b40b51df9a9f7394cdec81a9a2b7368bfe545", - "created_at": "2026-03-13T08:42:39.457806478Z", + "hash": "57f80e237e2bf1fb5ad7e86dc39b079dce088141de2f6a31ed4ea516e51fa28f", + "certificate_hash": "69a4d87015c9e6fd4dbcccb09208feb146ec28ea799826548c55763ae4f162c3", + "created_at": "2026-04-08T08:02:21.449400115Z", "protocol_parameters": { "k": 70, "m": 105, "phi_f": 0.95 } }, - "5efd11b6a941e1f87eb6907919b78475fe342ebfc25f489deb4efca11335adbb": { - "epoch": 19, + "be201f57de8b6ef8cbab31ef29a93c8395b02afa343f5d13367ab6f6c6f7ee92": { + "epoch": 16, "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3134302c35352c3130352c34352c3135332c3233362c3134332c3132392c3233342c35322c3232392c3232362c3137352c37342c3131322c32392c3138322c34342c3132302c3131342c35382c32342c302c33332c3234302c3138372c31392c3232302c37332c3130392c33352c3231302c3230392c3234332c3235332c3232362c33342c3231312c3231392c342c36302c3130312c3230312c3233382c33342c39352c3138342c3230392c32332c39372c3230362c3234332c3231392c3130342c33392c3231342c34302c3132322c32302c38392c3234382c3136372c322c3133392c3132352c3139362c3234342c3230312c35302c34302c34322c39382c3138302c362c37332c32392c3135342c3131312c3132332c31332c3139392c36362c38392c392c34372c3132382c39382c3136322c3136302c3134322c32312c322c33342c3232352c3136332c3137335d2c22706f70223a5b3136372c32382c34342c3233332c38362c3132352c35382c39332c31382c3139392c37362c3135382c32382c3232302c3231312c3133312c3231342c3134392c3233312c33302c3136352c3234342c3139322c39372c32382c3130332c36362c3230372c3231372c39352c3130392c3133372c3139312c38342c3135352c3131302c34352c35392c3137372c3135392c37302c39322c3133322c3132332c33382c3134332c3130322c36322c3133302c3136382c3133342c3135342c3231362c3235312c31302c3139332c3231332c3234352c35312c3135312c37352c32352c3135392c39372c332c3131322c39332c36382c3139352c3131372c3137342c3138322c3133392c3235302c312c3136312c35392c39372c3234322c3231342c32352c3232392c34382c3235352c3134342c372c3139382c342c34362c3232342c36362c332c37352c35352c39302c34315d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b32372c34312c31322c3131382c3136322c3235342c3138332c3231392c3130332c352c3137392c3136362c3134382c36352c3232352c3132332c31372c3235312c3139382c3139392c3131332c3230322c3131332c3133342c3139312c35332c3138382c36362c3136372c3134342c312c3234392c31322c3132382c3133382c3232382c3232392c31302c3132332c3230322c38352c3137342c39382c3133302c352c3232392c3132362c3133332c3132362c3235312c3131372c3232332c3130382c3234322c3231372c3234382c3137332c32392c3132332c3132362c3232302c3137352c3132302c31315d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3133382c3230322c3233302c332c3136362c36382c3138332c3232302c32302c382c3230352c3130362c3233322c3232382c3234302c3130382c38302c3131342c38342c3135342c35342c3233322c39342c3137302c38372c3132302c3138312c39392c3131342c3139372c3133342c34322c36392c36342c3137362c3134392c3230322c3138302c37332c3135332c38382c3135392c3137342c35302c3137362c3135372c36362c3139362c322c3131342c35352c3232362c35372c31372c39352c3232302c32322c35322c3233322c33392c3230302c3230392c3130302c3234342c3131332c37342c37352c3139302c3133312c3135382c3130392c352c3137312c392c3135382c3232332c3133372c35342c38332c3138342c3234342c3234362c37392c3136312c3133342c3230372c35302c35322c3235302c3131332c3138362c3138322c3230352c382c3234352c36305d2c22706f70223a5b3136362c3133302c3137382c3138342c3232392c3136382c34332c3131322c3134322c37332c392c33302c3138352c3232322c38362c3231312c35342c34342c3133392c3130322c36382c3231392c3230362c39332c3235332c38352c32362c32322c3136382c3231332c32322c3134352c3234342c36362c362c38382c35372c3231302c38372c322c3233372c35312c39372c34352c32302c35352c32332c3132352c3134342c3130392c35362c3234312c38332c3131372c31382c31382c33352c3138372c36362c36342c3139392c3231352c3231302c3137322c3234312c38362c37352c37392c36302c36392c36372c3137302c3137382c37302c3138322c3233362c3230382c3134352c3132302c3139372c3138352c3132362c3130392c3139392c3234352c3135332c3136382c3234312c3139352c3138322c3235302c3136342c3231382c3132382c3136322c3139345d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3235312c34352c3233392c3135332c3134392c32352c38372c3133362c3133302c34312c31382c3131372c3230302c3230322c31302c3135392c3139312c3233322c36392c3131302c3233332c3133332c34332c3233352c36342c332c3133302c3134302c3230322c3230342c3132352c3232382c3231342c3233372c3139362c3134312c3134392c35312c3135352c3139382c33332c3230322c3131342c37322c39372c3135342c37352c34322c32332c37312c31342c3136332c34372c3232332c35342c3234352c3232302c3231392c33372c37312c38302c3230382c36332c305d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0, "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3137362c38352c3132332c37312c31392c32322c3139352c31382c3138302c3131332c33342c3230372c3133372c342c3230312c3230312c37332c3137332c35312c3134322c3139342c3233312c3234392c3135332c3134362c36382c34382c3132302c37342c39362c31372c39322c37382c36322c3133362c312c3230382c32342c3234382c38392c3137302c3139302c3139352c3130362c3232322c3132392c3233362c33362c352c3138362c3231332c3134352c3138322c3135332c31302c38392c34302c3232312c39392c32372c3137372c3137392c33312c3230382c3130392c3138332c38322c3230362c372c31362c3131362c3130322c38332c37332c3137302c32342c3135372c3131382c3231312c34382c3132382c3135322c34372c3137362c3230372c36322c37322c3136312c3235312c35352c33362c3233332c31392c3234352c32362c38345d2c22706f70223a5b3134362c3230362c3134332c3137302c36372c3234322c3134382c3136302c3230382c3131372c3234372c3133302c3134382c3132352c3134312c31352c39342c36302c3136372c39332c3134332c3139302c3139332c3137382c34392c3134372c392c3135332c3231372c3235352c31392c3138332c3134322c38342c32372c3135302c3131382c3138332c362c3133322c3130382c3132362c312c36312c3233392c3231372c3137382c3234332c3133332c322c34362c31332c3136362c36312c3135302c32342c352c3134332c3135392c3234302c332c3130372c35302c3135392c3136382c3134312c35332c32342c37312c3137372c3233332c37392c3230382c3130352c3133392c3130362c3139352c37342c3134392c3132332c34372c3135302c36362c3134362c3130342c35322c3234372c31362c3136332c3131302c31382c33372c3139332c3137342c37302c3235335d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3130332c372c3130312c392c3134352c3138332c342c32352c3232382c3134302c3234322c312c3133302c3138332c3138372c39302c35372c3234322c3131352c32372c3135322c36302c3132342c3231312c3139342c3134342c3230332c34332c31372c39322c3138342c3230382c342c31382c31302c37382c34392c38362c3234332c3138312c3133302c3139312c3139362c3136382c3137352c3233392c3132312c35332c3130332c32352c33382c33362c3235312c38392c3134302c32302c3131332c3233372c3136322c36312c3139362c3130372c3137372c325d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3134372c3137302c3131372c38372c35372c3231332c3139332c3138392c3131332c3131352c34302c3235352c3230392c3232392c3132392c3130382c35382c3138342c32342c3231352c3134332c3139362c3230322c3132382c3232322c37322c3132352c3134322c3131322c38312c3139312c3230362c3135362c3133322c3136322c36352c3135362c39342c35332c32302c3136362c342c3134352c32322c3130332c3234362c37372c3231342c382c3234352c3136392c3230382c3138332c3235302c3135372c3136322c38392c35352c37372c3130312c3134372c3233302c38372c3135342c39342c3131372c3139372c3231332c3135302c3231332c3134312c33312c3232372c3139352c3230342c33352c3234302c3231392c3139332c3139392c35332c3232382c3137342c3233302c3230322c3233332c32372c38382c3231382c3235312c3133362c39372c35332c3132392c35352c3136385d2c22706f70223a5b3136342c38312c3136312c312c3232362c3135322c38392c33382c38382c3139342c38352c3133352c3132332c3138342c3135342c3139342c3139332c31312c3132312c35382c3230392c3231352c35352c33352c3231362c3134332c3233332c3230312c39392c3235302c362c3139372c37392c3131352c3130342c33322c3231382c3230312c34322c3232332c35382c3137302c3136362c36342c37352c3138382c37362c3137372c3138302c3233312c37382c3234362c3132332c3135312c36382c3136312c34342c36392c37382c33322c382c352c35332c3233312c3136382c34332c332c3230392c3231362c3231332c322c36392c3230382c3138392c3133342c36352c3133332c3232382c38342c38322c3134322c3234322c32322c34362c3133382c39312c34382c3139322c3133392c3134392c3230352c3132302c32342c36362c38352c39355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3137362c3137362c3130352c36392c3131332c3230312c33362c34392c3132382c35372c32342c31332c3134392c332c3232372c3233362c3234362c35392c3134352c3135382c3139312c3231342c3232382c32352c3135382c3231392c3136352c3231352c3135322c3230372c36372c37352c3139372c37362c34372c3130352c3132322c3231312c3134362c32342c31332c332c3139362c3132392c39362c3132342c39302c37382c3136372c3131302c3136312c3235312c3235322c3233352c3137322c3130392c39382c36302c32322c3232382c3130352c3134382c3233352c355d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0, "stake": 20000000001 } ], - "hash": "5efd11b6a941e1f87eb6907919b78475fe342ebfc25f489deb4efca11335adbb", - "certificate_hash": "4f3afe0465f10b4fcff5a9787d5104f8a07a40e08f290651101bb3173013ca31", - "created_at": "2026-03-13T08:42:42.461431050Z", + "hash": "be201f57de8b6ef8cbab31ef29a93c8395b02afa343f5d13367ab6f6c6f7ee92", + "certificate_hash": "2d3d8b7c43b1f5a7d8ece1a2076a874b8b57a258b89b949fa54f64de31bc59e1", + "created_at": "2026-04-08T08:02:24.455466649Z", "protocol_parameters": { "k": 70, "m": 105, "phi_f": 0.95 } }, - "723223d33bdce36864fa8244410b21a8c2c88eeafb4ff9da779eae4261009aba": { - "epoch": 15, + "d6941340b73b76afe40a839c4fbc1c2b53de0dbfd7b2d42e039616c715e2535d": { + "epoch": 14, "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3137302c3132352c3139312c3232352c3234392c38362c37382c3230342c3133382c3233332c3232392c3135302c3136322c3234342c3136382c3136352c3235352c3233352c3231382c31312c37382c3130302c34302c36312c312c39302c3233372c3134362c38302c3132342c3138322c3139372c34372c3232332c3235332c35382c3233362c37312c37352c37392c39382c3135392c32332c3234302c3139382c39322c3138312c3133332c302c3231362c3230312c3130322c3234362c3233332c3136302c3133362c3130352c3132322c3130342c32392c3132322c3135392c39312c3130332c38392c3232352c3136332c3234372c36362c302c35372c35312c3233302c3136302c36302c3135372c32382c3131352c3136332c3231392c3133352c3233362c332c3133332c3133342c3230312c3234302c32322c3130312c34372c3230382c32302c3233372c3134332c3135302c3232395d2c22706f70223a5b3133362c39342c3235322c34362c38342c36322c3137302c32372c3133372c342c3230362c3135382c38342c3136322c37322c3234362c3235312c31332c3131372c3134352c3132322c3133382c3138302c3131382c3138332c3234342c3138312c3231362c3130352c3135302c3234382c3137362c38312c3139372c3137392c3134332c33342c37362c35342c31322c3131342c3234362c34342c34352c3136322c3134372c3138342c36382c3133302c3132392c3134352c3139332c31312c37352c3130362c39322c33312c32352c31302c3232332c36342c3233382c36372c39342c33302c3130382c3132362c3138372c3231322c3133382c3133342c3230392c36352c3135352c37352c3234332c39312c37352c37392c31302c3133372c3133312c37322c3235312c35302c3230332c3130342c3230392c3136302c3135332c36302c372c3230332c31372c34382c32345d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3135352c34352c39302c3137362c3234392c3134352c3235342c32382c3134332c36302c3135392c3233312c3133302c3136312c38362c3139382c3230382c3134342c34342c3134362c3233312c37342c38362c3232342c3132352c39302c3230342c3133342c3233332c3139392c3139392c3232332c3132302c33342c38382c3231372c3234332c3139352c35332c36322c39332c31392c3133352c3231332c3138342c3232362c38342c3234312c3231382c3131312c38382c39352c3235312c3135342c3131372c36392c3130312c3134362c3136392c3234342c3232312c3130382c3234302c355d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3133312c35372c3134342c35382c31342c3232302c37322c3132332c33352c37382c3234302c38342c38392c3131362c3232312c35372c3230302c3234322c35332c31372c39302c3132332c3135372c3132302c3231362c3138392c3230382c3136312c39382c3232372c3139372c3231312c36322c3235342c3139332c33342c34352c36302c3139342c3230302c3135312c3131392c34392c3133392c37362c3230302c3133312c3135332c342c3135372c372c38322c3138362c32342c3133332c38382c3230392c38372c36342c31362c3138332c31302c38372c37322c322c3230352c3233342c3234312c37352c31362c3132342c3230332c33302c35352c37302c33372c34332c33362c3139342c33342c3234382c35392c3133302c3232392c33392c36312c3138332c3235332c3232342c39372c3232382c3132322c3135342c3230312c34302c3133345d2c22706f70223a5b3138352c3136302c3235352c3234302c39332c31372c3233362c3130362c31302c3130332c3232322c3135392c36392c31372c3139372c3131322c3137312c3136362c3136322c3231302c39362c32352c3133322c34392c35382c3133302c38342c31342c3133342c3231312c3135302c3230392c34342c3231342c3135382c39332c34342c3138372c38342c3134342c3235322c3135362c352c36322c3130372c3130312c3139362c3138332c3133302c33372c3134342c35302c3139322c3136302c32392c3134322c36342c3230312c33322c33362c38352c31302c3232332c3131372c3235342c33302c3234382c3134352c3133342c33372c3132392c3136352c35392c3135312c3232312c3233322c37392c35312c37362c35362c3133342c3138382c3234322c34322c33392c3139382c3232362c37322c3231332c34362c33342c3138362c33312c36342c3137302c3235335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b32342c3133322c3233382c33372c3137392c3133352c3133322c3231372c3134302c38382c31342c3138352c3234302c3234322c3134302c362c3234312c3138352c3131392c3134342c31342c3137332c3136392c3232372c3132362c31302c34382c3131372c37392c3137312c33312c3137302c3134382c3232352c3130322c31342c35352c3231332c3132352c3137352c3134342c3230352c33312c3132332c3133382c3137312c38312c37302c38322c3234372c3235322c3230302c31342c3130302c3135372c3137312c3234342c3137362c36362c3137372c3134372c3136362c3133302c31315d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0, "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3132382c3232332c3131312c3135392c3138392c3138362c39312c36312c3134322c3130362c33392c372c3139332c3136342c36382c382c3132382c34352c33342c302c3136382c3133362c35352c37372c3134312c36362c3230302c36372c392c3136362c3138392c35392c3230312c382c32362c3139302c34382c33382c3235332c3138392c3138372c3230362c3231332c34352c3232362c3135372c38312c3130362c31312c3230352c3131372c31352c3232302c39342c3230392c3139312c38332c3230322c31372c39392c3234342c3139302c3138322c3130372c3135342c35332c31342c3232372c39302c3234382c36312c3231372c37352c3132342c3233322c3131332c3131342c31372c34372c3235332c3138372c37372c34352c3230312c3231362c31392c3134332c36302c3133362c32322c3135382c33302c32372c31332c35302c34315d2c22706f70223a5b3134362c3134372c3234382c33352c36382c3230332c3233372c36302c37302c38302c3139382c3230322c3139342c3138302c3135322c33302c3234332c3233392c3231312c3230322c33332c3137382c37312c3137352c39382c3130322c35302c34322c3139372c3231362c35392c33382c37382c3231332c3230342c3135392c31382c3134382c37372c3231322c3136372c38312c3132302c3135392c3230322c34322c342c3133382c3137362c3135322c38312c39322c37352c3136362c31302c3232342c37322c36312c3134322c3233322c32352c3132392c342c3130302c3132302c3233372c3137342c302c3139322c37302c38332c3230362c34322c3234342c3233372c37312c33342c37312c3232392c3133382c3132302c31372c3234342c33362c3132322c3133352c31332c31372c33322c3234312c3136322c3231342c3235322c3132352c34302c37305d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b36342c36322c3135342c39382c3233392c3130322c3137332c37392c3132392c33302c3138382c3132302c3134302c38342c37352c3139312c3132362c36342c3139312c3230302c37312c36322c3132362c31322c3233332c3232322c352c3231372c3135382c3134382c3138382c3133332c31312c3131352c3235332c3131352c3233302c3132332c3135372c3231312c32302c32362c34362c3232332c3138352c3139362c31332c3230382c31372c3135342c32312c3133382c39312c372c3131302c3132342c36362c3137332c3232362c3135342c3138362c34302c3130332c31315d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3136372c3131302c33392c3133332c33352c38302c31302c3232392c392c3132312c39392c3235352c34382c3232332c3131342c3234362c342c36302c3139362c3132362c3135342c3233372c35302c3135312c3133382c3130362c36332c3234322c382c3132302c3233342c35362c3130312c33322c36342c3137302c39312c3232372c32382c3137322c3136362c3131332c38312c3139372c31342c3231312c36302c3232362c352c3232342c3235342c3130322c35332c39392c3133372c3233392c3231392c31352c3231392c32382c3139332c3135362c3235342c3233332c3233382c3234322c3135382c3135302c3133332c3131352c34302c3136302c3139352c3133352c3134372c3137392c3135302c33342c3232322c36302c35372c3233342c3134302c3138322c3234362c32332c37342c32332c3135342c3137382c3133372c3130332c3137322c3139302c3139382c31385d2c22706f70223a5b3134362c3137312c3235332c3130392c3233392c36382c33342c3134362c3136352c3137342c3139342c3138372c3136352c3130392c3233382c3135302c34342c3231392c38332c3132392c332c38362c3136302c35392c3139392c3131302c3136322c36322c31342c3135342c33342c37362c37352c3134372c3135302c31372c37392c37302c32392c3135372c3131372c38362c3233312c33382c3139342c35392c3130312c3133302c3136382c3234322c3133362c33352c39352c31312c32372c31312c362c39352c37372c3232372c3133312c36332c3134372c39382c3137352c37312c37342c36312c3232302c32382c3233362c3136392c302c36382c3139342c3136322c37352c3230392c3133352c38332c37332c33382c35312c3231322c3138302c3134392c3137392c3134322c34322c3234392c3134352c3138352c3135342c39382c3136332c3130335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3233312c32342c3230332c3139342c3231322c36342c3231332c3232382c34312c3139342c3135372c3134382c352c34322c3139302c3135312c39382c3233302c3139302c3135382c32382c35372c3137352c3131362c3138362c3137332c3130322c3137312c302c3230372c3230352c34302c3131342c3137362c3134342c3130352c37362c31362c35382c3132382c3139332c3135362c3233322c3139322c3130352c3134372c37382c3230332c34392c37362c3232332c3136392c3139322c3132312c33332c3132332c3234362c3230382c3137302c37382c32302c3134352c3232362c31315d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0, "stake": 20000000001 } ], - "hash": "723223d33bdce36864fa8244410b21a8c2c88eeafb4ff9da779eae4261009aba", - "certificate_hash": "326c537f77f8e8c05c6cb6ed59b95570f3a13b975fb0911ce8cfcc84a1e6d18a", - "created_at": "2026-03-13T08:42:30.457971328Z", + "hash": "d6941340b73b76afe40a839c4fbc1c2b53de0dbfd7b2d42e039616c715e2535d", + "certificate_hash": "203da3165cadf34027335c49fd931156c7b95cd8c3ca1498241bd46198f529d5", + "created_at": "2026-04-08T08:02:18.444833762Z", "protocol_parameters": { "k": 70, "m": 105, "phi_f": 0.95 } }, - "a3b223c57e59d37a9be5bd5cf7bcc601b89b56ba7e6dfebaa57d8d91a0a06cc6": { - "epoch": 22, + "daa3817a27eda1238ba4d0d15adf2235823a0ab4f39288faacee369e331a258a": { + "epoch": 12, "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3137352c37392c3233332c3131322c3233322c33312c3135352c34312c3232342c3132322c36302c3235332c39332c3232312c3132372c34352c3135342c3232352c3231382c3234362c3234322c33322c3234332c3138332c33302c39382c3138322c38332c38382c3231392c31302c3133312c3230302c3234392c38352c38312c3130322c37312c3136392c3137322c3235332c3231382c36392c3136392c3135312c3137302c3132382c33362c342c39362c3138392c3135372c39382c3133382c35312c3231332c3233302c34372c3135382c39362c3232342c31362c3135322c3230362c3130362c34322c3138312c3231392c3130312c32382c3234362c3135302c37332c3234302c3234322c3131322c3131312c3232312c3130302c3137362c3131302c3130302c38382c3134302c3131372c3133322c3233312c38322c3132312c35372c3131362c3235342c3232392c39312c3139352c3230365d2c22706f70223a5b3134372c3137352c37322c3132362c33322c39372c3231322c3233332c3133392c3231322c34302c34392c3230392c3235342c3133302c38322c32322c31352c35382c33302c3233352c3230302c32362c3130312c3131352c3138362c3135302c39382c3233302c3231352c3230392c33302c3138392c3130332c34392c3234382c3234382c34362c37362c39362c32342c3138382c3233312c3135342c34342c3133322c33352c3135332c3136312c3138342c3134362c3130342c37322c3230372c32372c39382c3232372c37352c33382c3132302c3234312c31342c3233332c3134332c38362c3131372c3131392c3230312c3133332c39372c39312c32302c3131382c33322c38362c3131332c31392c3233362c392c32362c3135392c38322c36392c3130342c3134312c37332c3130332c36302c34332c34372c3132312c3230312c37322c32392c3139362c32365d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35372c31312c3133322c3135372c37332c39392c3139372c3137342c3137382c3137392c3131312c3137372c3135302c3136322c3133382c3235342c3137332c3138362c3139312c3138302c3130352c39392c36342c3231392c34332c3231382c31382c36392c32302c3234382c38312c3235322c3231392c3136352c3230322c3134322c3234312c3231332c37342c38392c3131342c3139372c31382c32372c3138382c3138332c3232302c3133372c33322c33322c3133372c3138302c3139302c31372c3232332c33352c37342c3132342c352c3230372c31302c34392c3234352c31335d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3138332c33312c35372c3136302c3136322c35332c3133392c3232302c3130322c3234392c3139302c39312c312c36392c31392c37332c38382c3130302c39382c3132342c34362c3231302c3231342c39392c3235332c3134312c3138322c3230382c372c3234342c34362c3134332c31342c3132302c38362c3230372c3230392c3234302c322c36302c3136352c3233312c3135322c31382c372c3136392c32332c31382c31342c3135332c3130302c3232322c37392c3134392c3230362c33352c3139382c35302c3235342c352c3135372c38372c37312c38362c3132352c3230302c3132362c35342c3234372c3136382c3232332c33352c32322c3134382c302c3133362c3130342c3133322c39382c3233332c3134362c32372c32342c3134352c31362c38372c3134312c36362c35342c3234342c33342c3135322c3233322c35322c3138342c34395d2c22706f70223a5b3134372c32352c3135392c3232352c362c36372c39312c3131362c35332c34302c34352c3231372c3230312c362c38322c36312c3234322c3139342c3135392c3130352c3230352c3137312c36352c3132352c3232352c34302c3133362c3233312c37352c35312c3139302c3233372c32342c3230302c35342c37302c36312c3135322c34312c3136322c37312c3233382c3137352c31392c3231392c3134362c37312c3133392c3134352c3131372c33322c38342c33352c32372c37332c3136362c34312c3133302c3234382c3235322c31342c3135392c3234332c39342c3130342c3134382c3137342c38362c3133332c31332c39332c32332c38322c3131392c3230312c38322c36372c31352c3134382c3232372c3137312c3130362c39382c3132392c39362c35322c31342c36332c38372c3234382c352c3230392c33332c31342c3232332c35355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3136342c33362c3132352c37382c3233312c3135322c3130342c3132332c36372c3136372c3137362c3233352c3230392c34362c3130382c3232312c3139362c3235322c3232302c31302c3130362c34352c34332c3133322c36372c3131332c3134312c3135312c3133362c3231352c3132362c3138312c3232322c3133372c3134392c3231312c38302c3230392c39352c3230322c3136322c37362c37322c31382c36302c39392c33382c32312c3233322c3132382c35362c3138392c31352c31362c3139322c3137322c34342c37372c35372c36392c3138372c3234392c33362c325d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0, "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3138302c3136352c3231332c3132312c3131302c3138312c3134342c37332c3135392c3235312c3234372c3135312c32322c3132302c35302c312c3132302c3234372c3131372c3131372c3138352c32322c3233302c3132352c31392c3139332c3233372c3230322c37382c3134372c3138352c3133342c3134382c38312c392c3134312c3137362c3137392c3234352c33332c3135352c36362c34372c32372c36382c37322c3136352c3135382c31392c33312c342c3133372c39382c3232392c3235302c382c38362c3132392c3133302c38392c37322c36362c362c32372c3139392c3231342c3137322c33322c3234382c3230372c3130312c302c35342c3137372c35332c302c34362c3133322c37372c3137342c3232322c3131302c34312c38312c39352c3138302c37332c3133352c3132322c31362c3134372c3132392c31392c3134352c3130312c3132365d2c22706f70223a5b3138322c3231312c36392c3233312c39392c35312c3130362c3133302c3231322c37332c3234382c33352c3130352c35372c3230372c3139382c3132362c37362c3233392c3135382c3232322c34302c3133302c3132322c3137372c3131352c33322c3233352c38302c35302c3136372c34302c35392c3136382c32302c34302c3133382c3136342c3135322c3231372c37382c3138362c3130362c3235312c3133392c3231352c3234362c38342c3134392c3137352c3131372c3137322c3230352c3130392c3132302c3130352c3136382c32302c39382c32372c3230352c3132332c362c3133362c392c3131392c3136352c31392c3132332c3130362c32392c3230302c3136342c3230392c3139352c34332c3231362c3133372c3232382c3130382c3138362c3134322c3137332c3138372c3134322c33382c3135382c3133342c37322c3136352c3132302c3139312c3231392c36322c3133382c32325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b32372c37342c3135302c3232362c392c3131352c3230302c33302c3135362c32342c3234382c3135382c36392c3132372c3138302c3130372c3232382c33332c3232362c3134372c33392c3233372c33332c3135372c3230372c3138312c39332c3138362c37312c37312c3231362c3235332c3139382c3230382c3139312c3234362c3233382c36362c3231372c39372c3139302c3130362c37372c3233392c3139332c32322c3135372c37372c3137322c3135362c3232362c3132392c3135322c3231382c3135352c3137372c3234332c3231372c3135392c35352c38382c38362c3231322c31305d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3132392c39342c3234372c3138372c32392c3135392c3131332c392c33312c3234312c3134352c31302c3234332c3131322c3131362c3136302c34342c32312c3135392c3232312c3136352c35352c3130302c32322c332c3234362c37312c3131392c3136372c3234392c36372c38362c34392c3131332c37322c32312c3139312c352c39312c3230372c3132322c3130342c3232342c37362c3135382c3231382c31372c39332c31332c3131322c3138392c38342c34362c3138312c382c3130392c3231312c38382c3130302c3132302c3136372c3138392c35362c32372c3134362c35372c32392c3232352c3131372c35352c34352c36362c32382c3232372c3135332c3137312c3231352c38352c39332c3235312c3233372c3131302c3131392c32322c3139332c3231342c37312c3139322c32302c3130342c3138302c37382c3135332c34312c37322c36365d2c22706f70223a5b3137342c3138332c35342c3231332c39302c33312c3133322c3130312c3139302c3134302c3233372c3130332c3231332c3136352c3235322c312c3136332c3231382c33362c31382c362c3132342c3130382c33312c35302c36322c37392c34342c3135322c3233302c33352c3139362c3230352c3134302c3134392c3134362c36382c3137312c31362c32312c3234322c31352c37372c3232382c39342c34312c3136342c34392c3133342c3231312c33332c3234382c39302c3231322c3233332c31302c3135352c3230382c3133392c36312c3133392c32332c3233342c39392c3231362c33382c3230352c3234322c3130332c3135332c36392c3138382c3135382c31362c3232322c3233322c312c3139352c3131312c3138322c3234322c3230382c37362c3232352c31322c39342c3137382c362c3132332c3231312c39382c36332c3133382c3132322c3234352c39365d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3134362c39312c34342c3138342c3137312c3234342c3130372c3136342c33352c3136382c3139302c3138382c3233372c3232312c34352c36352c3136372c36322c38342c3234332c3138332c3133372c34392c3130372c3132302c3131332c31372c31322c3230352c3132322c33382c3231312c3233392c38392c3130322c36302c3137352c3138302c38382c33362c3134352c3133342c3231342c3132312c3233332c34352c3233362c38342c3233342c3235312c3233382c35312c3230322c37352c37322c382c35362c31332c3135312c3136382c3139392c35382c3232392c325d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0, "stake": 20000000001 } ], - "hash": "a3b223c57e59d37a9be5bd5cf7bcc601b89b56ba7e6dfebaa57d8d91a0a06cc6", - "certificate_hash": "241114c9f7930e40b49c73f575ac7350f15315e5f277824db0b82eb76188ffcc", - "created_at": "2026-03-13T08:42:51.463083053Z", + "hash": "daa3817a27eda1238ba4d0d15adf2235823a0ab4f39288faacee369e331a258a", + "certificate_hash": "c61b0881d91dd098da5083d1e01746ba6a50e88880655bac4d76b6a4c3f052a1", + "created_at": "2026-04-08T08:02:12.461542673Z", "protocol_parameters": { "k": 70, "m": 105, "phi_f": 0.95 } }, - "c2cadb32181d511db1710dbdb36e8b9162272ea6321dd7c38920b410e975d42e": { - "epoch": 21, + "f2e712accb656d08398572c653972b091e11611dba998e98d8fade0c59e6597d": { + "epoch": 9, "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3135332c3232332c3235352c3231382c36362c35312c3131362c39322c3139332c34372c3234322c3134372c36322c3135392c3235342c34352c34342c3232322c31332c37392c32372c3138322c32312c3133352c32312c3131352c3133352c312c352c3138382c3232392c38342c3135302c34342c3234362c3234382c3235312c3135372c3231322c38352c3136342c39312c3232382c36352c3233362c3231332c3130362c3133312c31342c36312c35302c37382c3232372c3134382c3232312c33302c3230342c3232362c3235322c37322c31392c39362c3230322c302c362c3134322c3139342c3138302c3233382c39382c39322c3131332c34352c3230352c372c3139312c3132392c3136352c3230392c37382c3134302c3234382c3134302c35342c32352c3132392c3132332c38302c34352c35302c3138322c37362c3135332c3234352c32342c34385d2c22706f70223a5b3136332c3231392c3136362c3133352c3235332c3138332c3235302c37332c31352c3137362c3234322c38352c37352c37302c3139322c3132312c36372c3130352c3139362c34372c36302c3135312c3235302c3130302c39392c3138392c3232342c3232352c36352c3235312c3131332c3139372c3130332c3233372c3231342c3230382c38312c382c3233372c3232362c3139312c3135302c3231302c3136382c33312c3137342c34362c3232312c3137362c39362c3232332c38362c35332c34342c3233362c37302c3136382c3130352c31382c3135312c31392c35332c3231392c33312c3134332c372c3132372c3137302c38312c35372c36342c37392c3133312c332c3133342c35342c3232392c3138332c3230392c3130382c3131342c32342c3134322c34372c392c33382c33322c34372c3234342c37312c32322c37382c37312c3233332c3130372c3137315d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138322c3234332c3231312c37342c3131322c3131312c3134352c3230312c392c3139322c3130322c3133352c3130352c3136342c3136332c382c3232362c342c3131322c3234352c38362c39312c3235302c37342c36372c36342c3230362c3233382c34342c35382c3138392c38342c3131322c34342c37382c3130392c38302c35322c37332c3137302c36302c38392c39342c32352c31362c3131332c3231322c3138312c3234352c3131332c3135322c3131322c37352c3233302c35362c34362c34312c3231302c3232352c3133392c3139342c3134302c3131332c335d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3137352c352c34382c33332c3230312c3132352c3132382c32302c3234322c3139352c35352c3231392c38382c3232312c38382c3131392c3232312c35302c3133352c3132352c39332c3135362c3233342c3139352c3137362c3235332c3135362c3130392c3233342c3233362c3138392c34312c3138382c3133372c3138312c382c3232372c3130312c36382c39312c33392c39382c3134382c36382c3135332c3133332c3138352c31362c392c3138332c31362c31332c3231362c31382c33302c34392c3136302c37332c3138332c3130362c35332c3130332c3233342c3138382c352c3232372c34382c3134332c32302c34372c34312c3139322c3136312c3135322c312c3139362c3230302c36332c3136302c31372c352c3230342c3130322c38392c3130302c3136332c31332c36382c39312c3232342c3231322c32352c3132302c36322c3139302c3233385d2c22706f70223a5b3137362c3131312c35302c31302c34342c3135372c3230372c3132332c3234302c3139302c3234392c3134322c3136332c39362c3132332c392c3132322c3134352c3137352c35392c34322c3231372c3132342c35392c31322c3235312c3135342c36352c3234302c332c3138392c35352c3235302c3133352c3131312c3230332c38342c3232382c3233312c3131392c39362c3130312c3231302c3135352c3232392c3130392c3235332c3135362c3138312c3138362c3139322c3234322c3135302c3131332c3138302c362c32372c33332c32322c3132382c3233312c31382c3131332c31332c34302c3133302c3136312c3137382c3137382c3234332c39372c33382c3230362c38352c36322c32322c37322c39302c38342c3231342c382c3234322c34382c39342c3130382c3135352c33392c36302c3131362c3134392c3233392c36382c3136362c36312c3133352c32375d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39372c3131332c3231302c35322c3130382c3234312c3131372c3130312c3135352c39382c35392c3232372c3138382c3135312c3130372c3233382c31352c332c35302c3232322c39392c3233302c3133312c3139322c3231322c3138372c3133352c37342c3133302c34352c36362c3136342c32372c3230322c3231352c3131342c33342c31312c3130302c3231312c39352c3235342c3230302c3233312c3131392c39342c3234312c34332c3234332c3232312c36352c3232352c34302c35322c3134312c35372c39332c3231392c34302c36382c39332c3231302c3135342c385d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0, "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3134392c3231352c3134352c3135352c3131362c31392c36362c3230312c3136382c3130312c3139352c38372c3139312c3231362c3133332c39302c3139302c3139342c36392c38352c3133342c3230312c3235352c38332c3134342c3233382c3231382c34382c3130392c3233332c3130392c32342c3234302c3135312c3134322c3138312c35332c3230332c3233352c3233392c31332c32362c3132362c3137392c38372c3235302c3139302c3230372c31372c3231352c3131382c3130332c38352c3134382c39322c352c3133312c38352c39362c3233372c34312c3135352c3230392c31362c32372c35372c3232332c33382c34382c35302c3233302c3135362c3137342c35362c3137322c37342c3232382c34352c35312c32392c332c3131302c3130312c39372c3138352c32312c3232392c3130322c3233332c33392c3134312c31322c3233322c3133372c3135352c33365d2c22706f70223a5b3133362c3230302c33312c3230312c3137392c31322c3235342c3139332c382c3231362c39322c3130352c342c3136302c3138332c3234312c3131372c3131312c35312c3137302c3134322c35312c3134332c37322c3133392c35372c3234392c3134382c3132382c38372c3138332c39352c3132362c3134312c3232332c39332c34372c31392c3232382c34302c3130312c39372c3135312c3138332c3135322c3231392c3130382c3137372c3133392c31322c3232372c3138352c3131332c3135312c3136302c3138332c3232392c32322c392c3139392c3233332c38332c3235302c35382c3133362c38332c322c3232322c3137392c32352c38372c3133362c3138332c3139322c33312c3139302c3139382c3235342c32332c33362c31382c3235322c3231362c39362c36332c39312c3136312c3231372c36352c3233332c3136322c3136322c3139322c3138382c372c38355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b37352c3135302c3137392c3231342c32342c3138372c3230352c3139362c3138322c3234302c38302c32342c3230302c33382c3135362c3135332c36342c3132382c33332c31332c37342c3234342c3130342c3233312c3139332c35312c3137342c3232392c3230362c3235342c3235312c35342c39322c3231372c37322c3133392c3234332c3230342c3134332c3235302c3233312c3231352c3232322c3232382c38382c3136392c36382c31392c35312c31312c33392c3138342c38322c35302c3131362c38322c3132312c3137312c31372c3235302c35312c37332c3231352c335d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3134382c3234322c32352c32372c36362c3139322c3131332c3233322c3234352c3130332c34382c33302c3130392c36352c3135392c3132302c38342c3131372c3135332c35382c3132302c34372c3235322c36392c3139332c36372c37332c31312c3234352c35312c3232382c3138312c37382c3136342c3135362c3137302c3231392c3230332c3132382c3136392c36312c3234352c36352c3135392c38362c3234392c3137312c32362c31342c3134392c36302c3137322c33362c3133392c39342c32362c3233302c31392c3133362c3130362c3131352c36342c38352c31352c35312c3139372c38382c322c362c3136392c34382c362c3139332c3132302c3133392c34302c3230342c35322c3137392c31322c3231382c31372c31302c3131382c3136382c3137302c32382c3138382c3231302c3233382c3134302c3230352c38352c3130392c302c35325d2c22706f70223a5b3137372c3132362c33342c3139332c3139382c38312c3137312c3136362c34342c3231352c3234352c3131392c3130392c322c33332c3131352c35322c3134392c36342c3130312c33342c3230352c36382c3131312c33322c312c31362c3132322c36302c3230392c38302c3132352c3231302c3134372c3139322c3231362c3132312c3135352c3231352c37382c39372c3137382c33342c3137312c39372c3235322c39332c35322c3137382c38392c32332c31312c3135352c3132372c3234302c3232332c3131392c3137322c3230392c3234342c3133302c33382c3136362c3231382c3135362c3132342c36372c32352c39352c35312c3134372c3230382c37362c3130352c3234392c36382c3232322c33352c39322c3231302c3136372c37372c37302c3137362c3130332c37322c3138332c3133382c3132302c3232332c3232302c3130332c3230332c3139302c3134382c3136345d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b33312c3137372c3138332c32342c3230382c3131382c3133392c3131312c3234352c36302c3131352c3136342c33322c31332c39322c3137302c3131392c322c3138382c3232382c3234392c3136342c3132332c3131382c36312c3139312c33342c3136352c39302c3139312c3231392c34332c3233382c3233392c39382c32382c3135342c35392c392c34352c3135332c3131372c3133352c36312c3138332c34382c39312c3138342c3131382c3231382c3133312c3133332c31382c3234392c38382c38332c3134392c3135322c3231392c3131302c372c38342c3230312c31315d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0, "stake": 20000000001 } ], - "hash": "c2cadb32181d511db1710dbdb36e8b9162272ea6321dd7c38920b410e975d42e", - "certificate_hash": "f3b41c1d5dfd4d33a09ae567ef863badbe99eda0a29aa6fddf389e8f5c91a332", - "created_at": "2026-03-13T08:42:48.456284020Z", + "hash": "f2e712accb656d08398572c653972b091e11611dba998e98d8fade0c59e6597d", + "certificate_hash": "767f4dc796ac98eb14e4b319b6e53aadf9742e81a9a94b1d977c1e6b735cdc73", + "created_at": "2026-04-08T08:02:03.449714803Z", "protocol_parameters": { "k": 70, "m": 105, "phi_f": 0.95 } }, - "d538d953ff5ebfa6e10835472115feb54ef6823612e9ecd6b288be1596387bd6": { - "epoch": 16, + "fa8493f779ea9a4bff2fe966c631deeab686a4a80b51112f34e2d71cd9ef2a22": { + "epoch": 11, "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3137372c37302c3230332c34382c3136382c3131382c3137392c3233372c3132352c3134372c3233322c3132372c39392c3131322c3134312c3133372c33312c32382c3131312c3137312c3137332c33382c3130392c3135332c3136372c3234342c3234342c31362c36302c3234312c3137392c32392c3232372c3234332c3235312c312c33312c3232382c3234352c3138342c3134372c3132312c32352c33362c38362c3136362c3133312c36362c302c3135332c3138362c39302c3139382c37352c3133352c34392c3137332c3230382c3235302c31302c3130372c32382c38342c3231362c3136342c39352c37372c39362c3134312c3134372c39322c3139342c38352c3132302c3131342c37382c36302c3235332c3232352c39342c3135302c35302c3234352c3138392c3130302c312c3234302c32352c3134392c33382c31382c38382c3233352c38332c31312c3230395d2c22706f70223a5b3134382c3138312c3232372c36352c3130392c3232312c3234362c3233322c37322c38372c3231352c33392c3133362c32372c38372c3230352c36392c31352c3139372c3136302c36392c35382c3138322c34382c34382c3139392c3131392c3134392c3136322c3133372c31352c38322c3134362c3233342c3132312c3137352c38352c3136312c38322c34302c3233372c3133322c3135392c3235352c37332c3136382c31332c3132302c3135302c35362c3138332c3133392c38372c3133352c3139382c37302c35382c39332c36372c3235342c3134352c3234362c3231332c34312c31322c3139352c3232352c3232362c3139302c33352c35352c3135382c3139392c39352c34312c3233392c3134372c3133332c3134372c3138362c39362c36352c37332c3136352c32362c302c3135332c342c322c342c3139382c32392c3139342c3134392c3134352c375d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3130312c3139332c38362c39372c312c38322c31342c38302c3232362c33382c3235342c32342c3230352c34392c3232342c3234352c3231342c32342c3233332c3234332c35372c3133382c3133332c31302c33302c3135392c3137332c3137362c3138362c3230362c3235312c3233322c3230362c3230312c3139322c3232322c3137342c3137382c3139382c3232322c36382c3134342c39352c3137352c3133352c31372c38312c3235302c3130302c38332c35352c3231302c3231362c3136312c322c3233322c3233362c3232352c3133312c3139392c3230342c33392c3130302c395d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3138312c3137352c3233352c3234332c3130342c36312c36392c3137342c3133382c3138392c3233312c3134322c3133302c32332c3130312c3132302c3131322c35372c3133332c3130382c3130362c3131392c37342c3131322c3132342c36352c38352c3138352c3137322c3135372c38392c3132322c38302c3135322c3131302c3230312c35322c37362c3134322c32342c3139332c3230382c3132342c3135362c32362c3230312c36392c3234302c32302c38322c36372c37302c3133332c3132352c3234302c3232372c39342c3136372c3132372c3131342c3234392c3131302c34372c33342c3232382c3135362c39342c3137302c3230392c3234312c3232322c37362c35312c3131392c3130392c3230322c3137382c32342c36392c3131372c3232382c34362c3131392c3135322c36372c35332c38352c32342c3233362c35392c35322c3139342c33342c3135332c362c3230315d2c22706f70223a5b3133332c31312c3139382c37392c3132392c39362c3235332c3139302c37322c3132342c33342c3135322c39322c3133342c3131302c39392c3234392c36342c3132342c32362c32332c3231352c3230382c37392c3135332c342c37322c31362c3132312c31342c3230362c3233332c3137342c37372c3138302c33342c3231372c362c3231322c35312c3134372c37362c3139382c3231362c32352c37302c3135392c36362c3132382c3130342c3233372c3135372c3134352c322c3137382c3130392c3135372c3134382c3232312c3139332c39362c3135372c3136322c3133342c38392c3134342c34362c3232362c3232392c3230382c32302c3231382c36352c3231302c3132312c3232322c3131392c36302c3233382c3234352c3136372c312c34322c3230322c32392c3138332c372c39382c3133352c3234332c3137302c31322c3134302c3130362c3232342c3139335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3230372c36372c3134392c36342c3136382c33372c35332c36312c3133312c3133332c3235322c3131302c3133332c34342c37362c3133382c3136302c3233342c31332c3135342c39362c3132312c3231302c33392c36342c382c32362c3133302c3234342c32362c3230352c3234362c39312c3234322c3231302c3137312c3139342c33342c3133352c37332c35322c37392c37332c3232372c3130392c3234372c3132312c34392c32332c36352c3137382c3131312c3134362c35312c3138302c3132322c3137392c3136322c3139352c3139312c3138332c3137362c3235332c305d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0, "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3138352c3132362c3137392c34322c39342c382c3231312c3230342c3230352c3134382c34322c39372c3135372c3235332c37332c38382c3232352c3234382c3138382c33302c3133332c39302c31352c3230392c3137342c38332c3134342c38352c3130322c32362c32322c3136352c31392c33372c32352c32342c3136302c3137342c3134302c32322c3139342c3230382c3134342c3131322c39392c35352c31362c342c32342c36382c34322c3139302c3134362c3139352c3133382c36372c39302c3137302c38372c32342c38332c34372c3234312c34312c39322c38392c3130352c3231322c3234352c3136332c3136332c32362c34312c39302c3234362c3139312c39302c32392c3134352c372c3230312c3231382c3134322c35382c33332c3232342c31342c3233332c3130382c3136332c3230392c31342c37362c31372c38362c3139385d2c22706f70223a5b3138332c3130362c3233342c32342c39382c3231312c34312c3135352c3135352c3130332c3135302c36392c3133312c3132372c3133342c3135342c38372c3133372c33392c3133322c3138382c3232312c38342c3234322c3133312c3232382c38332c342c34342c31302c34352c3233342c32362c3234352c3233332c3131352c33342c3134352c3137322c33372c38302c3130332c3130362c31302c36362c3231372c3234382c3130362c3132392c3132352c39332c3135332c31322c33302c3139372c3136352c3135352c3133362c3130342c3139312c3130372c35392c32322c39352c3234302c3232302c3131382c3132312c3139312c38362c3135302c3233302c31382c3139352c33372c3233322c3138322c3230352c3137352c3233332c33322c37392c3233332c34352c34362c31362c3133392c32372c3137342c34362c3139392c3134392c33392c35342c3235352c3135375d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3234372c3130332c312c3134312c3130392c3135332c35302c3137392c32372c3130332c35352c3233352c3131342c33312c37372c35342c39392c3133322c3231362c3136332c3130312c372c37302c3131302c3234322c3235342c3231302c3131342c3139332c36332c31352c36312c3230372c37332c3231312c37332c32312c3137312c3134332c3135372c3137332c3230372c3136392c3231352c3136392c3132362c3130332c3135332c3231392c38352c3138392c32392c3135382c3230382c3130352c3233372c3138372c3235302c32302c3230302c3131302c3137382c3233312c31355d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3136332c3131322c38332c35372c3233372c3139322c33362c3131312c3139302c372c3132332c3131342c37332c3136372c39332c3233322c35372c3231362c3131392c38312c3230372c3139352c352c3130302c3233332c3231352c3231372c3233392c38362c3132352c3137362c3138302c3135302c3134382c3134372c372c35312c3139342c3234352c32322c3134382c3132352c39342c3134352c3137342c39312c3235342c3136362c322c36322c3136322c3231352c3135372c3137352c3231332c3235302c3233302c3231352c3235352c3232362c32362c3137392c39382c3139302c34312c34362c3233332c3134382c3133312c39332c3234332c3136372c3232322c3136392c33302c3233352c3134392c3138312c39322c3230342c3139352c32372c3234382c3136372c3133342c3130352c33342c3232362c35362c34362c3134332c35322c3137382c3235312c34312c39385d2c22706f70223a5b3137352c3132382c3230382c32342c3131392c33372c3131392c3230312c3234382c3231382c31312c3139352c33392c31302c37392c3130392c3133302c3231342c3138302c3133302c3133342c36382c3134312c3130352c36362c37322c34392c3133302c3139302c35392c3133362c3138342c38332c3131362c38322c3131362c3231312c3232352c38352c39352c31322c3232342c3234352c3137382c3133392c39332c3233332c3130382c3133312c3232312c3231382c3131382c3230382c38312c37342c3138372c3232312c3136372c39352c3133342c38392c37392c36312c3231352c3138392c37342c3130392c3136302c3231302c37362c31302c3131342c372c322c31302c392c3134312c3231362c35372c3136302c36372c35342c3132382c3131352c3139332c3135372c3139322c3138372c3133392c33352c3235332c31312c3134372c3133332c32332c3233315d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35332c35392c3138382c3139382c3133332c3139312c3134322c37332c3136362c3136342c39362c39312c3133352c36362c322c392c3230342c35322c32352c3138332c3133362c34342c33372c32352c3133382c3135342c3137312c35392c3139312c3136322c3233352c3233302c35352c3234342c3130352c3134322c3136372c35372c3134392c31342c3133302c36362c3232322c3132382c33332c3233332c3234392c3232332c3233302c3134302c312c3234322c3230332c34302c35332c3135392c36382c35372c34322c37392c35372c3136382c34362c395d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0, "stake": 20000000001 } ], - "hash": "d538d953ff5ebfa6e10835472115feb54ef6823612e9ecd6b288be1596387bd6", - "certificate_hash": "1c4aa48489936100fb4decb172641cb28599792ffe78103917d3844c98866e8a", - "created_at": "2026-03-13T08:42:33.457649602Z", + "hash": "fa8493f779ea9a4bff2fe966c631deeab686a4a80b51112f34e2d71cd9ef2a22", + "certificate_hash": "8b099770c556da485b1798e07af0722b2174e57aa8c668c276460a6c121d9317", + "created_at": "2026-04-08T08:02:09.444348417Z", "protocol_parameters": { "k": 70, "m": 105, "phi_f": 0.95 } }, - "eb15b4008919882202f760cb758675dc5e7d136917093b0e9e93aa1553f3cafa": { - "epoch": 17, + "ff34072e95de6deaf796985a194c635051b489fc35e909c711f7420bae2f05c5": { + "epoch": 10, "signers": [ { - "party_id": "pool1ld9tcpq0q70wl7w96hf6hw8ke2wxqak9uw9k77k4ymsu7p27tmw", - "verification_key": "7b22766b223a5b3137392c3230392c3136392c3138302c3232372c3137362c3138312c3138322c32302c3137392c38312c34372c3136322c3234392c32342c3135392c3138392c3232322c34342c31332c39362c3133312c3233312c3133342c3232342c3136342c3135302c3232342c3230372c3233342c3233362c3130352c3232322c3137392c3231342c3132302c3134352c3234372c3232382c32392c382c3137382c3230362c33372c3131342c3235352c3131322c39362c31332c3132322c3138392c3134302c32332c3139332c39322c3230322c3134392c38322c3138382c35322c3234392c32312c39362c35322c3231302c3134382c3234382c3134302c3132352c34352c3137352c3139382c3136372c34302c39322c3231352c3132322c302c3133382c34382c31372c3136342c3230302c3134372c33362c3231342c3136342c32332c3233322c3131392c3132362c3231322c3137372c3234302c3235322c31355d2c22706f70223a5b3134332c3230382c3136332c3133332c31382c372c37302c3233302c35342c3138352c38302c3234322c32302c3136312c3135382c37342c3134362c35372c3231382c32372c35332c31362c33332c39332c3137302c3230352c32312c35322c3139342c3234382c31322c3235312c3233312c37332c3137322c35372c3232382c38302c36372c34342c36302c3232322c3134352c382c37362c3230332c3234362c34332c3136352c35332c36312c3130352c3139362c33392c38382c3138392c3139312c31372c39392c3139332c3130312c37372c3233342c312c312c3137352c33332c39322c3136332c3133302c3232322c31352c32372c3133312c33342c35392c3232312c3234392c32302c3139322c3135362c33382c3137302c3233362c3135382c3137322c362c322c3134322c3233372c3135322c342c3232362c32392c3138392c3133315d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138322c3233342c3131372c3230342c3136312c3234352c33312c31342c37322c38362c3135342c38382c3233362c3231342c35372c3234342c36322c35332c3231322c33322c3135352c33372c39372c36352c39352c3133342c37312c3135382c332c32322c3137312c3235312c3134332c34352c3133372c362c35312c35372c3230312c3132352c33332c35342c3137362c3133322c382c342c3138392c3137342c3132322c37332c3132302c3138362c36322c36332c3135362c39362c3231352c3131322c36372c392c34312c3230352c37322c315d2c226c68735f706b223a5b3138362c35352c3138352c3232372c3135382c3132332c39312c3234302c3132322c33392c3138322c3135332c3131332c34332c3139382c32382c3231332c3231382c3133382c3138392c32322c3234352c38372c3135322c3133362c3135392c3130302c3133382c3138362c39322c39322c3230325d2c227268735f706b223a5b3231332c3133392c3136362c3233322c3133392c3233392c34362c35332c33302c38392c3139322c312c3133302c38382c3235302c31342c3136302c37312c3132372c3134332c35302c3135362c3138322c32382c3132362c35322c31312c35372c3137392c31382c34372c3233385d7d2c226c68735f706b223a5b33352c3131372c37392c35312c34372c39302c3131372c32392c38352c3137352c3133362c3137372c302c3132372c36372c3233302c38312c31372c38352c34382c35312c3136342c37352c37392c3131322c3234332c3230302c3234352c3137302c3135302c3133312c3138355d2c227268735f706b223a5b3230352c3234362c3139342c3134352c32312c3234362c3230382c3234332c3135322c36382c3138372c3131302c39382c3138332c39322c39322c33332c35362c33302c3130322c3231322c37392c38352c33362c36372c3136342c3130382c3139322c3233312c38342c34392c38305d7d2c226c68735f706b223a5b3231302c3134392c3138362c3138322c3230342c34352c38342c3135312c3134362c35352c3132372c322c3231362c3130352c3230372c3133312c3130342c3137362c3134322c3230332c312c35392c3234362c33372c35322c3235342c3132362c3230392c3232322c3136302c3234332c3232305d2c227268735f706b223a5b3138392c3133312c3136362c3131382c3133312c32332c3132362c31312c3233342c35322c32392c3138322c3134382c36302c3232352c3234352c31362c3231342c32312c3231372c3132332c39342c3135312c38392c3233352c36362c3234392c3133352c3135362c37362c39362c3134305d7d2c226c68735f706b223a5b3134372c3133332c36372c3133302c36352c3233392c3231352c3133372c3234322c3136352c3131362c3231332c3134332c3137342c3132322c3233302c3231352c362c33322c3230332c3132362c3132302c35332c33312c3233312c3138372c3138342c3136312c33312c3234382c3136302c3234355d2c227268735f706b223a5b3131382c3233342c3130392c33352c3232322c3131392c3230342c37382c3139382c3136312c3230372c3231332c3234372c3135382c3230392c3131302c35382c34382c33332c3230312c39352c3131392c39322c3233352c34392c3139392c3130372c35332c3132362c3232312c39382c3234355d7d2c226c68735f706b223a5b3133312c3138312c3131362c37332c37352c3131322c3136302c3138322c36392c31312c3131352c33332c3139322c3137352c37312c38382c3135382c3139352c3230382c37352c3233372c3134342c36372c34382c32382c34352c3138362c36392c3232382c3231322c32392c3137355d2c227268735f706b223a5b38332c37302c39312c35362c3233352c33372c3139382c3234312c35362c31342c3133392c3130382c312c3133382c3230362c39302c3133382c3139342c3234382c3231352c3131342c3131372c3139312c31302c33372c3234312c34352c3233312c38302c3136322c3131392c3234325d7d2c226c68735f706b223a5b3133382c3137362c3130312c38352c3137392c3131302c35322c3134342c3139352c3135352c3232302c3139372c3130362c3135322c3133392c332c35302c3137302c38372c38352c31372c3130312c32382c3233382c3133312c3131322c38302c32312c36392c3230362c3230342c32365d2c227268735f706b223a5b3230362c3133312c3233372c37362c39332c3133302c3230322c3232372c3134372c37312c3132392c3138362c3130392c35342c3135302c32302c3230352c3137382c36382c36332c3133312c3130322c33302c3133322c35362c3139382c3231352c3135382c3137332c3133362c3133312c37345d7d", - "operational_certificate": "5b5b5b36312c38352c3139352c37392c31312c3235312c3132392c3139322c3230362c32352c39302c32302c39312c3233362c3230312c3131382c37342c3130322c35362c3136362c39342c36332c32302c3233372c38322c3137342c38372c38312c3134382c35322c39372c38395d2c302c302c5b3131342c3230322c3133372c34352c3131382c36312c3232352c3137372c3132312c3135352c3138362c3234362c3139362c38382c3137342c3131312c3235352c3133382c3138382c39362c3137392c352c3234332c35362c3137392c3233382c302c3233302c3134382c31322c352c3134302c3232392c33382c3136322c3130352c3139392c3231322c3235342c3134342c35312c3138342c31302c31382c3132332c3234302c34332c39302c3131332c33352c36392c36392c3139342c38322c33332c3232342c382c3232392c3231332c3132332c3136392c39392c3131362c31325d5d2c5b3131392c37362c36342c3135372c37372c3139372c39332c3230362c3230342c36382c3131382c32352c38382c3230382c3131382c3230352c3138302c3232332c3234352c34312c3139332c34372c37382c3231302c3136382c3131342c31322c3234312c34332c3132312c38372c3132375d5d", + "party_id": "pool1962kdxm5xfxp9tfzwu2gj3gh6wkg4pu7z33psytsttqygfg9w8a", + "verification_key": "7b22766b223a5b3134312c3232342c36332c3231322c3130382c38352c3134362c3230302c31312c3138342c32382c35372c3133362c3232362c3133372c3232312c3235352c3131302c3132382c3134302c3136392c3134342c33342c33372c3233382c3230382c32332c3235302c38392c31382c3131382c38332c3230322c3130322c3132332c3132362c3138362c3137332c33342c3136322c3234332c35312c31322c3139382c3134352c3232352c3130322c3234302c31332c3139342c3139342c3233342c3133332c34362c33312c32312c3131342c3138392c3231372c3139372c3135312c38372c3234382c3131392c3130362c352c37312c3234332c3139342c33352c34382c3130322c3132352c37392c3135302c35382c3233322c3132372c3230302c3132312c34372c38362c3233302c3137332c3133302c35382c36302c382c3232322c32372c36322c3233312c3131392c3233332c34322c3136365d2c22706f70223a5b3133392c38372c3139342c3136302c37342c3232392c34312c3134342c3130302c3136352c38352c3234332c3131382c3130352c3136362c3233322c3134352c3231322c33352c35342c3136342c37322c322c32392c3135362c35372c3130352c39352c36392c3230342c3135352c3133392c342c31392c3232392c32362c3132322c3231392c3233372c3235322c37362c3232372c35312c3231352c31302c3133382c3136392c38312c3132382c3234362c3130302c37302c36302c3230372c3232342c36382c3233322c35362c3137382c3134322c33352c3135392c3131392c33382c3134342c3230312c32312c3139342c362c3232362c3134352c3231302c3133332c3138362c3134332c3132342c3136332c32332c362c3232302c3132342c3134302c3234382c3230382c3135342c3134352c3134352c3131342c3134342c33312c3233352c35322c3138392c3136362c3133342c3137375d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3235312c3139352c34312c39362c31332c3233322c38342c3231382c3137342c3132352c3133312c3130392c3139362c3232302c3131312c32332c3130312c34372c34302c3133382c3233382c3233322c3134322c3132312c3131382c3135342c3233342c3133392c3233392c3233342c3130332c35332c3231332c3134362c3138352c312c36342c39352c3235302c3139362c36312c3231362c3235302c35392c3234392c39362c3230362c3230392c3234322c3233312c3233392c3234332c32352c3130372c38322c35332c3132342c3230322c3232372c3233322c3139362c3235332c3133372c305d2c226c68735f706b223a5b34342c3136372c3132352c3233382c3134302c3130352c3137312c3230352c39362c31332c3230362c3231342c3234362c3134362c3232302c3138332c3131302c37362c31302c3133312c3139332c3232372c33392c33382c3130342c3232312c32322c3136332c3130312c33342c3231382c3235355d2c227268735f706b223a5b3230302c3138372c33352c33342c3137322c3234302c32322c3139362c3133332c3135392c3132322c3132362c3135372c3233322c3132302c31322c32352c3232312c3134382c3137322c3234302c32332c37372c39332c3131382c38392c3131382c3134372c37322c36372c3131342c3130345d7d2c226c68735f706b223a5b3233392c382c35372c31372c3138382c342c3232322c39332c3130362c31322c3135322c3135312c3233382c3234352c36362c37382c34362c3132372c3132382c35392c3137392c36382c3139362c35392c31382c36312c37302c3139352c32362c3231382c3230382c3138345d2c227268735f706b223a5b3234332c3135392c3130372c3231302c3234342c32352c3136322c3138322c32332c35382c3131362c3232392c31322c35352c3131302c3136392c35342c3138312c3134322c35322c39382c3230332c3230312c322c3134382c3136382c38352c3132312c3130382c3233392c3137372c385d7d2c226c68735f706b223a5b3136312c3132342c392c36322c3139312c3135322c3233312c36392c3233312c36372c36322c35322c322c3234352c3233392c3231382c3131352c3130382c3134372c36322c3133382c36382c38392c3235322c3231372c3137352c36332c3137392c35352c3235302c38302c36365d2c227268735f706b223a5b3130382c31332c3130312c3130322c36322c36342c34332c3231342c36352c33312c37372c32372c3136322c3231372c34382c3130312c39332c3136312c36302c3139312c3137312c3137352c382c31382c3132332c3134372c3138362c33362c3132322c3137322c31392c33325d7d2c226c68735f706b223a5b3130392c3133372c392c3132312c3130352c382c37332c3130362c32372c3136382c32392c3231312c3134332c37382c36352c33392c3136302c3231312c3137362c3137312c34322c3232322c39312c3131372c3235322c3137312c3139302c3231322c3232322c34352c39302c3131355d2c227268735f706b223a5b3139302c39372c38362c36332c3231332c3230342c33312c3138332c3233342c39302c39392c33362c3131332c302c3138322c3235352c3130302c3130312c3235332c38352c302c3232312c3137322c34372c342c32362c3137382c34392c3136332c3234302c35322c3135385d7d2c226c68735f706b223a5b3234352c3231302c3130342c3134342c36342c3234332c3131392c3234372c3235342c3134392c32382c3231312c3230392c3131382c33332c3133342c3136392c3137322c35302c392c3130372c3133302c38302c362c32342c382c39332c3132342c3139312c36302c38322c3133315d2c227268735f706b223a5b3230302c35352c3137392c3139312c3131372c3135302c3231352c3231302c34312c37392c3134362c3133362c3137342c3136332c3233352c35302c32352c3230352c392c3139342c31352c3130362c3132312c3233312c3131302c3133322c36322c33312c37332c3139352c31372c38325d7d2c226c68735f706b223a5b37342c3233392c32342c3130382c35362c38352c32312c37322c3232372c38302c3131312c3130302c33362c35362c31372c3233342c3132382c35372c3133342c3136342c35332c3138352c37312c38342c322c37362c3230362c3232332c37332c3131342c3139352c365d2c227268735f706b223a5b3135312c38322c3135302c39362c3232382c3132312c33372c3131372c3231382c36382c3234342c3134352c31362c3137302c3138322c352c3232372c33332c3133362c3136332c3134352c3131302c3137362c3135302c39342c3133352c3233392c3233362c3136352c35392c352c3234325d7d", + "operational_certificate": "5b5b5b33322c31392c3232352c38362c3130382c3235342c33392c3135302c3231322c3136392c3234372c34382c3136362c35332c36372c32362c36332c392c3233322c3136332c36302c3134312c3138372c3233312c35322c3138382c342c3139352c3230312c33392c35382c3137385d2c302c302c5b3234342c3233302c3232302c39392c3132352c3139362c3233362c39342c3231342c3131392c3130332c3230372c31372c3234302c38372c3139382c3135372c372c36382c3137372c3235332c38332c332c34312c3234372c3131302c3134312c35322c3232362c37312c36392c35332c3137342c3133392c3234302c39372c3133362c3234372c3132312c3138322c3134382c3136342c35312c3138362c37332c31372c3138302c3234332c352c3231332c3136302c38372c3234362c32302c3132362c352c32322c3232302c3136312c3230362c3234362c3235352c33342c385d5d2c5b3131392c3231372c3138322c33392c3136312c36312c362c38392c33382c32322c3233342c38322c312c3235302c3138342c3135302c32302c3136392c3138322c3134372c3137322c3232312c3130342c35302c32362c3135392c33342c36382c3130352c3233392c3137332c3137345d5d", "kes_period": 0, "stake": 20000000001 }, { - "party_id": "pool1y7k5aadnw2zt9mftd5qwwlqcl5j08l8wj9v23zjrluvru7g324f", - "verification_key": "7b22766b223a5b3134352c3136362c3232352c3235322c38372c3136392c3135302c3134352c31362c3233362c3135312c3130372c38342c3135312c3138322c3134302c31302c3130322c39362c32312c39362c3231382c37322c3130302c3231342c3139322c3136352c31332c36372c32362c32322c3136342c3139332c3134312c3233382c3230382c3139312c36362c3131382c3230362c3133382c37382c3231312c31362c37392c3136352c3134342c3232372c32322c3139332c3135382c31362c3135332c3131312c39322c3230312c3133322c312c38392c3139322c3235312c3234302c3233392c3234392c3232302c35312c3137312c37302c3137352c36312c31342c34342c3138342c3135372c3134312c32342c3231392c3136302c39372c32352c34332c3137342c38332c3130342c32302c3230322c34362c3234392c32382c3131392c36382c34342c37382c3134302c3230332c3233315d2c22706f70223a5b3136382c3235312c3136302c36342c3233382c3232342c3137362c3137332c33372c3232302c38312c3136352c352c36352c3230362c3230312c37352c3137302c3231322c3137322c3136392c3234342c3136362c3230342c3137382c3231352c3137342c3132352c3235312c3139342c3134312c34392c33382c33332c3133372c3230352c36342c3139342c392c3233372c3233322c35392c3231352c3138352c3133392c3135362c3138332c3139332c3134392c39372c39332c3130312c35372c3131372c3134342c3138302c3233352c35352c3137332c3135392c3232322c3138372c38382c34362c3138322c3139352c3135382c3132322c3133362c3131322c3235322c3235302c3139302c3133312c3137372c3135302c3138372c3133382c3136302c3134372c3130322c3135312c3137372c3135302c382c39322c3230302c3138362c3130382c3133392c3137302c3234332c3133362c32352c3133322c3130345d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3233342c3234322c36342c3134362c3136362c3137362c34342c3235332c3232382c3232312c37362c3138312c3134302c3233322c3132362c34342c39382c34312c3139332c39372c3235312c3139372c3134372c3133372c32372c37312c3135312c3234312c3131352c3133332c3139352c31362c3135352c3138392c39372c34342c3134312c3139392c3139322c3133362c39392c3231382c3235302c3138342c37332c3233332c3233392c37382c3136342c31332c3231332c3233302c3134342c38382c37372c3130322c3138342c3134392c3232322c3233382c3231382c36392c32342c31335d2c226c68735f706b223a5b3136372c38362c3138322c3233322c35392c3135372c33302c3130392c35302c3233312c3138372c32302c3136332c37382c3232302c322c39322c3232382c36302c322c35382c33332c37312c36342c3130322c35322c3130382c3134392c3130362c3131372c3230362c3130345d2c227268735f706b223a5b38322c3137342c3131312c3231302c3133322c34352c3231332c3137312c3231372c3138312c34362c32312c362c3233312c31372c35342c34392c3138362c3232312c35392c3233352c32342c39322c36392c3134382c38332c3231372c34372c3139392c3231362c35352c3230315d7d2c226c68735f706b223a5b332c39392c31332c3233362c362c3233392c35352c31332c35372c3138352c33342c39332c34342c32332c3233372c3136362c3134312c39362c3231312c3231322c3130312c3133392c36352c3137392c38362c3138352c3138382c302c3131362c35382c3235342c3230355d2c227268735f706b223a5b3233362c3135372c31372c3235352c3137382c3137322c37302c3231352c36392c3132362c37332c31342c34312c3234382c3137372c3234352c3132392c35362c39392c302c3131312c38312c3131332c392c3134312c33332c3130372c372c33332c3130302c3230322c31325d7d2c226c68735f706b223a5b3231342c3234382c3135352c3233352c3235332c31372c32312c3130302c3135352c3135312c352c31342c35302c3235322c3134372c3232332c39332c3232352c3130342c33382c3230372c33322c3136382c3234332c3233332c3231372c3132322c3233302c3139322c39342c3230312c345d2c227268735f706b223a5b33302c3130312c3232312c33322c3232312c3132322c3231362c3234332c3134322c3231392c3137362c39392c39362c31372c3135362c3136332c3134322c36382c32392c3131342c3230392c3134352c3130382c3134382c39302c3139352c37312c39302c3133392c34332c3133382c3134305d7d2c226c68735f706b223a5b3132362c37352c32342c3132342c3134302c3133392c39362c3130302c3233352c34392c3230392c33322c3232312c37322c31322c37332c3138352c3235332c3233312c3136332c39342c3137362c3139302c3235302c3130362c3133382c32392c39332c3233312c32342c36352c3133305d2c227268735f706b223a5b3233322c3136382c3131392c31372c36342c33382c3138382c3233392c3233342c352c39322c3234362c32382c32362c32312c3234362c382c3130372c312c3131332c3130322c3230352c3235342c33322c3231332c36332c3231302c36312c33362c35372c3132392c3138375d7d2c226c68735f706b223a5b36312c32362c3230382c3134322c3234372c3234312c3139342c36392c3139362c3235342c3138312c3132382c3136382c3234342c3133332c39392c3136342c34352c3234362c3130332c3134382c3138322c3136362c37392c3132372c322c37352c3138342c34392c39392c3136362c3135395d2c227268735f706b223a5b36302c32362c382c3134332c3132312c3234332c3232392c3230372c36332c34352c31392c3130382c3131332c3234342c35322c34352c34342c3138322c33312c3230302c3232332c3130372c3230322c3230382c3134312c322c38362c36302c3134392c392c3233322c375d7d2c226c68735f706b223a5b3138362c3232302c3230342c31362c3134392c3136362c38322c31332c3136322c3232392c3135312c3234312c3132352c3235332c3230372c3230332c37362c3134342c3136312c3135312c3137352c31332c3130322c3131352c39392c3232352c3130332c312c34392c37372c34352c3139355d2c227268735f706b223a5b33312c37352c3232332c3232382c35332c3130332c392c34302c32302c3135342c39342c37302c3233352c34312c3231372c3131342c3234382c3138342c3230362c3235302c3138392c38342c34382c3134312c3133322c3230362c33372c31342c3139312c31342c3234342c35345d7d", - "operational_certificate": "5b5b5b3234362c39302c31332c36332c322c3132352c3234322c3136392c322c3135392c3138322c38312c36362c3230372c38332c35362c32342c35362c33332c34352c37382c3138372c3132322c3230362c3231332c3232332c3234382c3133322c34352c3134322c3132362c38355d2c302c302c5b3137332c382c31362c31322c3130322c36332c34382c32382c3233382c31382c3232322c32322c32352c3137382c38322c31302c36302c36342c3234392c3233312c3138372c37302c32392c322c3137312c37342c3137372c38342c33332c3131312c3234332c39392c3131342c36312c3137322c3233322c3137332c3231322c34372c39302c3133382c3130332c3132332c39322c3134352c3137312c3136312c3233332c38382c32322c362c32362c31392c3230392c3131322c3233302c3133392c3135302c35332c3230382c36342c3234372c3233322c31315d5d2c5b3230322c3137322c3139392c3135302c3139382c3230352c3135302c3133362c392c39362c3139312c3133372c3134312c3232352c3134372c35372c31312c3231382c39352c3136312c3133302c36302c35362c36382c3137332c36332c38322c3137392c3230322c39322c32382c34365d5d", + "party_id": "pool1ltztpqdqcyuv3pu8j47slqn438nhh2lr3p8mjv04zln7jgsys4r", + "verification_key": "7b22766b223a5b3132392c39372c382c3233302c3130372c3234322c3134302c3230302c34322c3136372c3138362c3134312c3230372c3133382c3137362c3136372c37302c34332c34392c3135392c35352c3231322c3133342c3232382c35382c3233382c32392c37352c32362c3134332c3131392c3137302c3135352c3135392c3131392c3134342c36302c3136392c34332c3138342c35352c3230382c3233392c3135312c33312c3231312c3133382c3139382c342c3135332c312c36342c3135312c3233362c34382c34342c3132372c3130322c31312c3233302c3234352c32322c3138322c38392c3232392c3132352c3130322c3134362c3131382c3139382c32362c37382c31322c31332c36392c35332c3139312c33392c3234342c3233312c35342c3131352c3132392c3139322c37332c3232392c312c31372c3132342c3132372c31372c312c322c36362c3233342c3139325d2c22706f70223a5b3136332c34362c3134332c3134382c31362c3130322c35392c36312c3130322c36392c36312c3135302c3130312c35322c3132342c3138332c3136322c35352c3139352c36392c37392c3131352c3135382c3136312c3234322c3231372c3130342c3137302c33332c3137362c3132322c3232382c3233312c3131302c37352c3138342c3136362c3137342c31362c32302c3139362c33302c3231382c37352c38332c3135382c38352c3235342c3134332c33372c39362c3132372c3138382c37342c302c36312c3137322c3135392c3131322c3134352c3235312c3138372c3235302c3233332c3134342c3132342c3230392c3135352c3233392c3135382c3139382c332c3137372c31302c3131342c3230332c3135342c3130312c3135382c3231302c31302c3130302c3133312c382c3233342c3130322c3135372c37312c3135382c3132352c3233332c33302c33352c39392c36322c35345d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3233362c3233322c3131342c3131312c3137302c3139392c3235332c3234372c39382c3130312c3132392c342c3135332c3139322c3134342c3234322c3234382c33342c3139382c3233392c3136322c3130372c32392c3132362c34382c3235322c36352c3232382c37392c34302c3230362c34372c3137322c3130322c39392c33382c34382c33312c3135302c3230342c3132382c34362c38392c3233322c34302c3134362c31332c39382c3231342c3137302c3136322c3132302c3136302c3135352c3234372c32302c39342c3135392c3135342c3132302c36392c3136372c37362c335d2c226c68735f706b223a5b35382c31352c3131302c36332c31382c3230332c3135332c3135392c3130342c3133312c37392c37392c3233332c3133322c3233302c3230332c3232382c3137312c382c3137342c3232362c3230352c34342c3138312c39302c3233332c3133302c3230382c3139392c37302c3134372c3235355d2c227268735f706b223a5b39362c3138372c3230322c3233322c38382c3231372c31322c3133302c3234382c3230302c3131382c3137372c32342c3234322c3132332c3138352c35372c34312c3139342c362c3136302c3231332c3233362c3234322c37382c3137322c38302c36302c32372c3130392c3231322c3231395d7d2c226c68735f706b223a5b38352c3133332c37312c3136372c3134302c34382c3232352c3136362c31362c33352c3133352c3139332c3231392c3136352c37392c3138372c3139302c32352c35322c382c3132322c35312c3131332c3133332c3136362c33332c34382c3131372c3132342c34362c38372c36345d2c227268735f706b223a5b3131372c38312c32372c38342c3134372c3136382c3231332c3230362c3234392c3233362c3137362c3230312c3138372c36352c3138342c322c302c38322c3136382c3234332c3134302c3138392c37362c38302c3134352c31302c3131312c3139372c35352c37352c3136382c37365d7d2c226c68735f706b223a5b3230302c33362c3130392c3234342c3137352c3231322c33352c3132372c3139312c35312c3137322c3131352c3235302c3137372c3230312c3130362c3133332c31382c3131332c3136332c3136342c3132322c39302c3139372c3231302c37362c31332c3135302c3137392c3138332c36362c3135395d2c227268735f706b223a5b3230392c3231362c3139382c3230372c3138312c3138342c37312c3136382c3234372c3131332c39372c35342c3135332c3138382c33302c36332c3132392c3136352c3231332c3235312c32342c3139322c3137302c38392c3234322c3234352c3233322c3134382c3230382c36322c34392c3137325d7d2c226c68735f706b223a5b3232352c34392c3136352c3230372c3137302c3134342c35352c3135352c3232302c3131322c3137342c3232332c34312c3131392c37332c3137332c3137382c3131392c3136382c34332c37312c3231302c3234392c3231392c36332c33362c38302c35392c3231372c39342c3130382c32345d2c227268735f706b223a5b36332c362c31342c3131362c3136302c3135362c392c3234382c32302c3132322c36392c3130322c3130362c3233382c3133352c3233392c3139392c3134322c3138372c33372c3135382c3133312c39302c3230332c3133352c3130302c38332c3138382c3133322c3135392c36372c3137305d7d2c226c68735f706b223a5b33382c3137322c3138322c37382c3233322c3232392c39302c3136312c3139372c3137372c3136392c3233302c312c36372c3130312c3134342c3233312c3135342c332c3139342c3138312c3139372c3139322c37312c3132362c39392c3231312c322c3134372c3134302c3135352c3138375d2c227268735f706b223a5b34372c37322c36342c34382c3136392c312c39312c39382c39342c3130332c3137342c3135322c3137362c39302c3130312c36332c3131312c3137322c3135312c3134342c3234332c3235342c3234332c3138332c352c34342c36362c3131322c34312c33312c3137312c35335d7d2c226c68735f706b223a5b3134352c36362c31302c3235352c34322c34312c3231352c3233332c382c3136332c33312c3133352c3138352c35352c3134302c37342c3134332c35392c32312c3130322c31392c3136382c34362c3138382c3133302c3231362c34322c3134322c3136332c3133392c3232372c34355d2c227268735f706b223a5b33332c3131342c32342c3231302c3234382c33332c3230362c3234312c3232382c3230372c37342c3233372c3134362c3234372c3136392c3138302c3133392c35392c3136392c38372c3138332c3133312c3135382c3137302c37332c3231352c36352c3135382c34372c34302c3232312c3234365d7d", + "operational_certificate": "5b5b5b38312c34342c33382c3137332c3235352c382c3137392c39302c3136392c3231342c32352c3232352c3138302c3230302c36372c31372c3137332c3134352c3139382c3232392c35362c33332c3230382c32392c38392c3135372c3139392c3232352c3134332c3134382c33322c32305d2c302c302c5b3234342c3138312c31302c3133342c3231372c3134392c31382c3235332c3139342c3131382c33362c3135372c3138352c35322c34332c3133382c33302c3231332c3231342c3233392c3134392c37302c312c3131352c3234302c35392c39342c3138362c3135392c3132312c33322c3131322c3235332c3136352c37372c35382c3130302c3133312c3132342c32302c3134302c3139342c37392c33302c35332c37322c392c3235342c3230372c3234382c37372c3130392c3137302c3233302c35362c3234322c33352c32382c3139382c36362c3231312c3233352c36322c355d5d2c5b3232312c3131312c3230322c3133312c35352c3137392c3235332c3234312c3232312c3230322c3234312c3132332c38372c3234322c3132362c37352c34332c38312c3130352c3131312c3235312c36382c3133352c36342c3137332c36352c37342c37302c38342c3134362c3134312c32385d5d", "kes_period": 0, "stake": 20000000001 } ], - "hash": "eb15b4008919882202f760cb758675dc5e7d136917093b0e9e93aa1553f3cafa", - "certificate_hash": "7d8ad90cfa2289b90a4a153a6660bb77f08a1ae11297f4c1a8fe848674a47217", - "created_at": "2026-03-13T08:42:36.462477235Z", + "hash": "ff34072e95de6deaf796985a194c635051b489fc35e909c711f7420bae2f05c5", + "certificate_hash": "0f8f818a070cd6034f334226472382e57700c261ac9208e4ee64f50d60638d33", + "created_at": "2026-04-08T08:02:06.455402587Z", "protocol_parameters": { "k": 70, "m": 105, diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots-list.json b/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots-list.json index e67c20159d5..b7ffc0d9234 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots-list.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots-list.json @@ -1,160 +1,200 @@ [ { - "digest": "d4ef84853eb11b5ca409b0c75a2a5e3c5affe6fbe18a20fc9c15340671fa7745", + "digest": "6e0d192003c2bd6c8308388224d4eb4ebaf1d8594862045182dbc9dac49c1dff", "network": "devnet", "beacon": { - "epoch": 21, - "immutable_file_number": 5 + "epoch": 16, + "immutable_file_number": 3 }, - "certificate_hash": "97c07626c103e427099969cfc6b31e989e51e9789cab4d94b7f8859a707ffeb0", - "size": 163778, - "ancillary_size": 13835, - "created_at": "2026-03-13T08:42:48.970831026Z", + "certificate_hash": "d2a42057e168a0f385d4652c07bf1de65b433442f4576079d21f751ec4261879", + "size": 110486, + "ancillary_size": 27584, + "created_at": "2026-04-08T08:02:24.974966901Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e21-i5.d4ef84853eb11b5ca409b0c75a2a5e3c5affe6fbe18a20fc9c15340671fa7745.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e16-i3.6e0d192003c2bd6c8308388224d4eb4ebaf1d8594862045182dbc9dac49c1dff.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e21-i5.d4ef84853eb11b5ca409b0c75a2a5e3c5affe6fbe18a20fc9c15340671fa7745.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e16-i3.6e0d192003c2bd6c8308388224d4eb4ebaf1d8594862045182dbc9dac49c1dff.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, { - "digest": "669fc81b08700272b49b9f2988999e56840ce0ce63640a6f7729616e0ed764de", + "digest": "0a74b1872774e7fe4d404b94cb554a88359e554ba232939b1c3323db1c2c0e43", "network": "devnet", "beacon": { - "epoch": 20, - "immutable_file_number": 5 + "epoch": 15, + "immutable_file_number": 3 }, - "certificate_hash": "70cfef9c00b300cf13dd2a1ae66c3568800403642551a250e9407f8a28edc0d4", - "size": 163778, - "ancillary_size": 5609, - "created_at": "2026-03-13T08:42:46.222414116Z", + "certificate_hash": "af506818c7a9806c527dcc7d97a95f3719254d8cf33938213b70ef8c26c5f212", + "size": 110486, + "ancillary_size": 19398, + "created_at": "2026-04-08T08:02:21.982445857Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e20-i5.669fc81b08700272b49b9f2988999e56840ce0ce63640a6f7729616e0ed764de.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e15-i3.0a74b1872774e7fe4d404b94cb554a88359e554ba232939b1c3323db1c2c0e43.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e20-i5.669fc81b08700272b49b9f2988999e56840ce0ce63640a6f7729616e0ed764de.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e15-i3.0a74b1872774e7fe4d404b94cb554a88359e554ba232939b1c3323db1c2c0e43.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, { - "digest": "2408915ca6aff6294c72aee3ced0d2cbae8df0f799df5768194ca8a328ff6f5d", + "digest": "2767ccc033f7625d0b531c943039b4a4adcaf80846dfc5b3c809d92f733864dc", "network": "devnet", "beacon": { - "epoch": 20, - "immutable_file_number": 4 + "epoch": 14, + "immutable_file_number": 3 }, - "certificate_hash": "48e8b106fd1f11413d1eb4ca927c3ce35f0e080c88b3ca72fe02c007923129e9", - "size": 136794, - "ancillary_size": 33196, - "created_at": "2026-03-13T08:42:45.971276214Z", + "certificate_hash": "84409b810f03f820e3a2f1bbe66479aec09a8f7e1a8699a84d8c3d9936a5ae44", + "size": 110486, + "ancillary_size": 11193, + "created_at": "2026-04-08T08:02:18.982000207Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e20-i4.2408915ca6aff6294c72aee3ced0d2cbae8df0f799df5768194ca8a328ff6f5d.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e14-i3.2767ccc033f7625d0b531c943039b4a4adcaf80846dfc5b3c809d92f733864dc.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e20-i4.2408915ca6aff6294c72aee3ced0d2cbae8df0f799df5768194ca8a328ff6f5d.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e14-i3.2767ccc033f7625d0b531c943039b4a4adcaf80846dfc5b3c809d92f733864dc.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, { - "digest": "91a65d54351c6e9f6df3cd15c0364f59a686a68b460667cbcc58b16ca6346b95", + "digest": "aa74b8b231e60efa2c6b10d2699540728aae37198a31fd2f7a84ae561987dd8f", "network": "devnet", "beacon": { - "epoch": 19, - "immutable_file_number": 4 + "epoch": 13, + "immutable_file_number": 3 }, - "certificate_hash": "f6bcde660bb71204ccceb58560a3eb8cb2d9753e494f19a4400d6090713117a1", - "size": 136794, - "ancillary_size": 25009, - "created_at": "2026-03-13T08:42:42.975832735Z", + "certificate_hash": "0538388b1ecfe3a276441dec5f6217fe8a7684c485a36528ed22e5601b6aac44", + "size": 110486, + "ancillary_size": 5366, + "created_at": "2026-04-08T08:02:17.220870506Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e19-i4.91a65d54351c6e9f6df3cd15c0364f59a686a68b460667cbcc58b16ca6346b95.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e13-i3.aa74b8b231e60efa2c6b10d2699540728aae37198a31fd2f7a84ae561987dd8f.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e19-i4.91a65d54351c6e9f6df3cd15c0364f59a686a68b460667cbcc58b16ca6346b95.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e13-i3.aa74b8b231e60efa2c6b10d2699540728aae37198a31fd2f7a84ae561987dd8f.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, { - "digest": "5595c7ddbed6ee910a6372125c6695f62cfb8b699b9542ab9fb2b418e2fa99ff", + "digest": "47acc0d10e6423607e20dd0e93f8d55d243a8d8fad680d47b5ef9135b6c7b0ef", "network": "devnet", "beacon": { - "epoch": 18, - "immutable_file_number": 4 + "epoch": 13, + "immutable_file_number": 2 }, - "certificate_hash": "94d24f5b7c3e0bbcb5fc8235a8db168b4a4aa3ee58fb8a0297166d864eb61e07", - "size": 136794, - "ancillary_size": 16821, - "created_at": "2026-03-13T08:42:39.970836407Z", + "certificate_hash": "5f4c3b3809098c2ddf6001b532b69ba1e38d077123f0b54f1b97175e472f4d0f", + "size": 83336, + "ancillary_size": 30453, + "created_at": "2026-04-08T08:02:15.981038166Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e18-i4.5595c7ddbed6ee910a6372125c6695f62cfb8b699b9542ab9fb2b418e2fa99ff.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e13-i2.47acc0d10e6423607e20dd0e93f8d55d243a8d8fad680d47b5ef9135b6c7b0ef.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e18-i4.5595c7ddbed6ee910a6372125c6695f62cfb8b699b9542ab9fb2b418e2fa99ff.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e13-i2.47acc0d10e6423607e20dd0e93f8d55d243a8d8fad680d47b5ef9135b6c7b0ef.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, { - "digest": "d2b0fabc7be2892008d3b4e6c1a30bb3773cf82337179f241f64e54bc3a5739b", + "digest": "dd5bb5e8e41e81627b8e6b845d5e8fa56d21321393b5a5ca763764be106a91bf", "network": "devnet", "beacon": { - "epoch": 17, - "immutable_file_number": 4 + "epoch": 12, + "immutable_file_number": 2 }, - "certificate_hash": "c23fca694e18b1e6e3cec34e36bbb36e452ea8434c0215d370287056db52a67b", - "size": 136794, - "ancillary_size": 8162, - "created_at": "2026-03-13T08:42:36.972711778Z", + "certificate_hash": "e4f2f1407aa06ec9b7964c04f6729003a5209864d65701cb6dcc6c50e1469c02", + "size": 83336, + "ancillary_size": 22254, + "created_at": "2026-04-08T08:02:12.972726157Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e17-i4.d2b0fabc7be2892008d3b4e6c1a30bb3773cf82337179f241f64e54bc3a5739b.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e12-i2.dd5bb5e8e41e81627b8e6b845d5e8fa56d21321393b5a5ca763764be106a91bf.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e17-i4.d2b0fabc7be2892008d3b4e6c1a30bb3773cf82337179f241f64e54bc3a5739b.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e12-i2.dd5bb5e8e41e81627b8e6b845d5e8fa56d21321393b5a5ca763764be106a91bf.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, { - "digest": "9509a8c04b1222a2881ae8977af38ffb7682007c686a4fe159c97de11a5c14e8", + "digest": "071b6066fe150a637fc1d19822582990f2c7ec47e8199c3143a0b15e83b2dfa9", "network": "devnet", "beacon": { - "epoch": 16, - "immutable_file_number": 3 + "epoch": 11, + "immutable_file_number": 2 }, - "certificate_hash": "b8173ece3d0826e5b16a1ee082fc9ac05ae8b85dbcbb8c347f887f1ecc814f45", - "size": 109763, - "ancillary_size": 27637, - "created_at": "2026-03-13T08:42:33.977683364Z", + "certificate_hash": "8c3fa708dabffb295a45cde300ac44d336163789fb9b5f2b461ff3693ceaee2e", + "size": 83336, + "ancillary_size": 13802, + "created_at": "2026-04-08T08:02:09.979847263Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e16-i3.9509a8c04b1222a2881ae8977af38ffb7682007c686a4fe159c97de11a5c14e8.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e11-i2.071b6066fe150a637fc1d19822582990f2c7ec47e8199c3143a0b15e83b2dfa9.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e16-i3.9509a8c04b1222a2881ae8977af38ffb7682007c686a4fe159c97de11a5c14e8.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e11-i2.071b6066fe150a637fc1d19822582990f2c7ec47e8199c3143a0b15e83b2dfa9.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, { - "digest": "2d66765048c5bae516d6ea1239827d92b0b4597dc5b9804b9a5a3cc66555b80f", + "digest": "61514916b89cea75bfe40da7984280cf93101e9cbf6d8418906d3a30101759b5", "network": "devnet", "beacon": { - "epoch": 15, - "immutable_file_number": 3 + "epoch": 10, + "immutable_file_number": 2 + }, + "certificate_hash": "772c31b4ace2d8e0d459cc1c8f0597e6f08d995469ae4c3192e7731297b72fa4", + "size": 83336, + "ancillary_size": 5323, + "created_at": "2026-04-08T08:02:07.209095654Z", + "locations": [ + "http://localhost:8080/aggregator/snapshot_download/devnet-e10-i2.61514916b89cea75bfe40da7984280cf93101e9cbf6d8418906d3a30101759b5.tar.zst" + ], + "ancillary_locations": [ + "http://localhost:8080/aggregator/snapshot_download/devnet-e10-i2.61514916b89cea75bfe40da7984280cf93101e9cbf6d8418906d3a30101759b5.ancillary.tar.zst" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "10.6.2" + }, + { + "digest": "1439e1e841ff2b5a21db6ac02d93e761d2cd7ae3c6375224709248d1bd9007d8", + "network": "devnet", + "beacon": { + "epoch": 10, + "immutable_file_number": 1 + }, + "certificate_hash": "1100a5aeb4f51f087af287b7823228b42bea96781f2396a48c6348ac9439e751", + "size": 56032, + "ancillary_size": 33255, + "created_at": "2026-04-08T08:02:06.973989493Z", + "locations": [ + "http://localhost:8080/aggregator/snapshot_download/devnet-e10-i1.1439e1e841ff2b5a21db6ac02d93e761d2cd7ae3c6375224709248d1bd9007d8.tar.zst" + ], + "ancillary_locations": [ + "http://localhost:8080/aggregator/snapshot_download/devnet-e10-i1.1439e1e841ff2b5a21db6ac02d93e761d2cd7ae3c6375224709248d1bd9007d8.ancillary.tar.zst" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "10.6.2" + }, + { + "digest": "72f8d23cc53f9ed7a19e17bdb50ce66a2267e544dc37838dbcf8698790992538", + "network": "devnet", + "beacon": { + "epoch": 9, + "immutable_file_number": 1 }, - "certificate_hash": "58da985b409687d0c0d42857423c28deda262df5a4e57259e46f4f06d3dcc5ba", - "size": 109763, - "ancillary_size": 19438, - "created_at": "2026-03-13T08:42:30.993393589Z", + "certificate_hash": "809b365412e72a70f765eed7e7eccd008e419707bcd10fe2ecaeac731fe813c9", + "size": 56032, + "ancillary_size": 24852, + "created_at": "2026-04-08T08:02:03.986917949Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e15-i3.2d66765048c5bae516d6ea1239827d92b0b4597dc5b9804b9a5a3cc66555b80f.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e9-i1.72f8d23cc53f9ed7a19e17bdb50ce66a2267e544dc37838dbcf8698790992538.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e15-i3.2d66765048c5bae516d6ea1239827d92b0b4597dc5b9804b9a5a3cc66555b80f.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e9-i1.72f8d23cc53f9ed7a19e17bdb50ce66a2267e544dc37838dbcf8698790992538.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots.json b/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots.json index 4df0a7a255a..cdd08692c5f 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots.json @@ -1,160 +1,200 @@ { - "2408915ca6aff6294c72aee3ced0d2cbae8df0f799df5768194ca8a328ff6f5d": { - "digest": "2408915ca6aff6294c72aee3ced0d2cbae8df0f799df5768194ca8a328ff6f5d", + "071b6066fe150a637fc1d19822582990f2c7ec47e8199c3143a0b15e83b2dfa9": { + "digest": "071b6066fe150a637fc1d19822582990f2c7ec47e8199c3143a0b15e83b2dfa9", "network": "devnet", "beacon": { - "epoch": 20, - "immutable_file_number": 4 + "epoch": 11, + "immutable_file_number": 2 }, - "certificate_hash": "48e8b106fd1f11413d1eb4ca927c3ce35f0e080c88b3ca72fe02c007923129e9", - "size": 136794, - "ancillary_size": 33196, - "created_at": "2026-03-13T08:42:45.971276214Z", + "certificate_hash": "8c3fa708dabffb295a45cde300ac44d336163789fb9b5f2b461ff3693ceaee2e", + "size": 83336, + "ancillary_size": 13802, + "created_at": "2026-04-08T08:02:09.979847263Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e20-i4.2408915ca6aff6294c72aee3ced0d2cbae8df0f799df5768194ca8a328ff6f5d.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e11-i2.071b6066fe150a637fc1d19822582990f2c7ec47e8199c3143a0b15e83b2dfa9.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e20-i4.2408915ca6aff6294c72aee3ced0d2cbae8df0f799df5768194ca8a328ff6f5d.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e11-i2.071b6066fe150a637fc1d19822582990f2c7ec47e8199c3143a0b15e83b2dfa9.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, - "2d66765048c5bae516d6ea1239827d92b0b4597dc5b9804b9a5a3cc66555b80f": { - "digest": "2d66765048c5bae516d6ea1239827d92b0b4597dc5b9804b9a5a3cc66555b80f", + "0a74b1872774e7fe4d404b94cb554a88359e554ba232939b1c3323db1c2c0e43": { + "digest": "0a74b1872774e7fe4d404b94cb554a88359e554ba232939b1c3323db1c2c0e43", "network": "devnet", "beacon": { "epoch": 15, "immutable_file_number": 3 }, - "certificate_hash": "58da985b409687d0c0d42857423c28deda262df5a4e57259e46f4f06d3dcc5ba", - "size": 109763, - "ancillary_size": 19438, - "created_at": "2026-03-13T08:42:30.993393589Z", + "certificate_hash": "af506818c7a9806c527dcc7d97a95f3719254d8cf33938213b70ef8c26c5f212", + "size": 110486, + "ancillary_size": 19398, + "created_at": "2026-04-08T08:02:21.982445857Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e15-i3.2d66765048c5bae516d6ea1239827d92b0b4597dc5b9804b9a5a3cc66555b80f.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e15-i3.0a74b1872774e7fe4d404b94cb554a88359e554ba232939b1c3323db1c2c0e43.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e15-i3.2d66765048c5bae516d6ea1239827d92b0b4597dc5b9804b9a5a3cc66555b80f.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e15-i3.0a74b1872774e7fe4d404b94cb554a88359e554ba232939b1c3323db1c2c0e43.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, - "5595c7ddbed6ee910a6372125c6695f62cfb8b699b9542ab9fb2b418e2fa99ff": { - "digest": "5595c7ddbed6ee910a6372125c6695f62cfb8b699b9542ab9fb2b418e2fa99ff", + "1439e1e841ff2b5a21db6ac02d93e761d2cd7ae3c6375224709248d1bd9007d8": { + "digest": "1439e1e841ff2b5a21db6ac02d93e761d2cd7ae3c6375224709248d1bd9007d8", "network": "devnet", "beacon": { - "epoch": 18, - "immutable_file_number": 4 + "epoch": 10, + "immutable_file_number": 1 }, - "certificate_hash": "94d24f5b7c3e0bbcb5fc8235a8db168b4a4aa3ee58fb8a0297166d864eb61e07", - "size": 136794, - "ancillary_size": 16821, - "created_at": "2026-03-13T08:42:39.970836407Z", + "certificate_hash": "1100a5aeb4f51f087af287b7823228b42bea96781f2396a48c6348ac9439e751", + "size": 56032, + "ancillary_size": 33255, + "created_at": "2026-04-08T08:02:06.973989493Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e18-i4.5595c7ddbed6ee910a6372125c6695f62cfb8b699b9542ab9fb2b418e2fa99ff.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e10-i1.1439e1e841ff2b5a21db6ac02d93e761d2cd7ae3c6375224709248d1bd9007d8.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e18-i4.5595c7ddbed6ee910a6372125c6695f62cfb8b699b9542ab9fb2b418e2fa99ff.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e10-i1.1439e1e841ff2b5a21db6ac02d93e761d2cd7ae3c6375224709248d1bd9007d8.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, - "669fc81b08700272b49b9f2988999e56840ce0ce63640a6f7729616e0ed764de": { - "digest": "669fc81b08700272b49b9f2988999e56840ce0ce63640a6f7729616e0ed764de", + "2767ccc033f7625d0b531c943039b4a4adcaf80846dfc5b3c809d92f733864dc": { + "digest": "2767ccc033f7625d0b531c943039b4a4adcaf80846dfc5b3c809d92f733864dc", "network": "devnet", "beacon": { - "epoch": 20, - "immutable_file_number": 5 + "epoch": 14, + "immutable_file_number": 3 + }, + "certificate_hash": "84409b810f03f820e3a2f1bbe66479aec09a8f7e1a8699a84d8c3d9936a5ae44", + "size": 110486, + "ancillary_size": 11193, + "created_at": "2026-04-08T08:02:18.982000207Z", + "locations": [ + "http://localhost:8080/aggregator/snapshot_download/devnet-e14-i3.2767ccc033f7625d0b531c943039b4a4adcaf80846dfc5b3c809d92f733864dc.tar.zst" + ], + "ancillary_locations": [ + "http://localhost:8080/aggregator/snapshot_download/devnet-e14-i3.2767ccc033f7625d0b531c943039b4a4adcaf80846dfc5b3c809d92f733864dc.ancillary.tar.zst" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "10.6.2" + }, + "47acc0d10e6423607e20dd0e93f8d55d243a8d8fad680d47b5ef9135b6c7b0ef": { + "digest": "47acc0d10e6423607e20dd0e93f8d55d243a8d8fad680d47b5ef9135b6c7b0ef", + "network": "devnet", + "beacon": { + "epoch": 13, + "immutable_file_number": 2 }, - "certificate_hash": "70cfef9c00b300cf13dd2a1ae66c3568800403642551a250e9407f8a28edc0d4", - "size": 163778, - "ancillary_size": 5609, - "created_at": "2026-03-13T08:42:46.222414116Z", + "certificate_hash": "5f4c3b3809098c2ddf6001b532b69ba1e38d077123f0b54f1b97175e472f4d0f", + "size": 83336, + "ancillary_size": 30453, + "created_at": "2026-04-08T08:02:15.981038166Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e20-i5.669fc81b08700272b49b9f2988999e56840ce0ce63640a6f7729616e0ed764de.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e13-i2.47acc0d10e6423607e20dd0e93f8d55d243a8d8fad680d47b5ef9135b6c7b0ef.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e20-i5.669fc81b08700272b49b9f2988999e56840ce0ce63640a6f7729616e0ed764de.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e13-i2.47acc0d10e6423607e20dd0e93f8d55d243a8d8fad680d47b5ef9135b6c7b0ef.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, - "91a65d54351c6e9f6df3cd15c0364f59a686a68b460667cbcc58b16ca6346b95": { - "digest": "91a65d54351c6e9f6df3cd15c0364f59a686a68b460667cbcc58b16ca6346b95", + "61514916b89cea75bfe40da7984280cf93101e9cbf6d8418906d3a30101759b5": { + "digest": "61514916b89cea75bfe40da7984280cf93101e9cbf6d8418906d3a30101759b5", "network": "devnet", "beacon": { - "epoch": 19, - "immutable_file_number": 4 + "epoch": 10, + "immutable_file_number": 2 }, - "certificate_hash": "f6bcde660bb71204ccceb58560a3eb8cb2d9753e494f19a4400d6090713117a1", - "size": 136794, - "ancillary_size": 25009, - "created_at": "2026-03-13T08:42:42.975832735Z", + "certificate_hash": "772c31b4ace2d8e0d459cc1c8f0597e6f08d995469ae4c3192e7731297b72fa4", + "size": 83336, + "ancillary_size": 5323, + "created_at": "2026-04-08T08:02:07.209095654Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e19-i4.91a65d54351c6e9f6df3cd15c0364f59a686a68b460667cbcc58b16ca6346b95.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e10-i2.61514916b89cea75bfe40da7984280cf93101e9cbf6d8418906d3a30101759b5.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e19-i4.91a65d54351c6e9f6df3cd15c0364f59a686a68b460667cbcc58b16ca6346b95.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e10-i2.61514916b89cea75bfe40da7984280cf93101e9cbf6d8418906d3a30101759b5.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, - "9509a8c04b1222a2881ae8977af38ffb7682007c686a4fe159c97de11a5c14e8": { - "digest": "9509a8c04b1222a2881ae8977af38ffb7682007c686a4fe159c97de11a5c14e8", + "6e0d192003c2bd6c8308388224d4eb4ebaf1d8594862045182dbc9dac49c1dff": { + "digest": "6e0d192003c2bd6c8308388224d4eb4ebaf1d8594862045182dbc9dac49c1dff", "network": "devnet", "beacon": { "epoch": 16, "immutable_file_number": 3 }, - "certificate_hash": "b8173ece3d0826e5b16a1ee082fc9ac05ae8b85dbcbb8c347f887f1ecc814f45", - "size": 109763, - "ancillary_size": 27637, - "created_at": "2026-03-13T08:42:33.977683364Z", + "certificate_hash": "d2a42057e168a0f385d4652c07bf1de65b433442f4576079d21f751ec4261879", + "size": 110486, + "ancillary_size": 27584, + "created_at": "2026-04-08T08:02:24.974966901Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e16-i3.9509a8c04b1222a2881ae8977af38ffb7682007c686a4fe159c97de11a5c14e8.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e16-i3.6e0d192003c2bd6c8308388224d4eb4ebaf1d8594862045182dbc9dac49c1dff.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e16-i3.9509a8c04b1222a2881ae8977af38ffb7682007c686a4fe159c97de11a5c14e8.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e16-i3.6e0d192003c2bd6c8308388224d4eb4ebaf1d8594862045182dbc9dac49c1dff.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, - "d2b0fabc7be2892008d3b4e6c1a30bb3773cf82337179f241f64e54bc3a5739b": { - "digest": "d2b0fabc7be2892008d3b4e6c1a30bb3773cf82337179f241f64e54bc3a5739b", + "72f8d23cc53f9ed7a19e17bdb50ce66a2267e544dc37838dbcf8698790992538": { + "digest": "72f8d23cc53f9ed7a19e17bdb50ce66a2267e544dc37838dbcf8698790992538", "network": "devnet", "beacon": { - "epoch": 17, - "immutable_file_number": 4 + "epoch": 9, + "immutable_file_number": 1 + }, + "certificate_hash": "809b365412e72a70f765eed7e7eccd008e419707bcd10fe2ecaeac731fe813c9", + "size": 56032, + "ancillary_size": 24852, + "created_at": "2026-04-08T08:02:03.986917949Z", + "locations": [ + "http://localhost:8080/aggregator/snapshot_download/devnet-e9-i1.72f8d23cc53f9ed7a19e17bdb50ce66a2267e544dc37838dbcf8698790992538.tar.zst" + ], + "ancillary_locations": [ + "http://localhost:8080/aggregator/snapshot_download/devnet-e9-i1.72f8d23cc53f9ed7a19e17bdb50ce66a2267e544dc37838dbcf8698790992538.ancillary.tar.zst" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "10.6.2" + }, + "aa74b8b231e60efa2c6b10d2699540728aae37198a31fd2f7a84ae561987dd8f": { + "digest": "aa74b8b231e60efa2c6b10d2699540728aae37198a31fd2f7a84ae561987dd8f", + "network": "devnet", + "beacon": { + "epoch": 13, + "immutable_file_number": 3 }, - "certificate_hash": "c23fca694e18b1e6e3cec34e36bbb36e452ea8434c0215d370287056db52a67b", - "size": 136794, - "ancillary_size": 8162, - "created_at": "2026-03-13T08:42:36.972711778Z", + "certificate_hash": "0538388b1ecfe3a276441dec5f6217fe8a7684c485a36528ed22e5601b6aac44", + "size": 110486, + "ancillary_size": 5366, + "created_at": "2026-04-08T08:02:17.220870506Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e17-i4.d2b0fabc7be2892008d3b4e6c1a30bb3773cf82337179f241f64e54bc3a5739b.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e13-i3.aa74b8b231e60efa2c6b10d2699540728aae37198a31fd2f7a84ae561987dd8f.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e17-i4.d2b0fabc7be2892008d3b4e6c1a30bb3773cf82337179f241f64e54bc3a5739b.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e13-i3.aa74b8b231e60efa2c6b10d2699540728aae37198a31fd2f7a84ae561987dd8f.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" }, - "d4ef84853eb11b5ca409b0c75a2a5e3c5affe6fbe18a20fc9c15340671fa7745": { - "digest": "d4ef84853eb11b5ca409b0c75a2a5e3c5affe6fbe18a20fc9c15340671fa7745", + "dd5bb5e8e41e81627b8e6b845d5e8fa56d21321393b5a5ca763764be106a91bf": { + "digest": "dd5bb5e8e41e81627b8e6b845d5e8fa56d21321393b5a5ca763764be106a91bf", "network": "devnet", "beacon": { - "epoch": 21, - "immutable_file_number": 5 + "epoch": 12, + "immutable_file_number": 2 }, - "certificate_hash": "97c07626c103e427099969cfc6b31e989e51e9789cab4d94b7f8859a707ffeb0", - "size": 163778, - "ancillary_size": 13835, - "created_at": "2026-03-13T08:42:48.970831026Z", + "certificate_hash": "e4f2f1407aa06ec9b7964c04f6729003a5209864d65701cb6dcc6c50e1469c02", + "size": 83336, + "ancillary_size": 22254, + "created_at": "2026-04-08T08:02:12.972726157Z", "locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e21-i5.d4ef84853eb11b5ca409b0c75a2a5e3c5affe6fbe18a20fc9c15340671fa7745.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e12-i2.dd5bb5e8e41e81627b8e6b845d5e8fa56d21321393b5a5ca763764be106a91bf.tar.zst" ], "ancillary_locations": [ - "http://localhost:8080/aggregator/snapshot_download/devnet-e21-i5.d4ef84853eb11b5ca409b0c75a2a5e3c5affe6fbe18a20fc9c15340671fa7745.ancillary.tar.zst" + "http://localhost:8080/aggregator/snapshot_download/devnet-e12-i2.dd5bb5e8e41e81627b8e6b845d5e8fa56d21321393b5a5ca763764be106a91bf.ancillary.tar.zst" ], "compression_algorithm": "zstandard", "cardano_node_version": "10.6.2" diff --git a/mithril-test-lab/mithril-aggregator-fake/default_data/status.json b/mithril-test-lab/mithril-aggregator-fake/default_data/status.json index 3fa1a349aeb..9fbd5515783 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/status.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/status.json @@ -1,10 +1,10 @@ { - "epoch": 22, + "epoch": 16, "cardano_era": "Conway", "cardano_network": "devnet", "mithril_era": "pythagoras", "cardano_node_version": "10.6.2", - "aggregator_node_version": "0.8.33", + "aggregator_node_version": "0.8.40", "protocol": { "k": 70, "m": 105, From 0e54d965702313f38478c8d6b2e401d30fa18d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Fri, 3 Apr 2026 15:23:02 +0200 Subject: [PATCH 15/19] feature(aggregator): Delete blocks and transactions and related records --- mithril-aggregator/src/database/migration.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mithril-aggregator/src/database/migration.rs b/mithril-aggregator/src/database/migration.rs index 9fe404a2c2e..860919d76e7 100644 --- a/mithril-aggregator/src/database/migration.rs +++ b/mithril-aggregator/src/database/migration.rs @@ -310,5 +310,15 @@ alter table signer_registration add column verification_key_signature_for_snark alter table certificate add column aggregate_verification_key_snark text; "#, ), + // Migration 42 + // Delete blocks and transactions `signed_entity` and related `certificate` records + // since beacon has been modified to include the block_number_offset + SqlMigration::new( + 42, + r#" +delete from signed_entity where signed_entity.signed_entity_type_id = 5; +delete from certificate where certificate.signed_entity_type_id = 5; + "#, + ), ] } From 1a6bb7783d1b6f297d167b7fc426e30867d58310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Fri, 3 Apr 2026 16:41:26 +0200 Subject: [PATCH 16/19] refactor(chore): change CardanoBlocksTransactionsSigningConfig security_parameter from BlockNumber to BlockNumberOffset --- internal/mithril-protocol-config/src/http.rs | 4 +-- .../src/test/double/configuration_provider.rs | 6 ++-- mithril-aggregator/src/configuration.rs | 8 ++--- .../epoch_settings/get_epoch_settings.rs | 6 ++-- .../insert_or_ignore_epoch_settings.rs | 6 ++-- .../src/database/test_helper.rs | 5 ++-- .../src/services/epoch_service.rs | 8 ++--- mithril-aggregator/src/services/message.rs | 13 ++++---- .../network_configuration_provider.rs | 12 ++++---- .../tests/create_certificate.rs | 2 +- ...te_certificate_with_buffered_signatures.rs | 8 ++--- ...leader_signed_entity_config_propagation.rs | 2 +- .../tests/prove_transactions.rs | 7 +++-- .../src/entities/signed_entity_config.rs | 30 ++++++++----------- mithril-common/src/messages/epoch_settings.rs | 11 ++++--- mithril-common/src/test/double/dummies.rs | 2 +- .../test_extensions/state_machine_tester.rs | 2 +- 17 files changed, 68 insertions(+), 64 deletions(-) diff --git a/internal/mithril-protocol-config/src/http.rs b/internal/mithril-protocol-config/src/http.rs index 627fc7ee277..4029371e3d7 100644 --- a/internal/mithril-protocol-config/src/http.rs +++ b/internal/mithril-protocol-config/src/http.rs @@ -126,7 +126,7 @@ mod tests { let configuration_epoch_41 = ProtocolConfigurationMessage { protocol_parameters: ProtocolParameters::new(1000, 100, 0.1), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(1), + security_parameter: BlockNumberOffset(1), step: BlockNumber(10), }), cardano_blocks_transactions_signing_config: Some( @@ -188,7 +188,7 @@ mod tests { .signed_entity_types_config .cardano_transactions, Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(1), + security_parameter: BlockNumberOffset(1), step: BlockNumber(10), }) ); diff --git a/internal/mithril-protocol-config/src/test/double/configuration_provider.rs b/internal/mithril-protocol-config/src/test/double/configuration_provider.rs index 017e07a2317..ffc958eb763 100644 --- a/internal/mithril-protocol-config/src/test/double/configuration_provider.rs +++ b/internal/mithril-protocol-config/src/test/double/configuration_provider.rs @@ -94,7 +94,7 @@ mod tests { signed_entity_types_config: SignedEntityTypeConfiguration { cardano_transactions: Some(CardanoTransactionsSigningConfig { step: BlockNumber(10), - security_parameter: BlockNumber(100), + security_parameter: BlockNumberOffset(100), }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { step: BlockNumber(11), @@ -113,7 +113,7 @@ mod tests { signed_entity_types_config: SignedEntityTypeConfiguration { cardano_transactions: Some(CardanoTransactionsSigningConfig { step: BlockNumber(20), - security_parameter: BlockNumber(200), + security_parameter: BlockNumberOffset(200), }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { step: BlockNumber(22), @@ -132,7 +132,7 @@ mod tests { signed_entity_types_config: SignedEntityTypeConfiguration { cardano_transactions: Some(CardanoTransactionsSigningConfig { step: BlockNumber(30), - security_parameter: BlockNumber(300), + security_parameter: BlockNumberOffset(300), }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { step: BlockNumber(33), diff --git a/mithril-aggregator/src/configuration.rs b/mithril-aggregator/src/configuration.rs index ec380c88448..d11828c580f 100644 --- a/mithril-aggregator/src/configuration.rs +++ b/mithril-aggregator/src/configuration.rs @@ -828,7 +828,7 @@ impl ServeCommandConfiguration { cardano_transactions_prover_cache_pool_size: 3, cardano_transactions_database_connection_pool_size: 5, cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(120), + security_parameter: BlockNumberOffset(120), step: BlockNumber(15), }), cardano_blocks_transactions_signing_config: Some( @@ -1196,7 +1196,7 @@ impl Default for DefaultConfiguration { cardano_transactions_prover_cache_pool_size: 10, cardano_transactions_database_connection_pool_size: 10, cardano_transactions_signing_config: CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(3000), + security_parameter: BlockNumberOffset(3000), step: BlockNumber(120), }, cardano_blocks_transactions_signing_config: CardanoBlocksTransactionsSigningConfig { @@ -1592,7 +1592,7 @@ mod test { SignedEntityTypeDiscriminants::CardanoTransactions.to_string(), ), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(10), + security_parameter: BlockNumberOffset(10), step: BlockNumber(30), }), protocol_parameters: Some(ProtocolParameters::new(2, 3, 4.1)), @@ -1603,7 +1603,7 @@ mod test { assert_eq!( Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(10), + security_parameter: BlockNumberOffset(10), step: BlockNumber(30), }), epoch_settings.cardano_transactions_signing_config diff --git a/mithril-aggregator/src/database/query/epoch_settings/get_epoch_settings.rs b/mithril-aggregator/src/database/query/epoch_settings/get_epoch_settings.rs index a22112553bd..dfab6efbee6 100644 --- a/mithril-aggregator/src/database/query/epoch_settings/get_epoch_settings.rs +++ b/mithril-aggregator/src/database/query/epoch_settings/get_epoch_settings.rs @@ -45,7 +45,7 @@ impl Query for GetEpochSettingsQuery { #[cfg(test)] mod tests { use mithril_common::entities::{ - BlockNumber, CardanoTransactionsSigningConfig, ProtocolParameters, + BlockNumber, BlockNumberOffset, CardanoTransactionsSigningConfig, ProtocolParameters, }; use mithril_persistence::sqlite::ConnectionExtensions; @@ -70,7 +70,7 @@ mod tests { assert_eq!( Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(10), + security_parameter: BlockNumberOffset(10), step: BlockNumber(15) }), epoch_settings_record.cardano_transactions_signing_config @@ -87,7 +87,7 @@ mod tests { ); assert_eq!( Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(30), + security_parameter: BlockNumberOffset(30), step: BlockNumber(15), }), epoch_settings_record.cardano_transactions_signing_config diff --git a/mithril-aggregator/src/database/query/epoch_settings/insert_or_ignore_epoch_settings.rs b/mithril-aggregator/src/database/query/epoch_settings/insert_or_ignore_epoch_settings.rs index 5a46d2e4d79..17ddb75b175 100644 --- a/mithril-aggregator/src/database/query/epoch_settings/insert_or_ignore_epoch_settings.rs +++ b/mithril-aggregator/src/database/query/epoch_settings/insert_or_ignore_epoch_settings.rs @@ -75,7 +75,7 @@ mod tests { epoch_settings_id: Epoch(3), protocol_parameters: fake_data::protocol_parameters(), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(24), + security_parameter: BlockNumberOffset(24), step: BlockNumber(62), }), cardano_blocks_transactions_signing_config: Some( @@ -116,7 +116,7 @@ mod tests { epoch_settings_id: Epoch(3), protocol_parameters: fake_data::protocol_parameters(), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(24), + security_parameter: BlockNumberOffset(24), step: BlockNumber(62), }), cardano_blocks_transactions_signing_config: Some( @@ -136,7 +136,7 @@ mod tests { let record = connection .fetch_first(InsertOrIgnoreEpochSettingsQuery::one(EpochSettingsRecord { cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(134), + security_parameter: BlockNumberOffset(134), step: BlockNumber(872), }), cardano_blocks_transactions_signing_config: Some( diff --git a/mithril-aggregator/src/database/test_helper.rs b/mithril-aggregator/src/database/test_helper.rs index 42446b2e0eb..b9c6c16c0e6 100644 --- a/mithril-aggregator/src/database/test_helper.rs +++ b/mithril-aggregator/src/database/test_helper.rs @@ -4,7 +4,8 @@ use std::path::Path; use uuid::Uuid; use mithril_common::entities::{ - BlockNumber, CardanoTransactionsSigningConfig, ProtocolParameters, SignerWithStake, + BlockNumber, BlockNumberOffset, CardanoTransactionsSigningConfig, ProtocolParameters, + SignerWithStake, }; use mithril_common::{StdError, StdResult, entities::Epoch, test::double::fake_keys}; use mithril_persistence::sqlite::{ @@ -207,7 +208,7 @@ pub fn insert_epoch_settings( epoch, ProtocolParameters::new(*epoch, epoch + 1, 1.0), CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(epoch * 10), + security_parameter: BlockNumberOffset(epoch * 10), step: BlockNumber(15), }, ) diff --git a/mithril-aggregator/src/services/epoch_service.rs b/mithril-aggregator/src/services/epoch_service.rs index 6c18aad7c57..a061680a71b 100644 --- a/mithril-aggregator/src/services/epoch_service.rs +++ b/mithril-aggregator/src/services/epoch_service.rs @@ -1103,7 +1103,7 @@ mod tests { let epoch = Epoch(5); let cardano_transactions_signing_config = Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(29), + security_parameter: BlockNumberOffset(29), step: BlockNumber(986), }); let cardano_blocks_transactions_signing_config = @@ -1322,7 +1322,7 @@ mod tests { let expected_epoch_settings = AggregatorEpochSettings { protocol_parameters: ProtocolParameters::new(6, 89, 0.124), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(1), + security_parameter: BlockNumberOffset(1), step: BlockNumber(11), }), cardano_blocks_transactions_signing_config: Some( @@ -1337,7 +1337,7 @@ mod tests { aggregation_configuration .signed_entity_types_config .cardano_transactions = Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(2), + security_parameter: BlockNumberOffset(2), step: BlockNumber(22), }); @@ -1345,7 +1345,7 @@ mod tests { next_aggregation_configuration .signed_entity_types_config .cardano_transactions = Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(3), + security_parameter: BlockNumberOffset(3), step: BlockNumber(33), }); diff --git a/mithril-aggregator/src/services/message.rs b/mithril-aggregator/src/services/message.rs index d30c4de8a46..7ad4f47bd9f 100644 --- a/mithril-aggregator/src/services/message.rs +++ b/mithril-aggregator/src/services/message.rs @@ -571,7 +571,10 @@ mod tests { #[allow(deprecated)] mod epoch_settings { use mithril_common::{ - entities::{CardanoTransactionsSigningConfig, ProtocolParameters, SignedEntityConfig}, + entities::{ + BlockNumberOffset, CardanoTransactionsSigningConfig, ProtocolParameters, + SignedEntityConfig, + }, test::builder::MithrilFixtureBuilder, }; @@ -603,7 +606,7 @@ mod tests { assert_eq!( message.cardano_transactions_signing_config, Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(15) }) ); @@ -687,7 +690,7 @@ mod tests { #[tokio::test] async fn get_epoch_settings_message_retrieves_signing_configuration_from_epoch_service() { let expected_ctx_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(100), + security_parameter: BlockNumberOffset(100), step: BlockNumber(15), }; let epoch_service = FakeEpochServiceBuilder { @@ -824,7 +827,7 @@ mod tests { let aggregator_epoch_settings = AggregatorEpochSettings { protocol_parameters: ProtocolParameters::new(5, 100, 0.65), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(10), + security_parameter: BlockNumberOffset(10), step: BlockNumber(15), }), cardano_blocks_transactions_signing_config: Some( @@ -852,7 +855,7 @@ mod tests { assert_eq!( message.cardano_transactions_signing_config, Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(10), + security_parameter: BlockNumberOffset(10), step: BlockNumber(15) }) ); diff --git a/mithril-aggregator/src/services/network_configuration_provider.rs b/mithril-aggregator/src/services/network_configuration_provider.rs index b17b33fcdc2..da25fad59cd 100644 --- a/mithril-aggregator/src/services/network_configuration_provider.rs +++ b/mithril-aggregator/src/services/network_configuration_provider.rs @@ -270,7 +270,7 @@ mod tests { let local_configuration_epoch_settings = AggregatorEpochSettings { protocol_parameters: ProtocolParameters::new(3000, 300, 0.3), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(3), + security_parameter: BlockNumberOffset(3), step: BlockNumber(30), }), cardano_blocks_transactions_signing_config: Some( @@ -292,7 +292,7 @@ mod tests { protocol_parameters: ProtocolParameters::new(1000, 100, 0.1), cardano_transactions_signing_config: Some( CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(1), + security_parameter: BlockNumberOffset(1), step: BlockNumber(10), }, ), @@ -310,7 +310,7 @@ mod tests { protocol_parameters: ProtocolParameters::new(2000, 200, 0.2), cardano_transactions_signing_config: Some( CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(2), + security_parameter: BlockNumberOffset(2), step: BlockNumber(20), }, ), @@ -336,7 +336,7 @@ mod tests { enabled_signed_entity_types: SignedEntityTypeDiscriminants::all(), signed_entity_types_config: SignedEntityTypeConfiguration { cardano_transactions: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(1), + security_parameter: BlockNumberOffset(1), step: BlockNumber(10), }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { @@ -354,7 +354,7 @@ mod tests { enabled_signed_entity_types: SignedEntityTypeDiscriminants::all(), signed_entity_types_config: SignedEntityTypeConfiguration { cardano_transactions: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(2), + security_parameter: BlockNumberOffset(2), step: BlockNumber(20), }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { @@ -372,7 +372,7 @@ mod tests { enabled_signed_entity_types: SignedEntityTypeDiscriminants::all(), signed_entity_types_config: SignedEntityTypeConfiguration { cardano_transactions: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(3), + security_parameter: BlockNumberOffset(3), step: BlockNumber(30), }), cardano_blocks_transactions: Some(CardanoBlocksTransactionsSigningConfig { diff --git a/mithril-aggregator/tests/create_certificate.rs b/mithril-aggregator/tests/create_certificate.rs index 86095f11a2c..f116ad55e75 100644 --- a/mithril-aggregator/tests/create_certificate.rs +++ b/mithril-aggregator/tests/create_certificate.rs @@ -34,7 +34,7 @@ async fn create_certificate() { ), data_stores_directory: get_test_dir("create_certificate"), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(30), }), cardano_blocks_transactions_signing_config: Some(CardanoBlocksTransactionsSigningConfig { diff --git a/mithril-aggregator/tests/create_certificate_with_buffered_signatures.rs b/mithril-aggregator/tests/create_certificate_with_buffered_signatures.rs index e218415e4c1..a44dd21c798 100644 --- a/mithril-aggregator/tests/create_certificate_with_buffered_signatures.rs +++ b/mithril-aggregator/tests/create_certificate_with_buffered_signatures.rs @@ -3,9 +3,9 @@ mod test_extensions; use mithril_aggregator::ServeCommandConfiguration; use mithril_common::{ entities::{ - BlockNumber, CardanoTransactionsSigningConfig, ChainPoint, Epoch, ProtocolParameters, - SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, StakeDistributionParty, - TimePoint, + BlockNumber, BlockNumberOffset, CardanoTransactionsSigningConfig, ChainPoint, Epoch, + ProtocolParameters, SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, + StakeDistributionParty, TimePoint, }, temp_dir, test::builder::MithrilFixtureBuilder, @@ -26,7 +26,7 @@ async fn create_certificate_with_buffered_signatures() { signed_entity_types: Some(SignedEntityTypeDiscriminants::CardanoTransactions.to_string()), data_stores_directory: get_test_dir("create_certificate_with_buffered_signatures"), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(30), }), ..ServeCommandConfiguration::new_sample(temp_dir!()) diff --git a/mithril-aggregator/tests/leader_signed_entity_config_propagation.rs b/mithril-aggregator/tests/leader_signed_entity_config_propagation.rs index 60e74f68876..5d4e3f3ea43 100644 --- a/mithril-aggregator/tests/leader_signed_entity_config_propagation.rs +++ b/mithril-aggregator/tests/leader_signed_entity_config_propagation.rs @@ -44,7 +44,7 @@ async fn leader_signed_entity_config_propagation() { ), data_stores_directory: get_test_dir(current_function!()), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(30), }), cardano_blocks_transactions_signing_config: Some(CardanoBlocksTransactionsSigningConfig { diff --git a/mithril-aggregator/tests/prove_transactions.rs b/mithril-aggregator/tests/prove_transactions.rs index 301bb88f8b5..af058221298 100644 --- a/mithril-aggregator/tests/prove_transactions.rs +++ b/mithril-aggregator/tests/prove_transactions.rs @@ -1,8 +1,9 @@ use mithril_aggregator::ServeCommandConfiguration; use mithril_common::{ entities::{ - BlockNumber, CardanoTransactionsSigningConfig, ChainPoint, Epoch, ProtocolMessagePartKey, - ProtocolParameters, SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, TimePoint, + BlockNumber, BlockNumberOffset, CardanoTransactionsSigningConfig, ChainPoint, Epoch, + ProtocolMessagePartKey, ProtocolParameters, SignedEntityType, + SignedEntityTypeDiscriminants, SlotNumber, TimePoint, }, temp_dir, test::builder::MithrilFixtureBuilder, @@ -27,7 +28,7 @@ async fn prove_transactions() { signed_entity_types: Some(SignedEntityTypeDiscriminants::CardanoTransactions.to_string()), data_stores_directory: get_test_dir("prove_transactions"), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(30), }), ..ServeCommandConfiguration::new_sample(temp_dir!()) diff --git a/mithril-common/src/entities/signed_entity_config.rs b/mithril-common/src/entities/signed_entity_config.rs index 95bd1bbb517..8cf11d65bba 100644 --- a/mithril-common/src/entities/signed_entity_config.rs +++ b/mithril-common/src/entities/signed_entity_config.rs @@ -126,7 +126,7 @@ impl SignedEntityConfig { #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] pub struct CardanoTransactionsSigningConfig { /// Number of blocks to discard from the tip of the chain when importing transactions. - pub security_parameter: BlockNumber, + pub security_parameter: BlockNumberOffset, /// The number of blocks between signature of the transactions. /// @@ -142,11 +142,7 @@ impl CardanoTransactionsSigningConfig { // We can't have a step lower than the block range length. let adjusted_step = std::cmp::max(adjusted_step, BlockRange::LENGTH); - compute_block_number_to_be_signed( - block_number, - self.security_parameter.into(), - adjusted_step, - ) + compute_block_number_to_be_signed(block_number, self.security_parameter, adjusted_step) } } @@ -222,7 +218,7 @@ mod tests { let config = SignedEntityConfig { allowed_discriminants: SignedEntityTypeDiscriminants::all(), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(15), }), cardano_blocks_transactions_signing_config: Some( @@ -327,7 +323,7 @@ mod tests { // **block_number = ((tip.block_number - k') / n) × n** let block_number = BlockNumber(105); let signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(15), }; assert_eq!( @@ -340,7 +336,7 @@ mod tests { fn compute_with_security_parameter_lower_than_block_number() { let block_number = BlockNumber(100); let signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(5), + security_parameter: BlockNumberOffset(5), step: BlockNumber(15), }; assert_eq!( @@ -353,7 +349,7 @@ mod tests { fn when_security_parameter_plus_step_equal_to_block_number_return_step_minus_1() { let block_number = BlockNumber(100); let signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(85), + security_parameter: BlockNumberOffset(85), step: BlockNumber(15), }; assert_eq!( @@ -366,7 +362,7 @@ mod tests { fn when_step_higher_than_block_number_return_0() { let block_number = BlockNumber(29); let signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(30), }; assert_eq!( @@ -379,7 +375,7 @@ mod tests { fn should_not_overlow_on_security_parameter() { let block_number = BlockNumber(50); let signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(100), + security_parameter: BlockNumberOffset(100), step: BlockNumber(30), }; assert_eq!( @@ -392,7 +388,7 @@ mod tests { fn round_step_to_previous_block_range_start_when_step_right_below_said_block_range_start() { let block_number = BlockRange::LENGTH * 5 + 1; let signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockRange::LENGTH * 2 - 1, }; assert_eq!( @@ -405,7 +401,7 @@ mod tests { fn round_step_to_block_range_start_when_step_right_after_said_block_range_start() { let block_number = BlockRange::LENGTH * 5 + 1; let signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockRange::LENGTH * 2 + 1, }; assert_eq!( @@ -419,7 +415,7 @@ mod tests { // Adjusted step is always at least BLOCK_RANGE_LENGTH. let block_number = BlockRange::LENGTH * 10 - 1; let signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockRange::LENGTH - 1, }; assert_eq!( @@ -433,7 +429,7 @@ mod tests { // Adjusted step is always at least BLOCK_RANGE_LENGTH. let block_number = BlockRange::LENGTH - 1; let signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockRange::LENGTH - 1, }; assert_eq!( @@ -694,7 +690,7 @@ mod tests { SignedEntityTypeDiscriminants::CardanoBlocksTransactions, ]), cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(15), }), cardano_blocks_transactions_signing_config: Some( diff --git a/mithril-common/src/messages/epoch_settings.rs b/mithril-common/src/messages/epoch_settings.rs index 350075e1309..c2c13cd4bf3 100644 --- a/mithril-common/src/messages/epoch_settings.rs +++ b/mithril-common/src/messages/epoch_settings.rs @@ -37,7 +37,10 @@ pub struct EpochSettingsMessage { #[cfg(test)] mod tests { - use crate::{crypto_helper::KesEvolutions, entities::BlockNumber}; + use crate::{ + crypto_helper::KesEvolutions, + entities::{BlockNumber, BlockNumberOffset}, + }; use super::*; @@ -119,7 +122,7 @@ mod tests { verification_key_signature_for_snark: None, }], cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(70), + security_parameter: BlockNumberOffset(70), step: BlockNumber(20), }), next_cardano_transactions_signing_config: None, @@ -157,7 +160,7 @@ mod tests { verification_key_signature_for_snark: None, }], cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(70), + security_parameter: BlockNumberOffset(70), step: BlockNumber(20), }), } @@ -195,7 +198,7 @@ mod tests { verification_key_signature_for_snark: None, }], cardano_transactions_signing_config: Some(CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(70), + security_parameter: BlockNumberOffset(70), step: BlockNumber(20), }), } diff --git a/mithril-common/src/test/double/dummies.rs b/mithril-common/src/test/double/dummies.rs index 0f3b196205f..4a5bb9d0808 100644 --- a/mithril-common/src/test/double/dummies.rs +++ b/mithril-common/src/test/double/dummies.rs @@ -55,7 +55,7 @@ mod entities { /// Return a dummy [CardanoTransactionsSigningConfig] (test-only). fn dummy() -> Self { Self { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(15), } } diff --git a/mithril-signer/tests/test_extensions/state_machine_tester.rs b/mithril-signer/tests/test_extensions/state_machine_tester.rs index b77687265bf..7b8b3d3e22b 100644 --- a/mithril-signer/tests/test_extensions/state_machine_tester.rs +++ b/mithril-signer/tests/test_extensions/state_machine_tester.rs @@ -157,7 +157,7 @@ impl StateMachineTester { immutable_observer.clone(), )); let cardano_transactions_signing_config = CardanoTransactionsSigningConfig { - security_parameter: BlockNumber(0), + security_parameter: BlockNumberOffset(0), step: BlockNumber(30), }; let cardano_blocks_transactions_signing_config = CardanoBlocksTransactionsSigningConfig { From 8fa8a7358569b8bc6ad0d3c8e05d69ff6adf52e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Fri, 3 Apr 2026 17:02:00 +0200 Subject: [PATCH 17/19] tests(aggregator): implemment SignedEntityType CardanoBlocksTransactions --- mithril-aggregator/src/database/record/signed_entity.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mithril-aggregator/src/database/record/signed_entity.rs b/mithril-aggregator/src/database/record/signed_entity.rs index 3fe3a57b8cb..4e7714280be 100644 --- a/mithril-aggregator/src/database/record/signed_entity.rs +++ b/mithril-aggregator/src/database/record/signed_entity.rs @@ -119,7 +119,11 @@ impl SignedEntityRecord { _block_number, _block_number_offset, ) => { - panic!("Cardano blocks transactions is not supported yet") + let artifact = fake_data::cardano_blocks_transactions_snapshot( + _block_number, + _block_number_offset, + ); + get_id_and_artifact(&artifact) } }; From 4a4521b1d96d626c0eb5605d6bf4cebbbfe4f382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Fri, 3 Apr 2026 17:06:51 +0200 Subject: [PATCH 18/19] refactor(common): remove test case with CardanoTransactions and CardanoBlocksTransactions since beacon are different now --- .../src/entities/signed_entity_type.rs | 47 +++++++------------ 1 file changed, 18 insertions(+), 29 deletions(-) diff --git a/mithril-common/src/entities/signed_entity_type.rs b/mithril-common/src/entities/signed_entity_type.rs index 04ae90f81e3..741979148cb 100644 --- a/mithril-common/src/entities/signed_entity_type.rs +++ b/mithril-common/src/entities/signed_entity_type.rs @@ -463,35 +463,24 @@ mod tests { ); } - #[test] - fn signed_entity_with_shared_beacons_computes_different_hashes() { - assert_ne!( - hash(SignedEntityType::CardanoTransactions( - Epoch(3), - BlockNumber(77) - )), - hash(SignedEntityType::CardanoBlocksTransactions( - Epoch(3), - BlockNumber(77), - BlockNumberOffset(5), - )) - ); - - // TODO: uncomment those tests cases when feeding database index is generalized to all types - // assert_ne!( - // hash(SignedEntityType::MithrilStakeDistribution(Epoch(15))), - // hash(SignedEntityType::CardanoStakeDistribution(Epoch(15))) - // ); - // - // assert_ne!( - // hash(SignedEntityType::CardanoImmutableFilesFull( - // CardanoDbBeacon::new(98, 987) - // )), - // hash(SignedEntityType::CardanoDatabase(CardanoDbBeacon::new( - // 98, 987 - // ))) - // ); - } + //TODO: uncomment those tests cases when feeding database index is generalized to all types + // #[test] + // fn signed_entity_with_shared_beacons_computes_different_hashes() { + + // assert_ne!( + // hash(SignedEntityType::MithrilStakeDistribution(Epoch(15))), + // hash(SignedEntityType::CardanoStakeDistribution(Epoch(15))) + // ); + + // assert_ne!( + // hash(SignedEntityType::CardanoImmutableFilesFull( + // CardanoDbBeacon::new(98, 987) + // )), + // hash(SignedEntityType::CardanoDatabase(CardanoDbBeacon::new( + // 98, 987 + // ))) + // ); + // } #[test] fn get_open_message_timeout() { From 606eb90babd82acae2978d99ea8b0f45274dd501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Turmel?= Date: Wed, 8 Apr 2026 11:43:21 +0200 Subject: [PATCH 19/19] chore: upgrade crate versions and `openapi.yaml` version * client-cardano-block from `0.1.1` to `0.1.2` name = "client-cardano-transaction-v2" -version = "0.1.1" +version = "0.1.2" * mithril-aggregator-client from `0.1.9` to `0.1.10` * mithril-persistence from `0.2.70` to `0.2.71` * mithril-protocol-config from `0.1.6` to `0.1.7` * mithril-aggregator from `0.8.41` to `0.8.42` * mithril-client-cli from `0.13.2` to `0.13.3` * mithril-client from `0.14.2` to `0.14.3` * mithril-common from `0.6.62` to `0.6.63` * mithril-signer from `0.3.28` to `0.3.29` * mithril-aggregator-fake from `0.4.18` to `0.4.19` * openapi.yaml from `0.1.60` to `0.1.61` --- Cargo.lock | 22 +++++++++---------- examples/client-cardano-block/Cargo.toml | 2 +- .../client-cardano-transaction-v2/Cargo.toml | 2 +- internal/mithril-aggregator-client/Cargo.toml | 2 +- internal/mithril-persistence/Cargo.toml | 2 +- internal/mithril-protocol-config/Cargo.toml | 2 +- mithril-aggregator/Cargo.toml | 2 +- mithril-client-cli/Cargo.toml | 2 +- mithril-client/Cargo.toml | 2 +- mithril-common/Cargo.toml | 2 +- mithril-signer/Cargo.toml | 2 +- .../mithril-aggregator-fake/Cargo.toml | 2 +- openapi.yaml | 2 +- 13 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c1aef17e2b7..1aef485041e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -999,7 +999,7 @@ dependencies = [ [[package]] name = "client-cardano-block" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "clap", @@ -1051,7 +1051,7 @@ dependencies = [ [[package]] name = "client-cardano-transaction-v2" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "clap", @@ -3962,7 +3962,7 @@ dependencies = [ [[package]] name = "mithril-aggregator" -version = "0.8.41" +version = "0.8.42" dependencies = [ "anyhow", "async-trait", @@ -4026,7 +4026,7 @@ dependencies = [ [[package]] name = "mithril-aggregator-client" -version = "0.1.9" +version = "0.1.10" dependencies = [ "anyhow", "async-trait", @@ -4066,7 +4066,7 @@ dependencies = [ [[package]] name = "mithril-aggregator-fake" -version = "0.4.18" +version = "0.4.19" dependencies = [ "anyhow", "axum", @@ -4169,7 +4169,7 @@ dependencies = [ [[package]] name = "mithril-client" -version = "0.14.2" +version = "0.14.3" dependencies = [ "anyhow", "async-trait", @@ -4208,7 +4208,7 @@ dependencies = [ [[package]] name = "mithril-client-cli" -version = "0.13.2" +version = "0.13.3" dependencies = [ "anyhow", "async-trait", @@ -4265,7 +4265,7 @@ dependencies = [ [[package]] name = "mithril-common" -version = "0.6.62" +version = "0.6.63" dependencies = [ "anyhow", "async-trait", @@ -4405,7 +4405,7 @@ dependencies = [ [[package]] name = "mithril-persistence" -version = "0.2.70" +version = "0.2.71" dependencies = [ "anyhow", "async-trait", @@ -4423,7 +4423,7 @@ dependencies = [ [[package]] name = "mithril-protocol-config" -version = "0.1.6" +version = "0.1.7" dependencies = [ "anyhow", "async-trait", @@ -4500,7 +4500,7 @@ dependencies = [ [[package]] name = "mithril-signer" -version = "0.3.28" +version = "0.3.29" dependencies = [ "anyhow", "async-trait", diff --git a/examples/client-cardano-block/Cargo.toml b/examples/client-cardano-block/Cargo.toml index e7a796706e8..2727120d065 100644 --- a/examples/client-cardano-block/Cargo.toml +++ b/examples/client-cardano-block/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "client-cardano-block" description = "Mithril client cardano-block example" -version = "0.1.1" +version = "0.1.2" authors = ["dev@iohk.io", "mithril-dev@iohk.io"] documentation = "https://mithril.network/doc" edition = "2021" diff --git a/examples/client-cardano-transaction-v2/Cargo.toml b/examples/client-cardano-transaction-v2/Cargo.toml index 3955a2c2866..cc28c2280b6 100644 --- a/examples/client-cardano-transaction-v2/Cargo.toml +++ b/examples/client-cardano-transaction-v2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "client-cardano-transaction-v2" description = "Mithril client cardano-transaction-v2 example" -version = "0.1.1" +version = "0.1.2" authors = ["dev@iohk.io", "mithril-dev@iohk.io"] documentation = "https://mithril.network/doc" edition = "2021" diff --git a/internal/mithril-aggregator-client/Cargo.toml b/internal/mithril-aggregator-client/Cargo.toml index 125b5d0d9ec..6fe8c94e73b 100644 --- a/internal/mithril-aggregator-client/Cargo.toml +++ b/internal/mithril-aggregator-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-aggregator-client" -version = "0.1.9" +version = "0.1.10" description = "Client to request data from a Mithril Aggregator" authors.workspace = true documentation.workspace = true diff --git a/internal/mithril-persistence/Cargo.toml b/internal/mithril-persistence/Cargo.toml index 59b4075895a..be95e7a0ac9 100644 --- a/internal/mithril-persistence/Cargo.toml +++ b/internal/mithril-persistence/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-persistence" -version = "0.2.70" +version = "0.2.71" description = "Common types, interfaces, and utilities to persist data for Mithril nodes." authors = { workspace = true } edition = { workspace = true } diff --git a/internal/mithril-protocol-config/Cargo.toml b/internal/mithril-protocol-config/Cargo.toml index 6892172017b..21f7447e87c 100644 --- a/internal/mithril-protocol-config/Cargo.toml +++ b/internal/mithril-protocol-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-protocol-config" -version = "0.1.6" +version = "0.1.7" description = "Configuraton parameters for Mithril network" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-aggregator/Cargo.toml b/mithril-aggregator/Cargo.toml index d932c542812..b4ad7d779e0 100644 --- a/mithril-aggregator/Cargo.toml +++ b/mithril-aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-aggregator" -version = "0.8.41" +version = "0.8.42" description = "A Mithril Aggregator server" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-client-cli/Cargo.toml b/mithril-client-cli/Cargo.toml index 97691de9c18..3ed3ac1ae89 100644 --- a/mithril-client-cli/Cargo.toml +++ b/mithril-client-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-client-cli" -version = "0.13.2" +version = "0.13.3" description = "A Mithril Client" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-client/Cargo.toml b/mithril-client/Cargo.toml index 41165e7455d..9bfb925b60e 100644 --- a/mithril-client/Cargo.toml +++ b/mithril-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-client" -version = "0.14.2" +version = "0.14.3" description = "Mithril client library" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-common/Cargo.toml b/mithril-common/Cargo.toml index 0c73f65ea52..bf679db30f6 100644 --- a/mithril-common/Cargo.toml +++ b/mithril-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-common" -version = "0.6.62" +version = "0.6.63" description = "Common types, interfaces, and utilities for Mithril nodes." authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-signer/Cargo.toml b/mithril-signer/Cargo.toml index 32fa10e128f..da3c0475a19 100644 --- a/mithril-signer/Cargo.toml +++ b/mithril-signer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-signer" -version = "0.3.28" +version = "0.3.29" description = "A Mithril Signer" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-test-lab/mithril-aggregator-fake/Cargo.toml b/mithril-test-lab/mithril-aggregator-fake/Cargo.toml index f9c0e39c435..c0437908b5f 100644 --- a/mithril-test-lab/mithril-aggregator-fake/Cargo.toml +++ b/mithril-test-lab/mithril-aggregator-fake/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-aggregator-fake" -version = "0.4.18" +version = "0.4.19" description = "Mithril Fake Aggregator for client testing" authors = { workspace = true } documentation = { workspace = true } diff --git a/openapi.yaml b/openapi.yaml index f727cc992af..b5438d0ea3f 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -4,7 +4,7 @@ info: # `mithril-common/src/lib.rs` file. If you plan to update it # here to reflect changes in the API, please also update the constant in the # Rust file. - version: 0.1.60 + version: 0.1.61 title: Mithril Aggregator Server description: | The REST API provided by a Mithril Aggregator Node in a Mithril network.