diff --git a/Cargo.lock b/Cargo.lock index 6f79876b49b..bae39c7be9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3403,7 +3403,7 @@ dependencies = [ [[package]] name = "mithril-aggregator" -version = "0.5.60" +version = "0.5.61" dependencies = [ "anyhow", "async-trait", @@ -3448,7 +3448,7 @@ dependencies = [ [[package]] name = "mithril-aggregator-fake" -version = "0.3.8" +version = "0.3.9" dependencies = [ "anyhow", "axum", @@ -3559,7 +3559,7 @@ dependencies = [ [[package]] name = "mithril-common" -version = "0.4.49" +version = "0.4.50" dependencies = [ "anyhow", "async-trait", @@ -3704,7 +3704,7 @@ dependencies = [ [[package]] name = "mithril-signer" -version = "0.2.179" +version = "0.2.180" dependencies = [ "anyhow", "async-trait", diff --git a/mithril-aggregator/Cargo.toml b/mithril-aggregator/Cargo.toml index 7469c3c654f..efc81a510dd 100644 --- a/mithril-aggregator/Cargo.toml +++ b/mithril-aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-aggregator" -version = "0.5.60" +version = "0.5.61" description = "A Mithril Aggregator server" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-aggregator/src/http_server/routes/epoch_routes.rs b/mithril-aggregator/src/http_server/routes/epoch_routes.rs index 940414dbd46..019609458cc 100644 --- a/mithril-aggregator/src/http_server/routes/epoch_routes.rs +++ b/mithril-aggregator/src/http_server/routes/epoch_routes.rs @@ -22,9 +22,7 @@ fn epoch_settings( mod handlers { use crate::dependency_injection::EpochServiceWrapper; use crate::http_server::routes::reply; - use crate::ToEpochSettingsMessageAdapter; - use mithril_common::entities::EpochSettings; - use mithril_common::messages::ToMessageAdapter; + use mithril_common::messages::{EpochSettingsMessage, SignerMessagePart}; use slog_scope::{debug, warn}; use std::convert::Infallible; use warp::http::StatusCode; @@ -40,17 +38,30 @@ mod handlers { epoch_service.epoch_of_current_data(), epoch_service.next_protocol_parameters(), epoch_service.upcoming_protocol_parameters(), + epoch_service.current_signers(), + epoch_service.next_signers(), ) { - (Ok(epoch), Ok(protocol_parameters), Ok(next_protocol_parameters)) => { - let epoch_settings = EpochSettings { + ( + Ok(epoch), + Ok(protocol_parameters), + Ok(next_protocol_parameters), + Ok(current_signers), + Ok(next_signers), + ) => { + let epoch_settings_message = EpochSettingsMessage { epoch, protocol_parameters: protocol_parameters.clone(), next_protocol_parameters: next_protocol_parameters.clone(), + current_signers: SignerMessagePart::from_signers(current_signers.to_vec()), + next_signers: SignerMessagePart::from_signers(next_signers.to_vec()), }; - let epoch_settings_message = ToEpochSettingsMessageAdapter::adapt(epoch_settings); Ok(reply::json(&epoch_settings_message, StatusCode::OK)) } - (Err(err), _, _) | (_, Err(err), _) | (_, _, Err(err)) => { + (Err(err), _, _, _, _) + | (_, Err(err), _, _, _) + | (_, _, Err(err), _, _) + | (_, _, _, Err(err), _) + | (_, _, _, _, Err(err)) => { warn!("epoch_settings::error"; "error" => ?err); Ok(reply::server_error(err)) } diff --git a/mithril-aggregator/src/lib.rs b/mithril-aggregator/src/lib.rs index 587cd9796ad..baa5318d921 100644 --- a/mithril-aggregator/src/lib.rs +++ b/mithril-aggregator/src/lib.rs @@ -37,9 +37,7 @@ pub use crate::configuration::{ pub use crate::multi_signer::{MultiSigner, MultiSignerImpl}; pub use commands::{CommandType, MainOpts}; pub use dependency_injection::DependencyContainer; -pub use message_adapters::{ - FromRegisterSignerAdapter, ToCertificatePendingMessageAdapter, ToEpochSettingsMessageAdapter, -}; +pub use message_adapters::{FromRegisterSignerAdapter, ToCertificatePendingMessageAdapter}; pub use runtime::{ AggregatorConfig, AggregatorRunner, AggregatorRunnerTrait, AggregatorRuntime, RuntimeError, }; diff --git a/mithril-aggregator/src/message_adapters/mod.rs b/mithril-aggregator/src/message_adapters/mod.rs index 4f6be088c5e..df129b335f0 100644 --- a/mithril-aggregator/src/message_adapters/mod.rs +++ b/mithril-aggregator/src/message_adapters/mod.rs @@ -6,7 +6,6 @@ mod to_cardano_transaction_list_message; mod to_cardano_transaction_message; mod to_cardano_transactions_proof_message; mod to_certificate_pending_message; -mod to_epoch_settings_message; mod to_mithril_stake_distribution_list_message; mod to_mithril_stake_distribution_message; mod to_snapshot_list_message; @@ -24,7 +23,6 @@ pub use to_cardano_transaction_list_message::ToCardanoTransactionListMessageAdap pub use to_cardano_transaction_message::ToCardanoTransactionMessageAdapter; pub use to_cardano_transactions_proof_message::ToCardanoTransactionsProofsMessageAdapter; pub use to_certificate_pending_message::ToCertificatePendingMessageAdapter; -pub use to_epoch_settings_message::ToEpochSettingsMessageAdapter; #[cfg(test)] pub use to_mithril_stake_distribution_list_message::ToMithrilStakeDistributionListMessageAdapter; #[cfg(test)] diff --git a/mithril-aggregator/src/message_adapters/to_certificate_pending_message.rs b/mithril-aggregator/src/message_adapters/to_certificate_pending_message.rs index c1dfddb444f..adfe89748b8 100644 --- a/mithril-aggregator/src/message_adapters/to_certificate_pending_message.rs +++ b/mithril-aggregator/src/message_adapters/to_certificate_pending_message.rs @@ -1,6 +1,6 @@ use mithril_common::entities::CardanoDbBeacon; use mithril_common::{ - entities::{CertificatePending, SignedEntityType, Signer}, + entities::{CertificatePending, SignedEntityType}, messages::{CertificatePendingMessage, SignerMessagePart}, }; @@ -23,31 +23,12 @@ impl ToCertificatePendingMessageAdapter { signed_entity_type: certificate_pending.signed_entity_type, protocol_parameters: certificate_pending.protocol_parameters, next_protocol_parameters: certificate_pending.next_protocol_parameters, - signers: Self::adapt_signers(certificate_pending.signers), - next_signers: Self::adapt_signers(certificate_pending.next_signers), + signers: SignerMessagePart::from_signers(certificate_pending.signers), + next_signers: SignerMessagePart::from_signers(certificate_pending.next_signers), } } } -impl ToCertificatePendingMessageAdapter { - fn adapt_signers(signers: Vec) -> Vec { - signers - .into_iter() - .map(|signer| SignerMessagePart { - party_id: signer.party_id, - verification_key: signer.verification_key.try_into().unwrap(), - verification_key_signature: signer - .verification_key_signature - .map(|k| k.try_into().unwrap()), - kes_period: signer.kes_period, - operational_certificate: signer - .operational_certificate - .map(|o| o.try_into().unwrap()), - }) - .collect() - } -} - #[cfg(test)] mod tests { use mithril_common::{ @@ -95,6 +76,7 @@ mod tests { } #[test] + #[allow(deprecated)] fn adapt_signers() { let fake_signers = fake_data::signers(5); let signers = fake_signers[1..3].to_vec(); diff --git a/mithril-aggregator/src/message_adapters/to_epoch_settings_message.rs b/mithril-aggregator/src/message_adapters/to_epoch_settings_message.rs deleted file mode 100644 index 7ff2d9075c7..00000000000 --- a/mithril-aggregator/src/message_adapters/to_epoch_settings_message.rs +++ /dev/null @@ -1,31 +0,0 @@ -use mithril_common::entities::EpochSettings; -use mithril_common::messages::{EpochSettingsMessage, ToMessageAdapter}; - -/// Adapter to spawn [EpochSettingsMessage] from [EpochSettings] instances. -pub struct ToEpochSettingsMessageAdapter; - -impl ToMessageAdapter for ToEpochSettingsMessageAdapter { - /// Turn an entity instance into message. - fn adapt(epoch_settings: EpochSettings) -> EpochSettingsMessage { - EpochSettingsMessage { - epoch: epoch_settings.epoch, - protocol_parameters: epoch_settings.protocol_parameters, - next_protocol_parameters: epoch_settings.next_protocol_parameters, - } - } -} - -#[cfg(test)] -mod tests { - use mithril_common::test_utils::fake_data; - - use super::*; - - #[test] - fn test_simple_message() { - let epoch_settings = fake_data::epoch_settings(); - let message = ToEpochSettingsMessageAdapter::adapt(epoch_settings.clone()); - - assert_eq!(epoch_settings.epoch, message.epoch); - } -} diff --git a/mithril-aggregator/src/services/epoch_service.rs b/mithril-aggregator/src/services/epoch_service.rs index 7330f10d592..187c6009097 100644 --- a/mithril-aggregator/src/services/epoch_service.rs +++ b/mithril-aggregator/src/services/epoch_service.rs @@ -5,7 +5,7 @@ use std::sync::Arc; use thiserror::Error; use mithril_common::crypto_helper::ProtocolAggregateVerificationKey; -use mithril_common::entities::{Epoch, ProtocolParameters, SignerWithStake}; +use mithril_common::entities::{Epoch, ProtocolParameters, Signer, SignerWithStake}; use mithril_common::protocol::{MultiSigner as ProtocolMultiSigner, SignerBuilder}; use mithril_common::StdResult; @@ -70,6 +70,12 @@ pub trait EpochService: Sync + Send { /// Get signers with stake for the next epoch fn next_signers_with_stake(&self) -> StdResult<&Vec>; + /// Get signers for the current epoch + fn current_signers(&self) -> StdResult<&Vec>; + + /// Get signers for the next epoch + fn next_signers(&self) -> StdResult<&Vec>; + /// Get the [protocol multi signer][ProtocolMultiSigner] for the current epoch fn protocol_multi_signer(&self) -> StdResult<&ProtocolMultiSigner>; } @@ -79,8 +85,10 @@ struct EpochData { protocol_parameters: ProtocolParameters, next_protocol_parameters: ProtocolParameters, upcoming_protocol_parameters: ProtocolParameters, - signers: Vec, - next_signers: Vec, + current_signers_with_stake: Vec, + next_signers_with_stake: Vec, + current_signers: Vec, + next_signers: Vec, } struct ComputedEpochData { @@ -201,19 +209,23 @@ impl EpochService for MithrilEpochService { ) .await?; - let current_signers = self + let current_signers_with_stake = self .get_signers_with_stake_at_epoch(signer_retrieval_epoch) .await?; - let next_signers = self + let next_signers_with_stake = self .get_signers_with_stake_at_epoch(next_signer_retrieval_epoch) .await?; + let current_signers = Signer::vec_from(current_signers_with_stake.clone()); + let next_signers = Signer::vec_from(next_signers_with_stake.clone()); self.epoch_data = Some(EpochData { epoch, protocol_parameters: current_protocol_parameters, next_protocol_parameters, upcoming_protocol_parameters, - signers: current_signers, + current_signers_with_stake, + next_signers_with_stake, + current_signers, next_signers, }); self.computed_epoch_data = None; @@ -238,15 +250,18 @@ impl EpochService for MithrilEpochService { "can't precompute epoch data if inform_epoch has not been called first" })?; - let protocol_multi_signer = SignerBuilder::new(&data.signers, &data.protocol_parameters) - .with_context(|| "Epoch service failed to build protocol multi signer")? - .build_multi_signer(); - - let next_protocol_multi_signer = - SignerBuilder::new(&data.next_signers, &data.next_protocol_parameters) - .with_context(|| "Epoch service failed to build next protocol multi signer")? + let protocol_multi_signer = + SignerBuilder::new(&data.current_signers_with_stake, &data.protocol_parameters) + .with_context(|| "Epoch service failed to build protocol multi signer")? .build_multi_signer(); + let next_protocol_multi_signer = SignerBuilder::new( + &data.next_signers_with_stake, + &data.next_protocol_parameters, + ) + .with_context(|| "Epoch service failed to build next protocol multi signer")? + .build_multi_signer(); + self.computed_epoch_data = Some(ComputedEpochData { aggregate_verification_key: protocol_multi_signer.compute_aggregate_verification_key(), next_aggregate_verification_key: next_protocol_multi_signer @@ -282,10 +297,18 @@ impl EpochService for MithrilEpochService { } fn current_signers_with_stake(&self) -> StdResult<&Vec> { - Ok(&self.unwrap_data()?.signers) + Ok(&self.unwrap_data()?.current_signers_with_stake) } fn next_signers_with_stake(&self) -> StdResult<&Vec> { + Ok(&self.unwrap_data()?.next_signers_with_stake) + } + + fn current_signers(&self) -> StdResult<&Vec> { + Ok(&self.unwrap_data()?.current_signers) + } + + fn next_signers(&self) -> StdResult<&Vec> { Ok(&self.unwrap_data()?.next_signers) } @@ -312,17 +335,24 @@ impl FakeEpochService { protocol_parameters: &ProtocolParameters, next_protocol_parameters: &ProtocolParameters, upcoming_protocol_parameters: &ProtocolParameters, - signers: &[SignerWithStake], - next_signers: &[SignerWithStake], + current_signers_with_stake: &[SignerWithStake], + next_signers_with_stake: &[SignerWithStake], ) -> Self { - let protocol_multi_signer = SignerBuilder::new(signers, protocol_parameters) - .with_context(|| "Could not build protocol_multi_signer for epoch service") - .unwrap() - .build_multi_signer(); - let next_protocol_multi_signer = SignerBuilder::new(signers, protocol_parameters) - .with_context(|| "Could not build protocol_multi_signer for epoch service") - .unwrap() - .build_multi_signer(); + let protocol_multi_signer = + SignerBuilder::new(current_signers_with_stake, protocol_parameters) + .with_context(|| "Could not build protocol_multi_signer for epoch service") + .unwrap() + .build_multi_signer(); + let next_protocol_multi_signer = + SignerBuilder::new(next_signers_with_stake, next_protocol_parameters) + .with_context(|| "Could not build protocol_multi_signer for epoch service") + .unwrap() + .build_multi_signer(); + + let current_signers_with_stake = current_signers_with_stake.to_vec(); + let next_signers_with_stake = next_signers_with_stake.to_vec(); + let current_signers = Signer::vec_from(current_signers_with_stake.clone()); + let next_signers = Signer::vec_from(next_signers_with_stake.clone()); Self { epoch_data: Some(EpochData { @@ -330,8 +360,10 @@ impl FakeEpochService { protocol_parameters: protocol_parameters.clone(), next_protocol_parameters: next_protocol_parameters.clone(), upcoming_protocol_parameters: upcoming_protocol_parameters.clone(), - signers: signers.to_vec(), - next_signers: next_signers.to_vec(), + current_signers_with_stake, + next_signers_with_stake, + current_signers, + next_signers, }), computed_epoch_data: Some(ComputedEpochData { aggregate_verification_key: protocol_multi_signer @@ -447,10 +479,18 @@ impl EpochService for FakeEpochService { } fn current_signers_with_stake(&self) -> StdResult<&Vec> { - Ok(&self.unwrap_data()?.signers) + Ok(&self.unwrap_data()?.current_signers_with_stake) } fn next_signers_with_stake(&self) -> StdResult<&Vec> { + Ok(&self.unwrap_data()?.next_signers_with_stake) + } + + fn current_signers(&self) -> StdResult<&Vec> { + Ok(&self.unwrap_data()?.current_signers) + } + + fn next_signers(&self) -> StdResult<&Vec> { Ok(&self.unwrap_data()?.next_signers) } @@ -478,8 +518,10 @@ mod tests { protocol_parameters: ProtocolParameters, next_protocol_parameters: ProtocolParameters, upcoming_protocol_parameters: ProtocolParameters, - signers: BTreeSet, - next_signers: BTreeSet, + current_signers_with_stake: BTreeSet, + next_signers_with_stake: BTreeSet, + current_signers: BTreeSet, + next_signers: BTreeSet, } #[derive(Debug, Clone, PartialEq)] @@ -495,16 +537,18 @@ mod tests { protocol_parameters: service.current_protocol_parameters()?.clone(), next_protocol_parameters: service.next_protocol_parameters()?.clone(), upcoming_protocol_parameters: service.upcoming_protocol_parameters()?.clone(), - signers: service + current_signers_with_stake: service .current_signers_with_stake()? .clone() .into_iter() .collect(), - next_signers: service + next_signers_with_stake: service .next_signers_with_stake()? .clone() .into_iter() .collect(), + current_signers: service.current_signers()?.clone().into_iter().collect(), + next_signers: service.next_signers()?.clone().into_iter().collect(), }) } } @@ -634,14 +678,16 @@ mod tests { protocol_parameters: current_epoch_fixture.protocol_parameters(), next_protocol_parameters: next_epoch_fixture.protocol_parameters(), upcoming_protocol_parameters, - signers: current_epoch_fixture + current_signers_with_stake: current_epoch_fixture .signers_with_stake() .into_iter() .collect(), - next_signers: next_epoch_fixture + next_signers_with_stake: next_epoch_fixture .signers_with_stake() .into_iter() .collect(), + current_signers: current_epoch_fixture.signers().into_iter().collect(), + next_signers: next_epoch_fixture.signers().into_iter().collect(), } ); } @@ -781,6 +827,8 @@ mod tests { "next_signers_with_stake", service.next_signers_with_stake().err(), ), + ("current_signers", service.current_signers().err()), + ("next_signers", service.next_signers().err()), ( "current_aggregate_verification_key", service.current_aggregate_verification_key().err(), @@ -817,6 +865,8 @@ mod tests { assert!(service.upcoming_protocol_parameters().is_ok()); assert!(service.current_signers_with_stake().is_ok()); assert!(service.next_signers_with_stake().is_ok()); + assert!(service.current_signers().is_ok()); + assert!(service.next_signers().is_ok()); for (name, res) in [ ( diff --git a/mithril-common/Cargo.toml b/mithril-common/Cargo.toml index 3b145748953..6c88cb42ba5 100644 --- a/mithril-common/Cargo.toml +++ b/mithril-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-common" -version = "0.4.49" +version = "0.4.50" description = "Common types, interfaces, and utilities for Mithril nodes." authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-common/src/entities/certificate_pending.rs b/mithril-common/src/entities/certificate_pending.rs index d22e89c12fc..d4278022cad 100644 --- a/mithril-common/src/entities/certificate_pending.rs +++ b/mithril-common/src/entities/certificate_pending.rs @@ -1,6 +1,6 @@ use serde::{Deserialize, Serialize}; -use crate::entities::{Epoch, PartyId, ProtocolParameters, SignedEntityType, Signer}; +use crate::entities::{Epoch, ProtocolParameters, SignedEntityType, Signer}; /// CertificatePending represents a pending certificate in the process of production #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] @@ -46,31 +46,4 @@ impl CertificatePending { next_signers, } } - - /// get a signer from the certificate pending if it has registered - pub fn get_signer(&self, party_id: PartyId) -> Option<&Signer> { - self.signers.iter().find(|s| s.party_id == party_id) - } -} - -#[cfg(test)] -mod tests { - use crate::test_utils::fake_data; - - use super::*; - - #[test] - fn certificate_pending_get_signers() { - let certificate_pending = { - let mut signers = fake_data::signers(3); - signers[0].party_id = "1".to_string(); - CertificatePending { - signers, - ..fake_data::certificate_pending() - } - }; - - assert!(certificate_pending.get_signer("1".to_string()).is_some()); - assert!(certificate_pending.get_signer("5".to_string()).is_none()); - } } diff --git a/mithril-common/src/entities/epoch_settings.rs b/mithril-common/src/entities/epoch_settings.rs index c30491e6d28..955f80ac037 100644 --- a/mithril-common/src/entities/epoch_settings.rs +++ b/mithril-common/src/entities/epoch_settings.rs @@ -1,5 +1,7 @@ use crate::entities::{Epoch, ProtocolParameters}; +use super::Signer; + /// EpochSettings represents the settings of an epoch #[derive(Clone, Debug, PartialEq, Default)] pub struct EpochSettings { @@ -11,4 +13,10 @@ pub struct EpochSettings { /// Next Protocol parameters pub next_protocol_parameters: ProtocolParameters, + + /// Current Signers + pub current_signers: Vec, + + /// Signers that will be able to sign on the next epoch + pub next_signers: Vec, } diff --git a/mithril-common/src/entities/signer.rs b/mithril-common/src/entities/signer.rs index 200522d08d1..30d2e66329f 100644 --- a/mithril-common/src/entities/signer.rs +++ b/mithril-common/src/entities/signer.rs @@ -42,6 +42,18 @@ impl PartialEq for Signer { } } +impl PartialOrd for Signer { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(other)) + } +} + +impl Ord for Signer { + fn cmp(&self, other: &Self) -> std::cmp::Ordering { + self.party_id.cmp(&other.party_id) + } +} + impl Signer { /// Signer factory pub fn new( diff --git a/mithril-common/src/messages/certificate_pending.rs b/mithril-common/src/messages/certificate_pending.rs index a4342f1a017..1d3c6cb6114 100644 --- a/mithril-common/src/messages/certificate_pending.rs +++ b/mithril-common/src/messages/certificate_pending.rs @@ -19,17 +19,33 @@ pub struct CertificatePendingMessage { pub signed_entity_type: SignedEntityType, /// Current Protocol parameters + #[deprecated( + since = "0.4.47", + note = "Exist only for backward-compatibility, will be removed in the future" + )] #[serde(rename = "protocol")] pub protocol_parameters: ProtocolParameters, /// Next Protocol parameters + #[deprecated( + since = "0.4.47", + note = "Exist only for backward-compatibility, will be removed in the future" + )] #[serde(rename = "next_protocol")] pub next_protocol_parameters: ProtocolParameters, - /// Current Signers + /// Current Signers + #[deprecated( + since = "0.4.47", + note = "Exist only for backward-compatibility, will be removed in the future" + )] pub signers: Vec, /// Signers that will be able to sign on the next epoch + #[deprecated( + since = "0.4.47", + note = "Exist only for backward-compatibility, will be removed in the future" + )] pub next_signers: Vec, } diff --git a/mithril-common/src/messages/epoch_settings.rs b/mithril-common/src/messages/epoch_settings.rs index 122030e68ea..d7bc3247d59 100644 --- a/mithril-common/src/messages/epoch_settings.rs +++ b/mithril-common/src/messages/epoch_settings.rs @@ -1,4 +1,5 @@ use crate::entities::{Epoch, ProtocolParameters}; +use crate::messages::SignerMessagePart; use serde::{Deserialize, Serialize}; /// EpochSettings represents the settings of an epoch @@ -14,12 +15,79 @@ pub struct EpochSettingsMessage { /// Next Protocol parameters #[serde(rename = "next_protocol")] pub next_protocol_parameters: ProtocolParameters, + + /// Current Signers + pub current_signers: Vec, + + /// Signers that will be able to sign on the next epoch + pub next_signers: Vec, } impl EpochSettingsMessage { - /// Dummy instance for test purposes. - pub fn dummy() -> Self { - Self { + cfg_test_tools! { + /// Dummy instance for test purposes. + pub fn dummy() -> Self { + Self { + epoch: Epoch(10), + protocol_parameters: ProtocolParameters { + k: 5, + m: 100, + phi_f: 0.65, + }, + next_protocol_parameters: ProtocolParameters { + k: 5, + m: 100, + phi_f: 0.65, + }, + current_signers: [SignerMessagePart::dummy()].to_vec(), + next_signers: [SignerMessagePart::dummy()].to_vec(), + } + } + } +} + +#[cfg(test)] +mod tests { + + use super::*; + + const ACTUAL_JSON: &str = r#"{ + "epoch": 10, + "protocol": { "k": 5, "m": 100, "phi_f": 0.65 }, + "next_protocol": { "k": 50, "m": 1000, "phi_f": 0.65 }, + "current_signers":[{ + "party_id":"123", + "verification_key":"key_123", + "verification_key_signature":"signature_123", + "operational_certificate":"certificate_123", + "kes_period":12 + }], + "next_signers": [{ + "party_id":"456", + "verification_key":"key_456", + "verification_key_signature":"signature_456", + "operational_certificate":"certificate_456", + "kes_period":45 + }] + + }"#; + + #[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] + pub struct EpochSettingsMessagePreviousVersion { + /// Current Epoch + pub epoch: Epoch, + + /// Current Protocol parameters + #[serde(rename = "protocol")] + pub protocol_parameters: ProtocolParameters, + + /// Next Protocol parameters + #[serde(rename = "next_protocol")] + pub next_protocol_parameters: ProtocolParameters, + } + + fn golden_previous_message() -> EpochSettingsMessagePreviousVersion { + EpochSettingsMessagePreviousVersion { epoch: Epoch(10), protocol_parameters: ProtocolParameters { k: 5, @@ -27,19 +95,14 @@ impl EpochSettingsMessage { phi_f: 0.65, }, next_protocol_parameters: ProtocolParameters { - k: 5, - m: 100, + k: 50, + m: 1000, phi_f: 0.65, }, } } -} -#[cfg(test)] -mod tests { - use super::*; - - fn golden_message() -> EpochSettingsMessage { + fn golden_actual_message() -> EpochSettingsMessage { EpochSettingsMessage { epoch: Epoch(10), protocol_parameters: ProtocolParameters { @@ -52,21 +115,42 @@ mod tests { m: 1000, phi_f: 0.65, }, + current_signers: vec![SignerMessagePart { + party_id: "123".to_string(), + verification_key: "key_123".to_string(), + verification_key_signature: Some("signature_123".to_string()), + operational_certificate: Some("certificate_123".to_string()), + kes_period: Some(12), + }], + next_signers: vec![SignerMessagePart { + party_id: "456".to_string(), + verification_key: "key_456".to_string(), + verification_key_signature: Some("signature_456".to_string()), + operational_certificate: Some("certificate_456".to_string()), + kes_period: Some(45), + }], } } - // Test the retro compatibility with possible future upgrades. + // Test the backward compatibility with previous structure. + #[test] + fn test_actual_json_deserialized_into_previous_message() { + let json = ACTUAL_JSON; + let message: EpochSettingsMessagePreviousVersion = serde_json::from_str(json).expect( + "This JSON is expected to be successfully parsed into a EpochSettingsMessagePreviousVersion instance.", + ); + + assert_eq!(golden_previous_message(), message); + } + + // Test the compatibility with current structure. #[test] - fn test_v1() { - let json = r#"{ -"epoch": 10, -"protocol": { "k": 5, "m": 100, "phi_f": 0.65 }, -"next_protocol": { "k": 50, "m": 1000, "phi_f": 0.65 } -}"#; + fn test_actual_json_deserialized_into_actual_message() { + let json = ACTUAL_JSON; let message: EpochSettingsMessage = serde_json::from_str(json).expect( "This JSON is expected to be successfully parsed into a EpochSettingsMessage instance.", ); - assert_eq!(golden_message(), message); + assert_eq!(golden_actual_message(), message); } } diff --git a/mithril-common/src/messages/message_parts/signer.rs b/mithril-common/src/messages/message_parts/signer.rs index 43a466f6987..300cb0b063f 100644 --- a/mithril-common/src/messages/message_parts/signer.rs +++ b/mithril-common/src/messages/message_parts/signer.rs @@ -4,9 +4,9 @@ use crate::{ crypto_helper::{KESPeriod, ProtocolOpCert, ProtocolSignerVerificationKeySignature}, entities::{ HexEncodedOpCert, HexEncodedVerificationKey, HexEncodedVerificationKeySignature, PartyId, - SignerWithStake, Stake, + Signer, SignerWithStake, Stake, }, - StdResult, + StdError, StdResult, }; use anyhow::Context; use serde::{Deserialize, Serialize}; @@ -70,35 +70,46 @@ impl SignerWithStakeMessagePart { /// Convert a set of signer message parts into a set of signers with stake pub fn try_into_signers(messages: Vec) -> StdResult> { - let mut signers: Vec = Vec::new(); - - for message in messages { - let verification_key_signature: Option = message.verification_key_signature - .map(|f| f.try_into()) - .transpose() - .with_context(|| format!("Error while parsing verification key signature message, party_id = '{}'", message.party_id))?; - let operational_certificate: Option = message - .operational_certificate - .map(|f| f.try_into()) - .transpose() - .with_context(|| { - format!( - "Error while parsing operational certificate message, party_id = '{}'.", - message.party_id - ) - })?; - let value = SignerWithStake { - party_id: message.party_id, - verification_key: message.verification_key.try_into()?, - verification_key_signature, - kes_period: message.kes_period, - operational_certificate, - stake: message.stake, - }; - signers.push(value); - } + messages + .into_iter() + .map(SignerWithStakeMessagePart::try_into) + .collect() + } +} + +impl TryInto for SignerWithStakeMessagePart { + type Error = StdError; - Ok(signers) + fn try_into(self) -> Result { + let verification_key_signature: Option = self + .verification_key_signature + .map(|f| f.try_into()) + .transpose() + .with_context(|| { + format!( + "Error while parsing verification key signature message, party_id = '{}'", + self.party_id + ) + })?; + let operational_certificate: Option = self + .operational_certificate + .map(|f| f.try_into()) + .transpose() + .with_context(|| { + format!( + "Error while parsing operational certificate message, party_id = '{}'.", + self.party_id + ) + })?; + let value = SignerWithStake { + party_id: self.party_id, + verification_key: self.verification_key.try_into()?, + verification_key_signature, + kes_period: self.kes_period, + operational_certificate, + stake: self.stake, + }; + Ok(value) } } @@ -178,6 +189,19 @@ pub struct SignerMessagePart { } impl SignerMessagePart { + /// Convert a set of signer message parts into a set of signers + pub fn try_into_signers(messages: Vec) -> StdResult> { + messages + .into_iter() + .map(SignerMessagePart::try_into) + .collect() + } + + /// Convert a set of signers into message parts + pub fn from_signers(signers: Vec) -> Vec { + signers.into_iter().map(|signer| signer.into()).collect() + } + cfg_test_tools! { /// Return a dummy test entity (test-only). pub fn dummy() -> Self { @@ -194,6 +218,57 @@ impl SignerMessagePart { } } +impl TryInto for SignerMessagePart { + type Error = StdError; + + fn try_into(self) -> Result { + let verification_key_signature: Option = self + .verification_key_signature + .map(|f| f.try_into()) + .transpose() + .with_context(|| { + format!( + "Error while parsing verification key signature message, party_id = '{}'", + self.party_id + ) + })?; + let operational_certificate: Option = self + .operational_certificate + .map(|f| f.try_into()) + .transpose() + .with_context(|| { + format!( + "Error while parsing operational certificate message, party_id = '{}'.", + self.party_id + ) + })?; + let value = Signer { + party_id: self.party_id, + verification_key: self.verification_key.try_into()?, + verification_key_signature, + kes_period: self.kes_period, + operational_certificate, + }; + Ok(value) + } +} + +impl From for SignerMessagePart { + fn from(value: Signer) -> Self { + Self { + party_id: value.party_id, + verification_key: value.verification_key.try_into().unwrap(), + verification_key_signature: value + .verification_key_signature + .map(|k| k.try_into().unwrap()), + operational_certificate: value + .operational_certificate + .map(|op_cert| (op_cert.try_into().unwrap())), + kes_period: value.kes_period, + } + } +} + impl Debug for SignerWithStakeMessagePart { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { let should_be_exhaustive = f.alternate(); diff --git a/mithril-common/src/test_utils/fake_data.rs b/mithril-common/src/test_utils/fake_data.rs index 262a9e5da67..f76b952be51 100644 --- a/mithril-common/src/test_utils/fake_data.rs +++ b/mithril-common/src/test_utils/fake_data.rs @@ -61,11 +61,18 @@ pub fn epoch_settings() -> entities::EpochSettings { let protocol_parameters = protocol_parameters(); let next_protocol_parameters = protocol_parameters.clone(); + // Signers + let signers = signers(5); + let current_signers = signers[1..3].to_vec(); + let next_signers = signers[2..5].to_vec(); + // Epoch settings entities::EpochSettings { epoch: beacon.epoch, protocol_parameters, next_protocol_parameters, + current_signers, + next_signers, } } diff --git a/mithril-signer/Cargo.toml b/mithril-signer/Cargo.toml index 8e17aaac197..46bdba55349 100644 --- a/mithril-signer/Cargo.toml +++ b/mithril-signer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-signer" -version = "0.2.179" +version = "0.2.180" description = "A Mithril Signer" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-signer/src/dependency_injection/builder.rs b/mithril-signer/src/dependency_injection/builder.rs index d806df4b1c5..7db8828a0a1 100644 --- a/mithril-signer/src/dependency_injection/builder.rs +++ b/mithril-signer/src/dependency_injection/builder.rs @@ -3,7 +3,8 @@ use std::sync::Arc; use std::time::Duration; use anyhow::{anyhow, Context}; -use tokio::sync::Mutex; + +use tokio::sync::{Mutex, RwLock}; use mithril_common::api_version::APIVersionProvider; use mithril_common::cardano_block_scanner::CardanoBlockScanner; @@ -37,8 +38,9 @@ use mithril_persistence::store::StakeStore; use crate::dependency_injection::SignerDependencyContainer; use crate::services::{ AggregatorHTTPClient, CardanoTransactionsImporter, - CardanoTransactionsPreloaderActivationSigner, MithrilSingleSigner, SignerUpkeepService, - TransactionsImporterByChunk, TransactionsImporterWithPruner, TransactionsImporterWithVacuum, + CardanoTransactionsPreloaderActivationSigner, MithrilEpochService, MithrilSingleSigner, + SignerUpkeepService, TransactionsImporterByChunk, TransactionsImporterWithPruner, + TransactionsImporterWithVacuum, }; use crate::store::{MKTreeStoreSqlite, ProtocolInitializerStore}; use crate::{ @@ -339,6 +341,7 @@ impl<'a> DependenciesBuilder<'a> { slog_scope::logger(), )); + let epoch_service = Arc::new(RwLock::new(MithrilEpochService::new(stake_store.clone()))); let services = SignerDependencyContainer { ticker_service, certificate_handler: aggregator_client, @@ -355,6 +358,7 @@ impl<'a> DependenciesBuilder<'a> { signed_entity_type_lock, cardano_transactions_preloader, upkeep_service, + epoch_service, }; Ok(services) diff --git a/mithril-signer/src/dependency_injection/containers.rs b/mithril-signer/src/dependency_injection/containers.rs index c5d25df41e0..1fa46f13add 100644 --- a/mithril-signer/src/dependency_injection/containers.rs +++ b/mithril-signer/src/dependency_injection/containers.rs @@ -9,8 +9,9 @@ use mithril_common::signable_builder::SignableBuilderService; use mithril_common::signed_entity_type_lock::SignedEntityTypeLock; use mithril_common::TickerService; use mithril_persistence::store::StakeStore; +use tokio::sync::RwLock; -use crate::services::{AggregatorClient, SingleSigner, UpkeepService}; +use crate::services::{AggregatorClient, EpochService, SingleSigner, UpkeepService}; use crate::store::ProtocolInitializerStorer; use crate::MetricsService; @@ -22,6 +23,9 @@ type SingleSignerService = Arc; type TimePointProviderService = Arc; type ProtocolInitializerStoreService = Arc; +/// EpochServiceWrapper wraps a [EpochService] +pub type EpochServiceWrapper = Arc>; + /// This structure groups all the dependencies required by the state machine. pub struct SignerDependencyContainer { /// Time point provider service @@ -68,4 +72,7 @@ pub struct SignerDependencyContainer { /// Upkeep service pub upkeep_service: Arc, + + /// Epoch service + pub epoch_service: EpochServiceWrapper, } diff --git a/mithril-signer/src/message_adapters/from_epoch_settings.rs b/mithril-signer/src/message_adapters/from_epoch_settings.rs index 8b0ba21bcd1..99059bb37de 100644 --- a/mithril-signer/src/message_adapters/from_epoch_settings.rs +++ b/mithril-signer/src/message_adapters/from_epoch_settings.rs @@ -1,19 +1,26 @@ +use anyhow::Context; use mithril_common::{ entities::EpochSettings, - messages::{EpochSettingsMessage, FromMessageAdapter}, + messages::{EpochSettingsMessage, SignerMessagePart, TryFromMessageAdapter}, + StdResult, }; /// Adapter to convert [EpochSettingsMessage] to [EpochSettings]. pub struct FromEpochSettingsAdapter; -impl FromMessageAdapter for FromEpochSettingsAdapter { +impl TryFromMessageAdapter for FromEpochSettingsAdapter { /// Method to convert. - fn adapt(message: EpochSettingsMessage) -> EpochSettings { - EpochSettings { + fn try_adapt(message: EpochSettingsMessage) -> StdResult { + let epoch_settings = EpochSettings { epoch: message.epoch, protocol_parameters: message.protocol_parameters, next_protocol_parameters: message.next_protocol_parameters, - } + current_signers: SignerMessagePart::try_into_signers(message.current_signers) + .with_context(|| "'FromMessageAdapter' can not convert the current signers")?, + next_signers: SignerMessagePart::try_into_signers(message.next_signers) + .with_context(|| "'FromMessageAdapter' can not convert the next signers")?, + }; + Ok(epoch_settings) } } @@ -25,7 +32,7 @@ mod tests { fn test_simple_message() { let message = EpochSettingsMessage::dummy(); let epoch = message.epoch; - let epoch_settings = FromEpochSettingsAdapter::adapt(message); + let epoch_settings = FromEpochSettingsAdapter::try_adapt(message).unwrap(); assert_eq!(epoch, epoch_settings.epoch); } diff --git a/mithril-signer/src/message_adapters/from_pending_certificate_message.rs b/mithril-signer/src/message_adapters/from_pending_certificate_message.rs index 975e290e92f..a9aecf62fae 100644 --- a/mithril-signer/src/message_adapters/from_pending_certificate_message.rs +++ b/mithril-signer/src/message_adapters/from_pending_certificate_message.rs @@ -1,56 +1,14 @@ -use anyhow::Context; +#![allow(deprecated)] + use mithril_common::{ - crypto_helper::{ - ProtocolOpCert, ProtocolSignerVerificationKey, ProtocolSignerVerificationKeySignature, - }, - entities::{CertificatePending, Signer}, - messages::{CertificatePendingMessage, SignerMessagePart, TryFromMessageAdapter}, + entities::CertificatePending, + messages::{CertificatePendingMessage, TryFromMessageAdapter}, StdResult, }; /// Adapter to turn [CertificatePendingMessage] instances into [CertificatePending]. pub struct FromPendingCertificateMessageAdapter; -fn to_signers(messages: &[SignerMessagePart]) -> StdResult> { - let mut signers: Vec = Vec::new(); - - for msg in messages { - let signer = Signer::new( - msg.party_id.to_owned(), - ProtocolSignerVerificationKey::from_json_hex(&msg.verification_key)?, - match &msg.verification_key_signature { - Some(verification_key_signature) => Some( - ProtocolSignerVerificationKeySignature::from_json_hex( - verification_key_signature, - ) - .with_context(|| { - format!( - "'FromPendingCertificateMessageAdapter' can not json hex decode the verification key signature: '{}'", - verification_key_signature - ) - })?, - ), - _ => None, - }, - match &msg.operational_certificate { - Some(operational_certificate) => Some( - ProtocolOpCert::from_json_hex(operational_certificate).with_context(|| { - format!( - "'FromPendingCertificateMessageAdapter' can not json hex decode the operational certificate: '{}'", - operational_certificate - ) - })?, - ), - _ => None, - }, - msg.kes_period, - ); - signers.push(signer); - } - - Ok(signers) -} - impl TryFromMessageAdapter for FromPendingCertificateMessageAdapter { @@ -61,18 +19,10 @@ impl TryFromMessageAdapter signed_entity_type: message.signed_entity_type, protocol_parameters: message.protocol_parameters, next_protocol_parameters: message.next_protocol_parameters, - signers: to_signers(&message.signers).with_context(|| { - format!( - "'FromPendingCertificateMessageAdapter' can not convert the list of current signers: '{:?}'", - message.signers - ) - })?, - next_signers: to_signers(&message.next_signers).with_context(|| { - format!( - "'FromPendingCertificateMessageAdapter' can not convert the list of next signers: '{:?}'", - message.next_signers - ) - })?, + // This field is deprecated and should not be used by the Mithril signer. + signers: vec![], + // This field is deprecated and should not be used by the Mithril signer. + next_signers: vec![], }; Ok(certificate) @@ -91,14 +41,4 @@ mod tests { assert_eq!(epoch, certificate_pending.epoch); } - - #[test] - fn adapt_signers() { - let mut message = CertificatePendingMessage::dummy(); - message.signers = vec![SignerMessagePart::dummy(), SignerMessagePart::dummy()]; - let certificate_pending = FromPendingCertificateMessageAdapter::try_adapt(message).unwrap(); - - assert_eq!(2, certificate_pending.signers.len()); - assert_eq!(1, certificate_pending.next_signers.len()); - } } diff --git a/mithril-signer/src/runtime/runner.rs b/mithril-signer/src/runtime/runner.rs index a1a77b6d879..402fcf0b85c 100644 --- a/mithril-signer/src/runtime/runner.rs +++ b/mithril-signer/src/runtime/runner.rs @@ -1,6 +1,6 @@ use anyhow::Context; use async_trait::async_trait; -use slog_scope::{debug, info, trace, warn}; +use slog_scope::{debug, info, warn}; use thiserror::Error; #[cfg(test)] @@ -9,7 +9,7 @@ use mockall::automock; use mithril_common::crypto_helper::{KESPeriod, OpCert, ProtocolOpCert, SerDeShelleyFileFormat}; use mithril_common::entities::{ CertificatePending, Epoch, EpochSettings, PartyId, ProtocolMessage, ProtocolMessagePartKey, - ProtocolParameters, SignedEntityType, Signer, SignerWithStake, SingleSignatures, TimePoint, + SignedEntityType, Signer, SignerWithStake, SingleSignatures, TimePoint, }; use mithril_common::StdResult; use mithril_persistence::store::StakeStorer; @@ -31,11 +31,7 @@ pub trait Runner: Send + Sync { async fn get_current_time_point(&self) -> StdResult; /// Register the signer verification key to the aggregator. - async fn register_signer_to_aggregator( - &self, - epoch: Epoch, - protocol_parameters: &ProtocolParameters, - ) -> StdResult<()>; + async fn register_signer_to_aggregator(&self) -> StdResult<()>; /// Read the stake distribution and store it. async fn update_stake_distribution(&self, epoch: Epoch) -> StdResult<()>; @@ -43,19 +39,13 @@ pub trait Runner: Send + Sync { /// Check if all prerequisites for signing are met. async fn can_i_sign(&self, pending_certificate: &CertificatePending) -> StdResult; - /// From a list of signers, associate them with the stake read on the - /// Cardano node. - async fn associate_signers_with_stake( - &self, - epoch: Epoch, - signers: &[Signer], - ) -> StdResult>; + /// Register epoch information + async fn inform_epoch_settings(&self, epoch_settings: EpochSettings) -> StdResult<()>; /// Create the message to be signed with the single signature. async fn compute_message( &self, signed_entity_type: &SignedEntityType, - next_signers: &[SignerWithStake], ) -> StdResult; /// Create the single signature. @@ -63,7 +53,6 @@ pub trait Runner: Send + Sync { &self, epoch: Epoch, message: &ProtocolMessage, - signers: &[SignerWithStake], ) -> StdResult>; /// Send the single signature to the aggregator in order to be aggregated. @@ -108,6 +97,36 @@ impl SignerRunner { pub fn new(config: Configuration, services: SignerDependencyContainer) -> Self { Self { services, config } } + + /// Get the current signers with their stake. + async fn get_current_signers_with_stake(&self) -> StdResult> { + self.services + .epoch_service + .read() + .await + .current_signers_with_stake() + .await + } + + /// Get the next signers with their stake. + async fn get_next_signers_with_stake(&self) -> StdResult> { + self.services + .epoch_service + .read() + .await + .next_signers_with_stake() + .await + } + + /// Get the current signers. + async fn get_current_signers(&self) -> StdResult> { + self.services + .epoch_service + .read() + .await + .current_signers() + .cloned() + } } #[cfg_attr(test, automock)] @@ -143,13 +162,13 @@ impl Runner for SignerRunner { .with_context(|| "Runner can not get current time point") } - async fn register_signer_to_aggregator( - &self, - epoch: Epoch, - protocol_parameters: &ProtocolParameters, - ) -> StdResult<()> { + async fn register_signer_to_aggregator(&self) -> StdResult<()> { debug!("RUNNER: register_signer_to_aggregator"); + let epoch_service = self.services.epoch_service.read().await; + let epoch = epoch_service.epoch_of_current_data()?; + let protocol_parameters = epoch_service.next_protocol_parameters()?; + let epoch_offset_to_recording_epoch = epoch.offset_to_recording_epoch(); let stake_distribution = self .services @@ -255,9 +274,20 @@ impl Runner for SignerRunner { return Ok(false); } - if let Some(signer) = - pending_certificate.get_signer(self.services.single_signer.get_party_id()) - { + let current_signer: Option = { + let current_signers = self.get_current_signers().await; + if let Ok(signers) = current_signers { + signers + .iter() + .find(|s| s.party_id == self.services.single_signer.get_party_id()) + .cloned() + } else { + warn!(" > could not get current signers with stake, can NOT sign"); + return Ok(false); + } + }; + + if let Some(signer) = current_signer { debug!(" > got a Signer from pending certificate"); if let Some(protocol_initializer) = self @@ -294,50 +324,28 @@ impl Runner for SignerRunner { Ok(false) } - async fn associate_signers_with_stake( - &self, - epoch: Epoch, - signers: &[Signer], - ) -> StdResult> { - debug!("RUNNER: associate_signers_with_stake"); - - let stakes = self - .services - .stake_store - .get_stakes(epoch) - .await? - .ok_or_else(|| RunnerError::NoValueError(format!("stakes at epoch {epoch}")))?; - let mut signers_with_stake = vec![]; - - for signer in signers { - let stake = stakes - .get(&*signer.party_id) - .ok_or_else(|| RunnerError::NoStakeForSigner(signer.party_id.to_string()))?; - - signers_with_stake.push(SignerWithStake::new( - signer.party_id.to_owned(), - signer.verification_key.to_owned(), - signer.verification_key_signature.to_owned(), - signer.operational_certificate.to_owned(), - signer.kes_period.to_owned(), - *stake, - )); - trace!( - " > associating signer_id {} with stake {}", - signer.party_id, - *stake - ); - } - Ok(signers_with_stake) + // Register epoch settings information + async fn inform_epoch_settings(&self, epoch_settings: EpochSettings) -> StdResult<()> { + debug!("RUNNER: register_epoch"); + self.services + .epoch_service + .write() + .await + .inform_epoch_settings(epoch_settings) + .await } async fn compute_message( &self, signed_entity_type: &SignedEntityType, - next_signers: &[SignerWithStake], ) -> StdResult { debug!("RUNNER: compute_message"); + let next_signers = self + .get_next_signers_with_stake() + .await + .with_context(|| "Runner can not not retrieve next signers")?; + // 1 compute the signed entity type part of the message let mut message = self .services @@ -363,7 +371,7 @@ impl Runner for SignerRunner { let avk = self .services .single_signer - .compute_aggregate_verification_key(next_signers, &next_protocol_initializer)? + .compute_aggregate_verification_key(&next_signers, &next_protocol_initializer)? .ok_or_else(|| RunnerError::NoValueError("next_signers avk".to_string()))?; message.set_message_part(ProtocolMessagePartKey::NextAggregateVerificationKey, avk); @@ -374,10 +382,14 @@ impl Runner for SignerRunner { &self, epoch: Epoch, message: &ProtocolMessage, - signers: &[SignerWithStake], ) -> StdResult> { debug!("RUNNER: compute_single_signature"); + let signers = self + .get_current_signers_with_stake() + .await + .with_context(|| "Runner can not not retrieve signers")?; + let signer_retrieval_epoch = epoch.offset_to_signer_retrieval_epoch()?; let protocol_initializer = self .services @@ -391,7 +403,7 @@ impl Runner for SignerRunner { })?; let signature = self.services.single_signer.compute_single_signatures( message, - signers, + &signers, &protocol_initializer, )?; info!( @@ -471,12 +483,12 @@ mod tests { cardano_transactions_preloader::{ CardanoTransactionsPreloader, CardanoTransactionsPreloaderActivation, }, - chain_observer::{ChainObserver, FakeObserver}, + chain_observer::FakeObserver, crypto_helper::{ MKMap, MKMapNode, MKTreeNode, MKTreeStoreInMemory, MKTreeStorer, ProtocolInitializer, }, digesters::{DumbImmutableDigester, DumbImmutableFileObserver}, - entities::{BlockNumber, BlockRange, CardanoDbBeacon, Epoch, StakeDistribution}, + entities::{BlockNumber, BlockRange, CardanoDbBeacon, Epoch}, era::{adapters::EraReaderBootstrapAdapter, EraChecker, EraReader}, signable_builder::{ BlockRangeRootRetriever, CardanoImmutableFilesFullSignableBuilder, @@ -494,11 +506,14 @@ mod tests { use crate::metrics::MetricsService; use crate::services::{ - AggregatorClient, CardanoTransactionsImporter, DumbAggregatorClient, MithrilSingleSigner, - MockAggregatorClient, MockTransactionStore, MockUpkeepService, SingleSigner, + CardanoTransactionsImporter, DumbAggregatorClient, MithrilEpochService, + MithrilSingleSigner, MockAggregatorClient, MockTransactionStore, MockUpkeepService, + SingleSigner, }; use crate::store::ProtocolInitializerStore; + use tokio::sync::RwLock; + use super::*; const DIGESTER_RESULT: &str = "a digest"; @@ -596,6 +611,7 @@ mod tests { Arc::new(CardanoTransactionsPreloaderActivation::new(true)), )); let upkeep_service = Arc::new(MockUpkeepService::new()); + let epoch_service = Arc::new(RwLock::new(MithrilEpochService::new(stake_store.clone()))); SignerDependencyContainer { stake_store, @@ -616,6 +632,7 @@ mod tests { signed_entity_type_lock, cardano_transactions_preloader, upkeep_service, + epoch_service, } } @@ -684,43 +701,36 @@ mod tests { #[tokio::test] async fn test_register_signer_to_aggregator() { let mut services = init_services().await; + let fixture = MithrilFixtureBuilder::default().with_signers(5).build(); let certificate_handler = Arc::new(DumbAggregatorClient::default()); services.certificate_handler = certificate_handler.clone(); let protocol_initializer_store = services.protocol_initializer_store.clone(); - let chain_observer = Arc::new(FakeObserver::default()); - services.chain_observer = chain_observer.clone(); - let epoch = services - .ticker_service - .get_current_epoch() - .await - .unwrap() - .offset_to_recording_epoch(); - let stakes = chain_observer + let current_epoch = services.ticker_service.get_current_epoch().await.unwrap(); + + let stakes = services + .chain_observer .get_current_stake_distribution() .await .unwrap() .unwrap(); services .stake_store - .save_stakes(epoch, stakes) + .save_stakes(current_epoch.offset_to_recording_epoch(), stakes) .await .unwrap(); + let runner = init_runner(Some(services), None).await; - let epoch = chain_observer - .current_time_point - .read() - .await - .clone() - .expect("chain_observer should have a current_time_point") - .epoch; + // inform epoch settings + let epoch_settings = EpochSettings { + epoch: current_epoch, + current_signers: fixture.signers(), + next_signers: fixture.signers(), + ..fake_data::epoch_settings().clone() + }; + runner.inform_epoch_settings(epoch_settings).await.unwrap(); - let pending_certificate = certificate_handler - .retrieve_pending_certificate() - .await - .expect("getting pending certificate should not fail") - .expect("there should be a pending certificate, None returned"); runner - .register_signer_to_aggregator(epoch, &pending_certificate.protocol_parameters) + .register_signer_to_aggregator() .await .expect("registering a signer to the aggregator should not fail"); @@ -729,7 +739,7 @@ mod tests { .await .is_some()); let maybe_protocol_initializer = protocol_initializer_store - .get_protocol_initializer(epoch.offset_to_recording_epoch()) + .get_protocol_initializer(current_epoch.offset_to_recording_epoch()) .await .expect("get_protocol_initializer should not fail"); assert!( @@ -740,16 +750,35 @@ mod tests { #[tokio::test] async fn test_can_i_sign() { + let signers_with_stake = fake_data::signers_with_stakes(5); + let signers = Signer::vec_from(signers_with_stake.to_vec()); + let stake_distribution = signers_with_stake + .iter() + .map(|signer| (signer.party_id.clone(), signer.stake)) + .collect(); + + let mut current_signers = signers[1..3].to_vec(); + let next_signers = signers[2..5].to_vec(); + let mut pending_certificate = fake_data::certificate_pending(); + pending_certificate.signers = vec![]; + pending_certificate.next_signers = vec![]; let epoch = pending_certificate.epoch; - let signer = &mut pending_certificate.signers[0]; - // All signed entities are available for signing. + let signer = &mut current_signers[0]; + let signed_entity_type_lock = Arc::new(SignedEntityTypeLock::new()); let mut services = init_services().await; let protocol_initializer_store = services.protocol_initializer_store.clone(); services.single_signer = Arc::new(MithrilSingleSigner::new(signer.party_id.to_owned())); services.signed_entity_type_lock = signed_entity_type_lock.clone(); - let runner = init_runner(Some(services), None).await; + services + .stake_store + .save_stakes( + epoch.offset_to_signer_retrieval_epoch().unwrap(), + stake_distribution, + ) + .await + .expect("save_stakes should not fail"); let protocol_initializer = MithrilProtocolInitializerBuilder::build( &100, @@ -769,6 +798,16 @@ mod tests { .await .expect("save_protocol_initializer should not fail"); + let runner = init_runner(Some(services), None).await; + // inform epoch settings + let epoch_settings = EpochSettings { + epoch, + current_signers, + next_signers, + ..fake_data::epoch_settings().clone() + }; + runner.inform_epoch_settings(epoch_settings).await.unwrap(); + let can_i_sign_result = runner.can_i_sign(&pending_certificate).await.unwrap(); assert!(can_i_sign_result); @@ -784,36 +823,6 @@ mod tests { ); } - #[tokio::test] - async fn test_associate_signers_with_stake() { - let services = init_services().await; - let stake_store = services.stake_store.clone(); - let runner = init_runner(Some(services), None).await; - let epoch = Epoch(12); - let expected = fake_data::signers_with_stakes(5); - let signers = expected - .clone() - .into_iter() - .map(|s| s.into()) - .collect::>(); - let stake_distribution = expected - .clone() - .iter() - .map(|s| s.into()) - .collect::(); - - stake_store - .save_stakes(epoch, stake_distribution) - .await - .expect("save_stakes should not fail"); - - let result = runner - .associate_signers_with_stake(epoch, &signers) - .await - .expect("associate_signers_with_stake should not fail"); - assert_eq!(expected, result); - } - #[tokio::test] async fn test_compute_message() { let mut services = init_services().await; @@ -845,7 +854,20 @@ mod tests { .await .expect("save_protocol_initializer should not fail"); - let next_signers = fixture.signers_with_stake(); + services + .stake_store + .save_stakes( + current_time_point + .epoch + .offset_to_next_signer_retrieval_epoch(), + fixture.stake_distribution(), + ) + .await + .expect("save_stakes should not fail"); + + let next_signers_with_stake = &fixture.signers_with_stake()[3..5]; + let next_signers = &fixture.signers()[3..5]; + let mut expected = ProtocolMessage::new(); expected.set_message_part( ProtocolMessagePartKey::SnapshotDigest, @@ -853,14 +875,24 @@ mod tests { ); let avk = services .single_signer - .compute_aggregate_verification_key(&next_signers, &protocol_initializer) + .compute_aggregate_verification_key(next_signers_with_stake, &protocol_initializer) .expect("compute_aggregate_verification_key should not fail") .expect("an avk should have been computed"); expected.set_message_part(ProtocolMessagePartKey::NextAggregateVerificationKey, avk); let runner = init_runner(Some(services), None).await; + + // inform epoch settings + let epoch_settings = EpochSettings { + epoch: current_time_point.epoch, + current_signers: fixture.signers(), + next_signers: next_signers.to_vec(), + ..fake_data::epoch_settings().clone() + }; + runner.inform_epoch_settings(epoch_settings).await.unwrap(); + let message = runner - .compute_message(&signed_entity_type, &next_signers) + .compute_message(&signed_entity_type) .await .expect("compute_message should not fail"); @@ -893,7 +925,21 @@ mod tests { ) .await .expect("save_protocol_initializer should not fail"); - let signers = fixture.signers_with_stake(); + + services + .stake_store + .save_stakes( + current_time_point + .epoch + .offset_to_signer_retrieval_epoch() + .expect("offset_to_signer_retrieval_epoch should not fail"), + fixture.stake_distribution(), + ) + .await + .expect("save_stakes should not fail"); + + let signers_with_stake = &fixture.signers_with_stake()[0..3]; + let signers = &fixture.signers()[0..3]; let mut message = ProtocolMessage::new(); message.set_message_part( @@ -906,12 +952,22 @@ mod tests { ); let expected = single_signer - .compute_single_signatures(&message, &signers, &protocol_initializer) + .compute_single_signatures(&message, signers_with_stake, &protocol_initializer) .expect("compute_single_signatures should not fail"); let runner = init_runner(Some(services), None).await; + + // inform epoch settings + let epoch_settings = EpochSettings { + epoch: current_time_point.epoch, + current_signers: signers.to_vec(), + next_signers: fixture.signers(), + ..fake_data::epoch_settings().clone() + }; + runner.inform_epoch_settings(epoch_settings).await.unwrap(); + let single_signature = runner - .compute_single_signature(current_time_point.epoch, &message, &signers) + .compute_single_signature(current_time_point.epoch, &message) .await .expect("compute_message should not fail"); assert_eq!(expected, single_signature); diff --git a/mithril-signer/src/runtime/state_machine.rs b/mithril-signer/src/runtime/state_machine.rs index 35ab852aa80..9a41f506266 100644 --- a/mithril-signer/src/runtime/state_machine.rs +++ b/mithril-signer/src/runtime/state_machine.rs @@ -4,9 +4,7 @@ use tokio::{sync::Mutex, time::sleep}; use mithril_common::{ crypto_helper::ProtocolInitializerError, - entities::{ - CertificatePending, Epoch, EpochSettings, SignedEntityType, SignerWithStake, TimePoint, - }, + entities::{CertificatePending, Epoch, EpochSettings, SignedEntityType, TimePoint}, }; use crate::MetricsService; @@ -170,7 +168,7 @@ impl StateMachine { info!("new Epoch found"); info!(" ⋅ transiting to REGISTERED"); *state = self - .transition_from_unregistered_to_registered(&epoch_settings) + .transition_from_unregistered_to_registered(epoch_settings) .await?; } else { info!( @@ -327,7 +325,7 @@ impl StateMachine { /// Launch the transition process from the `Unregistered` to the `Registered` state. async fn transition_from_unregistered_to_registered( &self, - epoch_settings: &EpochSettings, + epoch_settings: EpochSettings, ) -> Result { self.metrics_service .signer_registration_total_since_startup_counter_increment(); @@ -343,10 +341,18 @@ impl StateMachine { nested_error: Some(e), })?; - self.runner.register_signer_to_aggregator( - epoch_settings.epoch, - &epoch_settings.next_protocol_parameters, - ) + self.runner + .inform_epoch_settings(epoch_settings) + .await + .map_err(|e| RuntimeError::KeepState { + message: format!( + "Could not register epoch information in 'unregistered → registered' phase for epoch {:?}.", + epoch + ), + nested_error: Some(e), + })?; + + self.runner.register_signer_to_aggregator() .await.map_err(|e| { if e.downcast_ref::().is_some() { RuntimeError::Critical { message: format!("Could not register to aggregator in 'unregistered → registered' phase for epoch {:?}.", epoch), nested_error: Some(e) } @@ -392,34 +398,18 @@ impl StateMachine { self.metrics_service .signature_registration_total_since_startup_counter_increment(); - let signers: Vec = self - .runner - .associate_signers_with_stake(retrieval_epoch, &pending_certificate.signers) - .await - .map_err(|e| RuntimeError::KeepState { - message: format!("Could not associate current signers with stakes during 'registered → signed' phase (current epoch {current_epoch:?}, retrieval epoch {retrieval_epoch:?})"), - nested_error: Some(e) - })?; - let next_signers: Vec = self - .runner - .associate_signers_with_stake(next_retrieval_epoch, &pending_certificate.next_signers) - .await - .map_err(|e| RuntimeError::KeepState { - message: format!("Could not associate next signers with stakes during 'registered → signed' phase (current epoch {current_epoch:?}, next retrieval epoch {next_retrieval_epoch:?})"), - nested_error: Some(e) - })?; - let message = self .runner - .compute_message(&pending_certificate.signed_entity_type, &next_signers) + .compute_message(&pending_certificate.signed_entity_type) .await .map_err(|e| RuntimeError::KeepState { message: format!("Could not compute message during 'registered → signed' phase (current epoch {current_epoch:?})"), nested_error: Some(e) })?; + let single_signatures = self .runner - .compute_single_signature(current_epoch, &message, &signers) + .compute_single_signature(current_epoch, &message) .await .map_err(|e| RuntimeError::KeepState { message: format!("Could not compute single signature during 'registered → signed' phase (current epoch {current_epoch:?})"), @@ -474,6 +464,7 @@ impl StateMachine { mod tests { use mithril_common::entities::{CardanoDbBeacon, ChainPoint, Epoch, ProtocolMessage}; use mithril_common::test_utils::fake_data; + use mockall::predicate; use crate::runtime::runner::MockSignerRunner; @@ -526,6 +517,8 @@ mod tests { epoch: Epoch(3), protocol_parameters: fake_data::protocol_parameters(), next_protocol_parameters: fake_data::protocol_parameters(), + current_signers: vec![], + next_signers: vec![], }; let known_epoch = Epoch(4); runner @@ -559,6 +552,13 @@ mod tests { .expect_get_epoch_settings() .once() .returning(|| Ok(Some(fake_data::epoch_settings()))); + + runner + .expect_inform_epoch_settings() + .with(predicate::eq(fake_data::epoch_settings())) + .once() + .returning(|_| Ok(())); + runner .expect_get_current_time_point() .times(2) @@ -570,7 +570,7 @@ mod tests { runner .expect_register_signer_to_aggregator() .once() - .returning(|_, _| Ok(())); + .returning(|| Ok(())); let state_machine = init_state_machine( SignerState::Unregistered { @@ -685,18 +685,14 @@ mod tests { .once() .returning(move || Ok(Some(certificate_pending.clone()))); runner.expect_can_i_sign().once().returning(|_| Ok(true)); - runner - .expect_associate_signers_with_stake() - .times(2) - .returning(|_, _| Ok(fake_data::signers_with_stakes(4))); runner .expect_compute_single_signature() .once() - .returning(|_, _, _| Ok(Some(fake_data::single_signatures(vec![1, 5, 23])))); + .returning(|_, _| Ok(Some(fake_data::single_signatures(vec![1, 5, 23])))); runner .expect_compute_message() .once() - .returning(|_, _| Ok(ProtocolMessage::new())); + .returning(|_| Ok(ProtocolMessage::new())); runner .expect_send_single_signature() .once() diff --git a/mithril-signer/src/services/aggregator_client.rs b/mithril-signer/src/services/aggregator_client.rs index 2bfd137439d..ca211fb049c 100644 --- a/mithril-signer/src/services/aggregator_client.rs +++ b/mithril-signer/src/services/aggregator_client.rs @@ -12,7 +12,7 @@ use mithril_common::{ }, messages::{ AggregatorFeaturesMessage, CertificatePendingMessage, EpochSettingsMessage, - FromMessageAdapter, TryFromMessageAdapter, TryToMessageAdapter, + TryFromMessageAdapter, TryToMessageAdapter, }, StdError, MITHRIL_API_VERSION_HEADER, MITHRIL_SIGNER_VERSION_HEADER, }; @@ -197,7 +197,11 @@ impl AggregatorClient for AggregatorHTTPClient { match response { Ok(response) => match response.status() { StatusCode::OK => match response.json::().await { - Ok(message) => Ok(Some(FromEpochSettingsAdapter::adapt(message))), + Ok(message) => { + let epoch_settings = FromEpochSettingsAdapter::try_adapt(message) + .map_err(|e| AggregatorClientError::Adapter(anyhow!(e)))?; + Ok(Some(epoch_settings)) + } Err(err) => Err(AggregatorClientError::JsonParseFailed(anyhow!(err))), }, StatusCode::PRECONDITION_FAILED => Err(self.handle_api_error(&response)), @@ -587,7 +591,7 @@ mod tests { let epoch_settings = certificate_handler.retrieve_epoch_settings().await; epoch_settings.as_ref().expect("unexpected error"); assert_eq!( - FromEpochSettingsAdapter::adapt(epoch_settings_expected), + FromEpochSettingsAdapter::try_adapt(epoch_settings_expected).unwrap(), epoch_settings.unwrap().unwrap() ); } diff --git a/mithril-signer/src/services/epoch_service.rs b/mithril-signer/src/services/epoch_service.rs new file mode 100644 index 00000000000..62aea5570e6 --- /dev/null +++ b/mithril-signer/src/services/epoch_service.rs @@ -0,0 +1,335 @@ +use std::sync::Arc; + +use async_trait::async_trait; +use mithril_common::entities::Epoch; +use mithril_common::entities::ProtocolParameters; +use mithril_common::entities::Signer; +use mithril_persistence::store::StakeStorer; +use slog_scope::{debug, trace}; +use thiserror::Error; + +use mithril_common::entities::EpochSettings; +use mithril_common::entities::SignerWithStake; +use mithril_common::StdResult; + +use crate::RunnerError; + +/// Errors dedicated to the EpochService. +#[derive(Debug, Error)] +pub enum EpochServiceError { + /// Raised when service has not collected data at least once. + #[error("Epoch service was not initialized, the function `inform_epoch_settings` must be called first")] + NotYetInitialized, +} + +/// Service that aggregates all data that don't change in a given epoch. +#[async_trait] +pub trait EpochService: Sync + Send { + /// Inform the service a new epoch has been detected, telling it to update its + /// internal state for the new epoch. + async fn inform_epoch_settings(&mut self, epoch_settings: EpochSettings) -> StdResult<()>; + + /// Get the current epoch for which the data stored in this service are computed. + fn epoch_of_current_data(&self) -> StdResult; + + /// Get next protocol parameters used in next epoch (associated with the actual epoch) + fn next_protocol_parameters(&self) -> StdResult<&ProtocolParameters>; + + /// Get signers for the current epoch + fn current_signers(&self) -> StdResult<&Vec>; + + /// Get signers for the next epoch + fn next_signers(&self) -> StdResult<&Vec>; + + /// Get signers with stake for the current epoch + async fn current_signers_with_stake(&self) -> StdResult>; + + /// Get signers with stake for the next epoch + async fn next_signers_with_stake(&self) -> StdResult>; +} + +struct EpochData { + epoch: Epoch, + next_protocol_parameters: ProtocolParameters, + current_signers: Vec, + next_signers: Vec, +} + +/// Implementation of the [epoch service][EpochService]. +pub struct MithrilEpochService { + stake_storer: Arc, + + epoch_data: Option, +} + +impl MithrilEpochService { + /// Create a new service instance + pub fn new(stake_storer: Arc) -> Self { + Self { + stake_storer, + epoch_data: None, + } + } + + async fn associate_signers_with_stake( + &self, + epoch: Epoch, + signers: &[Signer], + ) -> StdResult> { + debug!("EpochService: associate_signers_with_stake"); + + let stakes = self + .stake_storer + .get_stakes(epoch) + .await? + .ok_or_else(|| RunnerError::NoValueError(format!("stakes at epoch {epoch}")))?; + + let mut signers_with_stake = vec![]; + + for signer in signers { + let stake = stakes + .get(&*signer.party_id) + .ok_or_else(|| RunnerError::NoStakeForSigner(signer.party_id.to_string()))?; + + signers_with_stake.push(SignerWithStake::new( + signer.party_id.to_owned(), + signer.verification_key.to_owned(), + signer.verification_key_signature.to_owned(), + signer.operational_certificate.to_owned(), + signer.kes_period.to_owned(), + *stake, + )); + trace!( + " > associating signer_id {} with stake {}", + signer.party_id, + *stake + ); + } + + Ok(signers_with_stake) + } + + fn unwrap_data(&self) -> Result<&EpochData, EpochServiceError> { + self.epoch_data + .as_ref() + .ok_or(EpochServiceError::NotYetInitialized) + } +} + +#[async_trait] +impl EpochService for MithrilEpochService { + async fn inform_epoch_settings(&mut self, epoch_settings: EpochSettings) -> StdResult<()> { + debug!( + "EpochService: register_epoch_settings: {:?}", + epoch_settings + ); + + self.epoch_data = Some(EpochData { + epoch: epoch_settings.epoch, + next_protocol_parameters: epoch_settings.next_protocol_parameters, + current_signers: epoch_settings.current_signers, + next_signers: epoch_settings.next_signers, + }); + + Ok(()) + } + + fn epoch_of_current_data(&self) -> StdResult { + Ok(self.unwrap_data()?.epoch) + } + + fn next_protocol_parameters(&self) -> StdResult<&ProtocolParameters> { + Ok(&self.unwrap_data()?.next_protocol_parameters) + } + + fn current_signers(&self) -> StdResult<&Vec> { + Ok(&self.unwrap_data()?.current_signers) + } + + fn next_signers(&self) -> StdResult<&Vec> { + Ok(&self.unwrap_data()?.next_signers) + } + + async fn current_signers_with_stake(&self) -> StdResult> { + let current_epoch = self.epoch_of_current_data()?; + self.associate_signers_with_stake( + current_epoch.offset_to_signer_retrieval_epoch()?, + self.current_signers()?, + ) + .await + } + + async fn next_signers_with_stake(&self) -> StdResult> { + let current_epoch = self.epoch_of_current_data()?; + self.associate_signers_with_stake( + current_epoch.offset_to_next_signer_retrieval_epoch(), + self.next_signers()?, + ) + .await + } +} + +#[cfg(test)] +mod tests { + use std::sync::Arc; + + use super::*; + + use mithril_common::{ + entities::{Epoch, EpochSettings, StakeDistribution}, + test_utils::fake_data::{self}, + }; + use mithril_persistence::store::{ + adapter::{DumbStoreAdapter, MemoryAdapter}, + StakeStore, StakeStorer, + }; + + #[tokio::test] + async fn test_retrieve_data_return_error_before_register_epoch_settings_was_call() { + let epoch = Epoch(12); + // Signers and stake distribution + let signers = fake_data::signers(10); + let stake_distribution: StakeDistribution = signers + .iter() + .enumerate() + .map(|(i, signer)| (signer.party_id.clone(), (i + 1) as u64 * 100)) + .collect(); + + // Init stake_store + let stake_store = Arc::new(StakeStore::new(Box::new(DumbStoreAdapter::new()), None)); + stake_store + .save_stakes(epoch, stake_distribution.clone()) + .await + .expect("save_stakes should not fail"); + + // Build service and register epoch settings + let service = MithrilEpochService::new(stake_store); + assert!(service.epoch_of_current_data().is_err()); + assert!(service.next_protocol_parameters().is_err()); + assert!(service.current_signers().is_err()); + assert!(service.next_signers().is_err()); + assert!(service.current_signers_with_stake().await.is_err()); + assert!(service.next_signers_with_stake().await.is_err()); + } + + #[tokio::test] + async fn test_data_are_available_after_register_epoch_settings_call() { + let epoch = Epoch(12); + // Signers and stake distribution + let signers = fake_data::signers(10); + + // Init stake_store + let stake_store = Arc::new(StakeStore::new(Box::new(DumbStoreAdapter::new()), None)); + + // Epoch settings + let epoch_settings = EpochSettings { + epoch, + current_signers: signers[2..5].to_vec(), + next_signers: signers[3..7].to_vec(), + ..fake_data::epoch_settings().clone() + }; + + // Build service and register epoch settings + let mut service = MithrilEpochService::new(stake_store); + + service + .inform_epoch_settings(epoch_settings.clone()) + .await + .unwrap(); + + // Check current_signers + { + let current_signers = service.current_signers().unwrap(); + let expected_current_signers = epoch_settings.current_signers.clone(); + assert_eq!(expected_current_signers, *current_signers); + } + // Check next_signers + { + let next_signers = service.next_signers().unwrap(); + let expected_next_signers = epoch_settings.next_signers.clone(); + assert_eq!(expected_next_signers, *next_signers); + } + + // Check other data + assert_eq!( + epoch_settings.epoch, + service.epoch_of_current_data().unwrap() + ); + assert_eq!( + epoch_settings.next_protocol_parameters, + *service.next_protocol_parameters().unwrap() + ); + } + + #[tokio::test] + async fn test_signers_with_stake_are_available_after_register_epoch_settings_call() { + fn build_stake_distribution(signers: &[Signer], first_stake: u64) -> StakeDistribution { + signers + .iter() + .enumerate() + .map(|(i, signer)| (signer.party_id.clone(), first_stake + i as u64)) + .collect() + } + + let epoch = Epoch(12); + + // Signers and stake distribution + let signers = fake_data::signers(10); + let stake_distribution: StakeDistribution = build_stake_distribution(&signers, 100); + let next_stake_distribution: StakeDistribution = build_stake_distribution(&signers, 500); + + let stake_store = Arc::new(StakeStore::new( + Box::new( + MemoryAdapter::::new(Some(vec![ + ( + epoch.offset_to_signer_retrieval_epoch().unwrap(), + stake_distribution.clone(), + ), + ( + epoch.offset_to_next_signer_retrieval_epoch(), + next_stake_distribution.clone(), + ), + ])) + .unwrap(), + ), + None, + )); + + // Epoch settings + let epoch_settings = EpochSettings { + epoch, + current_signers: signers[2..5].to_vec(), + next_signers: signers[3..7].to_vec(), + ..fake_data::epoch_settings().clone() + }; + + // Build service and register epoch settings + let mut service = MithrilEpochService::new(stake_store); + service + .inform_epoch_settings(epoch_settings.clone()) + .await + .unwrap(); + + // Check current signers with stake + { + let current_signers = service.current_signers_with_stake().await.unwrap(); + + assert_eq!(epoch_settings.current_signers.len(), current_signers.len()); + for signer in current_signers { + let expected_stake = stake_distribution.get(&signer.party_id).unwrap(); + assert_eq!(expected_stake, &signer.stake); + } + } + + // Check next signers with stake + { + let next_signers = service.next_signers_with_stake().await.unwrap(); + + assert_eq!(epoch_settings.next_signers.len(), next_signers.len()); + for signer in next_signers { + let expected_stake = next_stake_distribution.get(&signer.party_id).unwrap(); + assert_eq!(expected_stake, &signer.stake); + } + } + } +} diff --git a/mithril-signer/src/services/mod.rs b/mithril-signer/src/services/mod.rs index c4a3fdc36ad..e0ecc517c63 100644 --- a/mithril-signer/src/services/mod.rs +++ b/mithril-signer/src/services/mod.rs @@ -11,6 +11,7 @@ mod aggregator_client; mod cardano_transactions; +mod epoch_service; mod single_signer; mod upkeep_service; @@ -18,5 +19,6 @@ mod upkeep_service; pub use aggregator_client::dumb::DumbAggregatorClient; pub use aggregator_client::*; pub use cardano_transactions::*; +pub use epoch_service::*; pub use single_signer::*; pub use upkeep_service::*; diff --git a/mithril-signer/tests/test_extensions/certificate_handler.rs b/mithril-signer/tests/test_extensions/certificate_handler.rs index 6a073a132db..6fc6611a6d0 100644 --- a/mithril-signer/tests/test_extensions/certificate_handler.rs +++ b/mithril-signer/tests/test_extensions/certificate_handler.rs @@ -40,7 +40,6 @@ impl FakeAggregator { pub async fn get_registered_signers(&self, epoch: &Epoch) -> Option> { let store = self.registered_signers.read().await; - store.get(epoch).cloned() } @@ -66,6 +65,29 @@ impl FakeAggregator { Ok(time_point) } + + async fn get_current_signers( + &self, + store: &HashMap>, + ) -> Result, AggregatorClientError> { + let time_point = self.get_time_point().await?; + let epoch = time_point + .epoch + .offset_to_signer_retrieval_epoch() + .map_err(|e| AggregatorClientError::RemoteServerTechnical(anyhow!(e)))?; + + Ok(store.get(&epoch).cloned().unwrap_or_default()) + } + + async fn get_next_signers( + &self, + store: &HashMap>, + ) -> Result, AggregatorClientError> { + let time_point = self.get_time_point().await?; + let epoch = time_point.epoch.offset_to_next_signer_retrieval_epoch(); + + Ok(store.get(&epoch).cloned().unwrap_or_default()) + } } #[async_trait] @@ -76,9 +98,15 @@ impl AggregatorClient for FakeAggregator { if *self.withhold_epoch_settings.read().await { Ok(None) } else { - let beacon = self.get_time_point().await?; + let store = self.registered_signers.read().await; + let time_point = self.get_time_point().await?; + let current_signers = self.get_current_signers(&store).await?; + let next_signers = self.get_next_signers(&store).await?; + Ok(Some(EpochSettings { - epoch: beacon.epoch, + epoch: time_point.epoch, + current_signers, + next_signers, ..Default::default() })) } @@ -104,15 +132,8 @@ impl AggregatorClient for FakeAggregator { ..fake_data::certificate_pending() }; - let store = self.registered_signers.read().await; - certificate_pending.signers = store - .get(&time_point.epoch.offset_to_signer_retrieval_epoch().unwrap()) - .cloned() - .unwrap_or_default(); - certificate_pending.next_signers = store - .get(&time_point.epoch.offset_to_next_signer_retrieval_epoch()) - .cloned() - .unwrap_or_default(); + certificate_pending.signers = self.get_current_signers(&store).await?; + certificate_pending.next_signers = self.get_next_signers(&store).await?; Ok(Some(certificate_pending)) } @@ -212,6 +233,55 @@ mod tests { assert_eq!(2, signers.len()); } + #[tokio::test] + async fn retrieve_epoch_settings() { + let (chain_observer, fake_aggregator) = init().await; + let fake_signers = fake_data::signers(3); + let epoch = chain_observer.get_current_epoch().await.unwrap().unwrap(); + + fake_aggregator.release_epoch_settings().await; + + fake_aggregator + .register_signer(epoch, &fake_signers.as_slice()[0]) + .await + .expect("aggregator client should not fail while registering a user"); + let epoch_settings = fake_aggregator + .retrieve_epoch_settings() + .await + .expect("we should have a result, None found!") + .expect("we should have an EpochSettings, None found!"); + + assert_eq!(0, epoch_settings.current_signers.len()); + assert_eq!(1, epoch_settings.next_signers.len()); + + fake_aggregator + .register_signer(epoch, &fake_signers.as_slice()[1]) + .await + .expect("aggregator client should not fail while registering a user"); + let epoch_settings = fake_aggregator + .retrieve_epoch_settings() + .await + .expect("we should have a result, None found!") + .expect("we should have an EpochSettings, None found!"); + + assert_eq!(0, epoch_settings.current_signers.len()); + assert_eq!(2, epoch_settings.next_signers.len()); + + let epoch = chain_observer.next_epoch().await.unwrap(); + fake_aggregator + .register_signer(epoch, &fake_signers.as_slice()[2]) + .await + .expect("aggregator client should not fail while registering a user"); + let epoch_settings = fake_aggregator + .retrieve_epoch_settings() + .await + .expect("we should have a result, None found!") + .expect("we should have an EpochSettings, None found!"); + + assert_eq!(2, epoch_settings.current_signers.len()); + assert_eq!(1, epoch_settings.next_signers.len()); + } + #[tokio::test] async fn retrieve_pending_certificate() { let (chain_observer, fake_aggregator) = init().await; diff --git a/mithril-signer/tests/test_extensions/state_machine_tester.rs b/mithril-signer/tests/test_extensions/state_machine_tester.rs index 54d8a05cef3..3706f698ba7 100644 --- a/mithril-signer/tests/test_extensions/state_machine_tester.rs +++ b/mithril-signer/tests/test_extensions/state_machine_tester.rs @@ -1,11 +1,5 @@ #![allow(dead_code)] use anyhow::anyhow; -use prometheus_parse::Value; -use slog::Drain; -use slog_scope::debug; -use std::{collections::BTreeMap, fmt::Debug, path::Path, sync::Arc, time::Duration}; -use thiserror::Error; - use mithril_common::{ api_version::APIVersionProvider, cardano_block_scanner::{DumbBlockScanner, ScannedBlock}, @@ -37,11 +31,18 @@ use mithril_signer::{ dependency_injection::{DependenciesBuilder, SignerDependencyContainer}, metrics::*, services::{ - AggregatorClient, CardanoTransactionsImporter, MithrilSingleSigner, SignerUpkeepService, + AggregatorClient, CardanoTransactionsImporter, MithrilEpochService, MithrilSingleSigner, + SignerUpkeepService, }, store::{MKTreeStoreSqlite, ProtocolInitializerStore, ProtocolInitializerStorer}, Configuration, MetricsService, RuntimeError, SignerRunner, SignerState, StateMachine, }; +use prometheus_parse::Value; +use slog::Drain; +use slog_scope::debug; +use std::{collections::BTreeMap, fmt::Debug, path::Path, sync::Arc, time::Duration}; +use thiserror::Error; +use tokio::sync::RwLock; use super::FakeAggregator; @@ -228,6 +229,7 @@ impl StateMachineTester { signed_entity_type_lock.clone(), slog_scope::logger(), )); + let epoch_service = Arc::new(RwLock::new(MithrilEpochService::new(stake_store.clone()))); let services = SignerDependencyContainer { certificate_handler: certificate_handler.clone(), @@ -245,6 +247,7 @@ impl StateMachineTester { signed_entity_type_lock: Arc::new(SignedEntityTypeLock::default()), cardano_transactions_preloader, upkeep_service, + epoch_service, }; // set up stake distribution chain_observer diff --git a/mithril-test-lab/mithril-aggregator-fake/Cargo.toml b/mithril-test-lab/mithril-aggregator-fake/Cargo.toml index a3dcc01023e..acb7e8b8fbe 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.3.8" +version = "0.3.9" description = "Mithril Fake Aggregator for client testing" authors = { workspace = true } documentation = { workspace = true } diff --git a/mithril-test-lab/mithril-aggregator-fake/README.md b/mithril-test-lab/mithril-aggregator-fake/README.md index 0bc53182fef..81f812c99c0 100644 --- a/mithril-test-lab/mithril-aggregator-fake/README.md +++ b/mithril-test-lab/mithril-aggregator-fake/README.md @@ -36,6 +36,29 @@ This project comes with a shell script that reads data from a given Mithril Aggr ./scripts/import.sh some/data/directory http://valid.mithril.url/aggregator ``` +## Process to locally update data + +Note: WORKING_DIR_END_TO_END should be short to be used as a socket path (less than 108 charaters). + +``` +WORKING_DIR_END_TO_END=[SELECT A PATH] +mkdir -p $WORKING_DIR_END_TO_END +./mithril-end-to-end -vvv --work-directory $WORKING_DIR_END_TO_END --bin-directory ../../target/release --devnet-scripts-directory=../mithril-devnet --run-only +``` + +Waiting some but not too much following lines +`Mithril end to end is running and will remain active until manually stopped...` + +In another terminal: + +``` +WORKING_DIR_END_TO_END=[SELECT A PATH] +JSON_OUTPUT=./default_data +TRANSACTION_HASH_SAMPLE=$(sqlite3 $WORKING_DIR_END_TO_END/stores/aggregator/cardano-transaction.sqlite3 "select transaction_hash from cardano_tx") + +./scripts/import.sh $JSON_OUTPUT http://localhost:8080/aggregator "$TRANSACTION_HASH_SAMPLE" +``` + ## Command line synopsis Usage: `mithril-aggregator-fake [OPTIONS]` 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 8477b226aed..865cd3214ef 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,74 +1,122 @@ [ { - "epoch": 21, - "hash": "c7974f3516ea3658aff02280ddd245874421bf1f6a4bbbdacb473da48638a5cc", - "certificate_hash": "4d40317ddb07cb64e644f3fd982b5e04c076bcdc70eb11c757bc56d045a96145", - "created_at": "2024-08-08T15:15:21.657369Z" + "epoch": 61, + "hash": "d5954a1b69a070ec00f80b2f0de1ac254800a9b3f9cd6820280b214408f1faf0", + "certificate_hash": "f8ca3cf68c39f45c29d12e29c3642453ecffcb6d18bfcf5d559b915d8df8c07c", + "created_at": "2024-09-09T12:59:45.874287749Z" }, { - "epoch": 20, - "hash": "7d2ade7acd66f41f08a150eeea13a542ee06d29232344ab2f3b06f563b3c0f94", - "certificate_hash": "0a24d68267578b6673b1b85cfa87a43cd12eb321523598338b3d7044bc7bc58d", - "created_at": "2024-08-08T15:15:18.679891Z" + "epoch": 59, + "hash": "dee9e530a862e818aeabd537c2b4c4a425fcb2dac32bb23356fdf1a338612c6b", + "certificate_hash": "c91269c75bd83e852f7fcb66496edab6e3e048933d14273c013d4d5b8585a250", + "created_at": "2024-09-09T12:59:40.097465599Z" }, { - "epoch": 19, - "hash": "acd24bd423276f3379e1d421b8e5608ea6719268f312d4c60f267c3a4351be8a", - "certificate_hash": "e4a943715ce2d923d2670f50da52ad027311c675a32e2169d2eddd2cf2119728", - "created_at": "2024-08-08T15:15:15.980865Z" + "epoch": 58, + "hash": "1ebf09e41a6b30d21634a503fa5f2b3c1de310264cd1582da6e7e38f8b8dfab8", + "certificate_hash": "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198", + "created_at": "2024-09-09T12:59:37.898660025Z" }, { - "epoch": 18, - "hash": "d49b61053e7b361d613be693859a7f0fc76e833cb55f207f9477a401b7577ebb", - "certificate_hash": "e92f43f885085987fbb5e786ce82c9e315a5147c3fde9c9b780562789c24baeb", - "created_at": "2024-08-08T15:15:13.120994Z" + "epoch": 57, + "hash": "a7b2ef41d8505010ca0151b81c36d9cae76222cd97911732789520cb2a32369f", + "certificate_hash": "580dfde6fa34e3e902244f171bd0ca54b27c065d9dadbc95d4b2e2b19a73c07b", + "created_at": "2024-09-09T12:59:35.114359256Z" }, { - "epoch": 17, - "hash": "7f9b4630c5a92099f65480cf776d3bcb09dccb75b9cb7fb093139f657e97bc06", - "certificate_hash": "a79ca5e2305c2bf7cb270f647bf769db7c24d9468e2824efc22cc38247e6471b", - "created_at": "2024-08-08T15:15:10.292084Z" + "epoch": 56, + "hash": "33f2c6706eccddc3c7ac6dcaf0f2d610e2fd1e04f78e1b951233c4195ac548e8", + "certificate_hash": "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba", + "created_at": "2024-09-09T12:59:32.016617846Z" }, { - "epoch": 16, - "hash": "3f0c93b709bb8aa4c6ad5ea7150defe1d93407437270680c13e6577711a50ffd", - "certificate_hash": "6ccc77db1c6d3a3ca3b28aa1f84930e250642c8408580d09aab1d16562249d7c", - "created_at": "2024-08-08T15:15:07.465836Z" + "epoch": 55, + "hash": "300bffdd93bfacd0e0f298760e9fb7b76b1d074f20d4cc5e627f8a0061e9662a", + "certificate_hash": "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3", + "created_at": "2024-09-09T12:59:29.256953060Z" }, { - "epoch": 15, - "hash": "8fba2550056b424836e0d002495c7286e6da5f7c139c0e8a4a902c091077e50c", - "certificate_hash": "bc11a4855d7f927a39132741f543fb988e1e317f5e463b5122ee423a8349180e", - "created_at": "2024-08-08T15:15:04.665467Z" + "epoch": 54, + "hash": "a01b12bac13e43d4c6fb6563bbfc64f8b25c3f7b292b226292c20075532d6012", + "certificate_hash": "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899", + "created_at": "2024-09-09T12:59:26.458700847Z" }, { - "epoch": 14, - "hash": "cb3c3ae7d4b2c762e8458ce3d4116e557b1c6c515cbb1bd8f11e9f581125d1cf", - "certificate_hash": "0b3be1cf8a535e75f775cd30f9af98f280eabd768b652c43e42732539b61d3ac", - "created_at": "2024-08-08T15:15:01.992171Z" + "epoch": 52, + "hash": "39a696b7f19e63d535ea669a9702a4c152011be31435daca9696fc1ad56f9c91", + "certificate_hash": "68c9cf54825d99e1c7911be12e2bc143a3e329ed1eb6a675f55cf02cd4c85606", + "created_at": "2024-09-09T12:59:20.814077733Z" }, { - "epoch": 13, - "hash": "6631e07609fa01ecccc95820fc30b7d263bc203482e4f488a7ba4c4a447d709b", - "certificate_hash": "158877a782f052cc9712b890c9416959684820b3837d19f69a066c4a33d0ca81", - "created_at": "2024-08-08T15:14:59.062695Z" + "epoch": 51, + "hash": "0feead0241acdd3f79d3b043260f172e5fd84d51fb89924f5c3936cbaf703551", + "certificate_hash": "1e68875bb54cf2cf9a0ab09110175f74bab04de7a30cd799f9990ccbf267652c", + "created_at": "2024-09-09T12:59:18.651134134Z" }, { - "epoch": 12, - "hash": "35bfae371fd9a9edce150c69ffbdd2f7221b078f884e5e3c6a217a60b2b79a5d", - "certificate_hash": "ccb105fcf63f639c545e649e8c9dc8c91b4938d80d5dcd41476ad07350bb283b", - "created_at": "2024-08-08T15:14:56.271800Z" + "epoch": 50, + "hash": "a1d0a7f4cc7398f11dc2a504fbddbf67913824e1f769ed2a217273281ca2ab3b", + "certificate_hash": "60c5889afc6018d707b2a38be399497c01b44e35f47a7ee257a8b7bb5406d82b", + "created_at": "2024-09-09T12:59:14.920245151Z" }, { - "epoch": 11, - "hash": "5cb01b2b92894712914797b0e1639a93401955f6eeaeeec184545b925ce37399", - "certificate_hash": "af99d0b5b4952f5635027c8b8402d8f0cf9a934a2afc14095e74a408399cae3f", - "created_at": "2024-08-08T15:14:53.508465Z" + "epoch": 49, + "hash": "de07d4eb943580943b26f961264072322d70a7bbda01201de88b5b660e8de58b", + "certificate_hash": "8478f709685731ce68e1cca798087b397f34a2d6849c6aacee8de9d2477fcbf4", + "created_at": "2024-09-09T12:59:13.548293764Z" }, { - "epoch": 10, - "hash": "2c0e377db4a9d084940e5fd2bbd67835508794b4dbc010c7f46c339ed42e85e8", - "certificate_hash": "66bfa5f7ff507a686c88dc86737ac87540d4233ff180d9009d4f39e7f234034e", - "created_at": "2024-08-08T15:14:50.677372Z" + "epoch": 48, + "hash": "2d9190fb1339d89f4c2ed01f39c9e41af964a18aec45673dfe051ee97da52e31", + "certificate_hash": "faaac20f065e09df16ce5699bfe553b142a21b37a7e7e1fd6d6e03d7c04f4f6c", + "created_at": "2024-09-09T12:59:09.518805098Z" + }, + { + "epoch": 47, + "hash": "a41ec1988eae274a3a8437ecc69ab8f2facac741fa2916d082d23a5b415a97b2", + "certificate_hash": "8ae6981cc6e17ef561f9466380cf3442d368e1b34d706f0690382ba24cd27299", + "created_at": "2024-09-09T12:59:06.955401879Z" + }, + { + "epoch": 45, + "hash": "cd4282abe8734246c221af4eda449607ca2515ce4be87ba90fadd337124fdace", + "certificate_hash": "d3ab661818d6c7109bc5a557118e3987aaccb964d2199ef04650d3504fe67740", + "created_at": "2024-09-09T12:59:01.310473738Z" + }, + { + "epoch": 44, + "hash": "13fda655189ca00c61994fcedfdcbcde8db8f907ca928ea87eaa868f8504edd6", + "certificate_hash": "f69d6cd98a633aa01bec877fa38a3023ba43b7e868f0ac4a5be370c9c2f9ac6c", + "created_at": "2024-09-09T12:58:59.011007548Z" + }, + { + "epoch": 43, + "hash": "81a08315d612234f6b11ea54143cc9458e399aa8cf66d894a438f009e99d1a1e", + "certificate_hash": "999060ce6efe54123b205e5fa74d312f9d1e9f3c9a4b8c12cc2747b0b6157486", + "created_at": "2024-09-09T12:58:55.710679858Z" + }, + { + "epoch": 42, + "hash": "883101e95532ab70bea47fd97ac610efa2fdbdcca997df6f480d44990baac43a", + "certificate_hash": "cc4765b54dcf37ac05024486215ed0aed871f88ce7c63e4de31087d39a3078bd", + "created_at": "2024-09-09T12:58:52.796547346Z" + }, + { + "epoch": 41, + "hash": "aed121edadb4a0d2f8e6c7301d1e875d848fce11c95995b71d016782491c67ed", + "certificate_hash": "96c79d6fe626fb73aeb7e4c61083522cd23aa0b5cbfe54fcf5e7bd75ec2c066e", + "created_at": "2024-09-09T12:58:50.713441345Z" + }, + { + "epoch": 40, + "hash": "79f134930c604dc2d2f316ef186cfe68573a682592c20c9e71566be4802798bc", + "certificate_hash": "90d3c928a0b60701b6aa6ea0e8aebb646ffefa587ac270b616fc3e3b8a16e441", + "created_at": "2024-09-09T12:58:47.464325952Z" + }, + { + "epoch": 39, + "hash": "d23700b038409a7e634b0b574c7b4e306c3936cb0afbcc9c44ee15fa893f2e31", + "certificate_hash": "bb634f5aea5ceb4ece0a807375c17e6326d83102617a71267eb7eb6671041df0", + "created_at": "2024-09-09T12:58:44.247841527Z" } ] 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 ac761f2e163..b858cf6cf7f 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,134 +1,222 @@ { - "2c0e377db4a9d084940e5fd2bbd67835508794b4dbc010c7f46c339ed42e85e8": { - "epoch": 10, - "hash": "2c0e377db4a9d084940e5fd2bbd67835508794b4dbc010c7f46c339ed42e85e8", - "certificate_hash": "66bfa5f7ff507a686c88dc86737ac87540d4233ff180d9009d4f39e7f234034e", + "0feead0241acdd3f79d3b043260f172e5fd84d51fb89924f5c3936cbaf703551": { + "epoch": 51, + "hash": "0feead0241acdd3f79d3b043260f172e5fd84d51fb89924f5c3936cbaf703551", + "certificate_hash": "1e68875bb54cf2cf9a0ab09110175f74bab04de7a30cd799f9990ccbf267652c", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:14:50.677372Z" + "created_at": "2024-09-09T12:59:18.651134134Z" }, - "35bfae371fd9a9edce150c69ffbdd2f7221b078f884e5e3c6a217a60b2b79a5d": { - "epoch": 12, - "hash": "35bfae371fd9a9edce150c69ffbdd2f7221b078f884e5e3c6a217a60b2b79a5d", - "certificate_hash": "ccb105fcf63f639c545e649e8c9dc8c91b4938d80d5dcd41476ad07350bb283b", + "13fda655189ca00c61994fcedfdcbcde8db8f907ca928ea87eaa868f8504edd6": { + "epoch": 44, + "hash": "13fda655189ca00c61994fcedfdcbcde8db8f907ca928ea87eaa868f8504edd6", + "certificate_hash": "f69d6cd98a633aa01bec877fa38a3023ba43b7e868f0ac4a5be370c9c2f9ac6c", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:14:56.271800Z" + "created_at": "2024-09-09T12:58:59.011007548Z" }, - "3f0c93b709bb8aa4c6ad5ea7150defe1d93407437270680c13e6577711a50ffd": { - "epoch": 16, - "hash": "3f0c93b709bb8aa4c6ad5ea7150defe1d93407437270680c13e6577711a50ffd", - "certificate_hash": "6ccc77db1c6d3a3ca3b28aa1f84930e250642c8408580d09aab1d16562249d7c", + "1ebf09e41a6b30d21634a503fa5f2b3c1de310264cd1582da6e7e38f8b8dfab8": { + "epoch": 58, + "hash": "1ebf09e41a6b30d21634a503fa5f2b3c1de310264cd1582da6e7e38f8b8dfab8", + "certificate_hash": "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:15:07.465836Z" + "created_at": "2024-09-09T12:59:37.898660025Z" }, - "5cb01b2b92894712914797b0e1639a93401955f6eeaeeec184545b925ce37399": { - "epoch": 11, - "hash": "5cb01b2b92894712914797b0e1639a93401955f6eeaeeec184545b925ce37399", - "certificate_hash": "af99d0b5b4952f5635027c8b8402d8f0cf9a934a2afc14095e74a408399cae3f", + "2d9190fb1339d89f4c2ed01f39c9e41af964a18aec45673dfe051ee97da52e31": { + "epoch": 48, + "hash": "2d9190fb1339d89f4c2ed01f39c9e41af964a18aec45673dfe051ee97da52e31", + "certificate_hash": "faaac20f065e09df16ce5699bfe553b142a21b37a7e7e1fd6d6e03d7c04f4f6c", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:14:53.508465Z" + "created_at": "2024-09-09T12:59:09.518805098Z" }, - "6631e07609fa01ecccc95820fc30b7d263bc203482e4f488a7ba4c4a447d709b": { - "epoch": 13, - "hash": "6631e07609fa01ecccc95820fc30b7d263bc203482e4f488a7ba4c4a447d709b", - "certificate_hash": "158877a782f052cc9712b890c9416959684820b3837d19f69a066c4a33d0ca81", + "300bffdd93bfacd0e0f298760e9fb7b76b1d074f20d4cc5e627f8a0061e9662a": { + "epoch": 55, + "hash": "300bffdd93bfacd0e0f298760e9fb7b76b1d074f20d4cc5e627f8a0061e9662a", + "certificate_hash": "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:14:59.062695Z" + "created_at": "2024-09-09T12:59:29.256953060Z" }, - "7d2ade7acd66f41f08a150eeea13a542ee06d29232344ab2f3b06f563b3c0f94": { - "epoch": 20, - "hash": "7d2ade7acd66f41f08a150eeea13a542ee06d29232344ab2f3b06f563b3c0f94", - "certificate_hash": "0a24d68267578b6673b1b85cfa87a43cd12eb321523598338b3d7044bc7bc58d", + "33f2c6706eccddc3c7ac6dcaf0f2d610e2fd1e04f78e1b951233c4195ac548e8": { + "epoch": 56, + "hash": "33f2c6706eccddc3c7ac6dcaf0f2d610e2fd1e04f78e1b951233c4195ac548e8", + "certificate_hash": "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:15:18.679891Z" + "created_at": "2024-09-09T12:59:32.016617846Z" }, - "7f9b4630c5a92099f65480cf776d3bcb09dccb75b9cb7fb093139f657e97bc06": { - "epoch": 17, - "hash": "7f9b4630c5a92099f65480cf776d3bcb09dccb75b9cb7fb093139f657e97bc06", - "certificate_hash": "a79ca5e2305c2bf7cb270f647bf769db7c24d9468e2824efc22cc38247e6471b", + "39a696b7f19e63d535ea669a9702a4c152011be31435daca9696fc1ad56f9c91": { + "epoch": 52, + "hash": "39a696b7f19e63d535ea669a9702a4c152011be31435daca9696fc1ad56f9c91", + "certificate_hash": "68c9cf54825d99e1c7911be12e2bc143a3e329ed1eb6a675f55cf02cd4c85606", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:15:10.292084Z" + "created_at": "2024-09-09T12:59:20.814077733Z" }, - "8fba2550056b424836e0d002495c7286e6da5f7c139c0e8a4a902c091077e50c": { - "epoch": 15, - "hash": "8fba2550056b424836e0d002495c7286e6da5f7c139c0e8a4a902c091077e50c", - "certificate_hash": "bc11a4855d7f927a39132741f543fb988e1e317f5e463b5122ee423a8349180e", + "79f134930c604dc2d2f316ef186cfe68573a682592c20c9e71566be4802798bc": { + "epoch": 40, + "hash": "79f134930c604dc2d2f316ef186cfe68573a682592c20c9e71566be4802798bc", + "certificate_hash": "90d3c928a0b60701b6aa6ea0e8aebb646ffefa587ac270b616fc3e3b8a16e441", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:15:04.665467Z" + "created_at": "2024-09-09T12:58:47.464325952Z" }, - "acd24bd423276f3379e1d421b8e5608ea6719268f312d4c60f267c3a4351be8a": { - "epoch": 19, - "hash": "acd24bd423276f3379e1d421b8e5608ea6719268f312d4c60f267c3a4351be8a", - "certificate_hash": "e4a943715ce2d923d2670f50da52ad027311c675a32e2169d2eddd2cf2119728", + "81a08315d612234f6b11ea54143cc9458e399aa8cf66d894a438f009e99d1a1e": { + "epoch": 43, + "hash": "81a08315d612234f6b11ea54143cc9458e399aa8cf66d894a438f009e99d1a1e", + "certificate_hash": "999060ce6efe54123b205e5fa74d312f9d1e9f3c9a4b8c12cc2747b0b6157486", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:15:15.980865Z" + "created_at": "2024-09-09T12:58:55.710679858Z" }, - "c7974f3516ea3658aff02280ddd245874421bf1f6a4bbbdacb473da48638a5cc": { - "epoch": 21, - "hash": "c7974f3516ea3658aff02280ddd245874421bf1f6a4bbbdacb473da48638a5cc", - "certificate_hash": "4d40317ddb07cb64e644f3fd982b5e04c076bcdc70eb11c757bc56d045a96145", + "883101e95532ab70bea47fd97ac610efa2fdbdcca997df6f480d44990baac43a": { + "epoch": 42, + "hash": "883101e95532ab70bea47fd97ac610efa2fdbdcca997df6f480d44990baac43a", + "certificate_hash": "cc4765b54dcf37ac05024486215ed0aed871f88ce7c63e4de31087d39a3078bd", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:15:21.657369Z" + "created_at": "2024-09-09T12:58:52.796547346Z" }, - "cb3c3ae7d4b2c762e8458ce3d4116e557b1c6c515cbb1bd8f11e9f581125d1cf": { - "epoch": 14, - "hash": "cb3c3ae7d4b2c762e8458ce3d4116e557b1c6c515cbb1bd8f11e9f581125d1cf", - "certificate_hash": "0b3be1cf8a535e75f775cd30f9af98f280eabd768b652c43e42732539b61d3ac", + "a01b12bac13e43d4c6fb6563bbfc64f8b25c3f7b292b226292c20075532d6012": { + "epoch": 54, + "hash": "a01b12bac13e43d4c6fb6563bbfc64f8b25c3f7b292b226292c20075532d6012", + "certificate_hash": "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:15:01.992171Z" + "created_at": "2024-09-09T12:59:26.458700847Z" }, - "d49b61053e7b361d613be693859a7f0fc76e833cb55f207f9477a401b7577ebb": { - "epoch": 18, - "hash": "d49b61053e7b361d613be693859a7f0fc76e833cb55f207f9477a401b7577ebb", - "certificate_hash": "e92f43f885085987fbb5e786ce82c9e315a5147c3fde9c9b780562789c24baeb", + "a1d0a7f4cc7398f11dc2a504fbddbf67913824e1f769ed2a217273281ca2ab3b": { + "epoch": 50, + "hash": "a1d0a7f4cc7398f11dc2a504fbddbf67913824e1f769ed2a217273281ca2ab3b", + "certificate_hash": "60c5889afc6018d707b2a38be399497c01b44e35f47a7ee257a8b7bb5406d82b", "stake_distribution": { - "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl": 13333333334, - "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86": 13333333334, - "pool1z6vl9g50n3w58zg6glc946a44e3tqd6vvt9vk3rew0sxxus3jjm": 13333333334 + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 }, - "created_at": "2024-08-08T15:15:13.120994Z" + "created_at": "2024-09-09T12:59:14.920245151Z" + }, + "a41ec1988eae274a3a8437ecc69ab8f2facac741fa2916d082d23a5b415a97b2": { + "epoch": 47, + "hash": "a41ec1988eae274a3a8437ecc69ab8f2facac741fa2916d082d23a5b415a97b2", + "certificate_hash": "8ae6981cc6e17ef561f9466380cf3442d368e1b34d706f0690382ba24cd27299", + "stake_distribution": { + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + }, + "created_at": "2024-09-09T12:59:06.955401879Z" + }, + "a7b2ef41d8505010ca0151b81c36d9cae76222cd97911732789520cb2a32369f": { + "epoch": 57, + "hash": "a7b2ef41d8505010ca0151b81c36d9cae76222cd97911732789520cb2a32369f", + "certificate_hash": "580dfde6fa34e3e902244f171bd0ca54b27c065d9dadbc95d4b2e2b19a73c07b", + "stake_distribution": { + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + }, + "created_at": "2024-09-09T12:59:35.114359256Z" + }, + "aed121edadb4a0d2f8e6c7301d1e875d848fce11c95995b71d016782491c67ed": { + "epoch": 41, + "hash": "aed121edadb4a0d2f8e6c7301d1e875d848fce11c95995b71d016782491c67ed", + "certificate_hash": "96c79d6fe626fb73aeb7e4c61083522cd23aa0b5cbfe54fcf5e7bd75ec2c066e", + "stake_distribution": { + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + }, + "created_at": "2024-09-09T12:58:50.713441345Z" + }, + "cd4282abe8734246c221af4eda449607ca2515ce4be87ba90fadd337124fdace": { + "epoch": 45, + "hash": "cd4282abe8734246c221af4eda449607ca2515ce4be87ba90fadd337124fdace", + "certificate_hash": "d3ab661818d6c7109bc5a557118e3987aaccb964d2199ef04650d3504fe67740", + "stake_distribution": { + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + }, + "created_at": "2024-09-09T12:59:01.310473738Z" + }, + "d23700b038409a7e634b0b574c7b4e306c3936cb0afbcc9c44ee15fa893f2e31": { + "epoch": 39, + "hash": "d23700b038409a7e634b0b574c7b4e306c3936cb0afbcc9c44ee15fa893f2e31", + "certificate_hash": "bb634f5aea5ceb4ece0a807375c17e6326d83102617a71267eb7eb6671041df0", + "stake_distribution": { + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + }, + "created_at": "2024-09-09T12:58:44.247841527Z" + }, + "d5954a1b69a070ec00f80b2f0de1ac254800a9b3f9cd6820280b214408f1faf0": { + "epoch": 61, + "hash": "d5954a1b69a070ec00f80b2f0de1ac254800a9b3f9cd6820280b214408f1faf0", + "certificate_hash": "f8ca3cf68c39f45c29d12e29c3642453ecffcb6d18bfcf5d559b915d8df8c07c", + "stake_distribution": { + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + }, + "created_at": "2024-09-09T12:59:45.874287749Z" + }, + "de07d4eb943580943b26f961264072322d70a7bbda01201de88b5b660e8de58b": { + "epoch": 49, + "hash": "de07d4eb943580943b26f961264072322d70a7bbda01201de88b5b660e8de58b", + "certificate_hash": "8478f709685731ce68e1cca798087b397f34a2d6849c6aacee8de9d2477fcbf4", + "stake_distribution": { + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + }, + "created_at": "2024-09-09T12:59:13.548293764Z" + }, + "dee9e530a862e818aeabd537c2b4c4a425fcb2dac32bb23356fdf1a338612c6b": { + "epoch": 59, + "hash": "dee9e530a862e818aeabd537c2b4c4a425fcb2dac32bb23356fdf1a338612c6b", + "certificate_hash": "c91269c75bd83e852f7fcb66496edab6e3e048933d14273c013d4d5b8585a250", + "stake_distribution": { + "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, + "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, + "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + }, + "created_at": "2024-09-09T12:59:40.097465599Z" } } 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 3f7323881d4..99c8dd8f562 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,19 +1,19 @@ [ { - "hash": "d88b6c3a14fd9775204a6a26071240bab99e0d8aa00945a690b42762a6bbf72a", - "previous_hash": "a11139300a460087942144f7ffb3242e496da504dfad3884e8c7fefa02bff8ce", - "epoch": 23, + "hash": "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd", + "previous_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", + "epoch": 62, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 23, - "immutable_file_number": 7 + "epoch": 62, + "immutable_file_number": 20 } }, "beacon": { "network": "devnet", - "epoch": 23, - "immutable_file_number": 7 + "epoch": 62, + "immutable_file_number": 20 }, "metadata": { "network": "devnet", @@ -23,30 +23,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:24.491189Z", - "sealed_at": "2024-08-08T15:15:24.621350Z", + "initiated_at": "2024-09-09T12:59:46.005464441Z", + "sealed_at": "2024-09-09T12:59:46.394168003Z", "total_signers": 1 }, "protocol_message": { "message_parts": { - "snapshot_digest": "2d629e72870a6cb1f602aabc211d570193ce5c5cca0a450e23437c0bdbfdd879", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31322c3133352c3234332c3139382c34362c3132302c38342c3130302c35362c3233352c3135382c3231382c3131322c3136332c3230372c31342c3139332c37322c3230372c36362c34352c3135302c3138382c3134352c3234362c3232302c34352c3135382c35372c3230392c3137362c36305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0964e88327dc9cbead86abc58ddfc10d3bc97a20840029bd7275260603521f59", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "d9a54b252d48861c9838b418f86f23f67dd0bcd8bb305ec6f8be226cf80a3aca", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "4797988828cd13a13b340eeaf218a629a99190f24f8a9bed8e28dc9ce25b0b5a", - "previous_hash": "a11139300a460087942144f7ffb3242e496da504dfad3884e8c7fefa02bff8ce", - "epoch": 23, + "hash": "f8ca3cf68c39f45c29d12e29c3642453ecffcb6d18bfcf5d559b915d8df8c07c", + "previous_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", + "epoch": 62, "signed_entity_type": { - "CardanoStakeDistribution": 22 + "CardanoStakeDistribution": 61 }, "beacon": { "network": "devnet", - "epoch": 23, - "immutable_file_number": 7 + "epoch": 62, + "immutable_file_number": 20 }, "metadata": { "network": "devnet", @@ -56,31 +56,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:24.101289Z", - "sealed_at": "2024-08-08T15:15:24.357903Z", - "total_signers": 1 + "initiated_at": "2024-09-09T12:59:45.470454219Z", + "sealed_at": "2024-09-09T12:59:45.865126929Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31322c3133352c3234332c3139382c34362c3132302c38342c3130302c35362c3233352c3135382c3231382c3131322c3136332c3230372c31342c3139332c37322c3230372c36362c34352c3135302c3138382c3134352c3234362c3232302c34352c3135382c35372c3230392c3137362c36305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "22", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "61", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "1f823747854462ce6bf76b3bd11658f341ec5e3c3e487d548e81e05e1fd82aa0", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "7a47525577d16881e5cb0fd80d50552caef7eb980095ba25ecee6f2b8b485ee4", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "a11139300a460087942144f7ffb3242e496da504dfad3884e8c7fefa02bff8ce", - "previous_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "epoch": 23, + "hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", + "previous_hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", + "epoch": 62, "signed_entity_type": { - "MithrilStakeDistribution": 23 + "MithrilStakeDistribution": 62 }, "beacon": { "network": "devnet", - "epoch": 23, - "immutable_file_number": 7 + "epoch": 62, + "immutable_file_number": 20 }, "metadata": { "network": "devnet", @@ -90,32 +90,29 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:23.836885Z", - "sealed_at": "2024-08-08T15:15:23.969512Z", - "total_signers": 1 + "initiated_at": "2024-09-09T12:59:45.188270492Z", + "sealed_at": "2024-09-09T12:59:45.331998182Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31322c3133352c3234332c3139382c34362c3132302c38342c3130302c35362c3233352c3135382c3231382c3131322c3136332c3230372c31342c3139332c37322c3230372c36362c34352c3135302c3138382c3134352c3234362c3232302c34352c3135382c35372c3230392c3137362c36305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0140de055e84df9155ac8e556e6d69052fd8d5b6d9679e291c0b7713aaf78487", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "207cd61b42ef511abac11f5462c81dd3d16461015d7cc729b2e8ea682a1fd0ed", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", - "previous_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "epoch": 22, + "hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", + "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "epoch": 61, "signed_entity_type": { - "CardanoTransactions": [ - 22, - 779 - ] + "MithrilStakeDistribution": 61 }, "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 61, + "immutable_file_number": 20 }, "metadata": { "network": "devnet", @@ -125,35 +122,33 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:22.340545Z", - "sealed_at": "2024-08-08T15:15:22.730114Z", + "initiated_at": "2024-09-09T12:59:42.858335072Z", + "sealed_at": "2024-09-09T12:59:44.546445986Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "779" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "3621ddadfeb4e8f300e17363b2aff91148d74441392b63062eb4b241e791c699", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "c7956a0623f530cd736e51ef05978d405d39ecfe7256f3f8e5c3118c2040b9a9", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "6e24087cfd5b13ea2acfd711d2bba02d1e3cbfd01fd3fbd751b8cd89d00c481e", - "previous_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "epoch": 22, + "hash": "72624ce84ca83b2a92eafa1a4956d38c61306a1108f85e30e1c836747ff29aa0", + "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "epoch": 60, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 60, + "immutable_file_number": 20 } }, "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 60, + "immutable_file_number": 20 }, "metadata": { "network": "devnet", @@ -163,30 +158,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:21.786117Z", - "sealed_at": "2024-08-08T15:15:22.180063Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:40.228503717Z", + "sealed_at": "2024-09-09T12:59:40.491353044Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "snapshot_digest": "8f89bd27b3eed107188b1442a4a9d269f997de45e5c4cb1486847a2e145b8b7c", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "444d2822b50777c891cde4a52469d991e11a0a656bd49f1e7f3ccac2bd0ef0a6", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "09b1889a7ccde96b5e6b543ad8ca4cbcde8503b240079b68e92d498da15ce352", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "4d40317ddb07cb64e644f3fd982b5e04c076bcdc70eb11c757bc56d045a96145", - "previous_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "epoch": 22, + "hash": "c91269c75bd83e852f7fcb66496edab6e3e048933d14273c013d4d5b8585a250", + "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "epoch": 60, "signed_entity_type": { - "CardanoStakeDistribution": 21 + "CardanoStakeDistribution": 59 }, "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 60, + "immutable_file_number": 20 }, "metadata": { "network": "devnet", @@ -196,31 +191,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:21.257979Z", - "sealed_at": "2024-08-08T15:15:21.651873Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:39.826587150Z", + "sealed_at": "2024-09-09T12:59:40.089570533Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "21", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "59", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "46de0025ccd195f3c6fba70d8b6487c5d94ee711eecbdacfb4d710e29b66030d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "45c85f91d536390a50baeea352f745e174b3ec43403252d9ffad1a924b6ec525", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 22, + "hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "previous_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", + "epoch": 60, "signed_entity_type": { - "MithrilStakeDistribution": 22 + "MithrilStakeDistribution": 60 }, "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 60, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -230,32 +225,29 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:20.993955Z", - "sealed_at": "2024-08-08T15:15:21.124569Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:39.556574352Z", + "sealed_at": "2024-09-09T12:59:39.691261261Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0a8edca4fad927932b40f2382c6c6bdd268856c2677932a263748cecc1cccc83", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "3d2930126f7ee6f7cc6070383ca4df669a206614cddfa53de0b7d0b0145dde80", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "7c35f66f5ba83c7208763a29027919aca6ceef1e4c4e93f9eb57b6fffeae646f", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 21, + "hash": "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198", + "previous_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", + "epoch": 59, "signed_entity_type": { - "CardanoTransactions": [ - 21, - 749 - ] + "CardanoStakeDistribution": 58 }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 59, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -265,34 +257,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:19.784366Z", - "sealed_at": "2024-08-08T15:15:20.044548Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:37.348435710Z", + "sealed_at": "2024-09-09T12:59:37.889760383Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "749" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "58", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "0a30bfc24775a2d9a065f1471e37be60471653cf1897a1eba81edc049456feae", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "0119fb3a1218f13d9a41c969c2496753b6840008fc59103a8cb9e84505bc346f", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "7a38eaf129a96f49f215647632404fbaa8b8e9702635d6c6db04eb27c948fe5f", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 21, + "hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", + "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "epoch": 59, "signed_entity_type": { - "CardanoTransactions": [ - 21, - 734 - ] + "MithrilStakeDistribution": 59 }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 59, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -302,35 +291,33 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:19.231603Z", - "sealed_at": "2024-08-08T15:15:19.496288Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:36.822017929Z", + "sealed_at": "2024-09-09T12:59:37.210902199Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "734" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "9d285d8bd852296806dd20af7743fdfc5e3a60fab5c37f650488a8f081f7faa3", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "a91356ddf5bc6ce62e589dc002611d6265d5e21b77f513d6eb343b11fc78bb33", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "43c2ada1189224af8d82fb901666eadf6915193146a136774469ff5b8109a288", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 21, + "hash": "e339157f5c81d34c325de0205a8a59dec30bc502978c8b4fb3c658ccedcbfae1", + "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "epoch": 58, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 58, + "immutable_file_number": 19 } }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 58, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -340,30 +327,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:18.809985Z", - "sealed_at": "2024-08-08T15:15:19.074782Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:35.252443732Z", + "sealed_at": "2024-09-09T12:59:35.770979814Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "snapshot_digest": "5dec5797333aa8227beb1278173d3014484d1b52b05df10cf47604ca2baa1631", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "d3044893d7280ea480dadd70dd6865488cb16ae719a136c10b2ab5730d795aa1", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "fdfa5ebd1cf0394d0e923ae8a5b323525b287ed0f35044953004c33bd3b8ad32", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "0a24d68267578b6673b1b85cfa87a43cd12eb321523598338b3d7044bc7bc58d", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 21, + "hash": "580dfde6fa34e3e902244f171bd0ca54b27c065d9dadbc95d4b2e2b19a73c07b", + "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "epoch": 58, "signed_entity_type": { - "CardanoStakeDistribution": 20 + "CardanoStakeDistribution": 57 }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 58, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -373,31 +360,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:18.411894Z", - "sealed_at": "2024-08-08T15:15:18.674240Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:34.586494806Z", + "sealed_at": "2024-09-09T12:59:35.106621586Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "20", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "57", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "02d02c6b65451e0e0184d6d586ebf446905c419fbbdd41afade3ed9f203c8893", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "ba5279894984d07dcc36a893ffdc82f90b0229e262f725f87cbb90f1dbab210e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "previous_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "epoch": 21, + "hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "epoch": 58, "signed_entity_type": { - "MithrilStakeDistribution": 21 + "MithrilStakeDistribution": 58 }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 58, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -407,32 +394,33 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:18.144501Z", - "sealed_at": "2024-08-08T15:15:18.276975Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:34.179510423Z", + "sealed_at": "2024-09-09T12:59:34.440408302Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "89653c477ef34721fcc20bca4028353e14fdb534e68d31db310fed88cad771fb", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "8f26762f6d7837fcbde247e21112c2ad5309965c35ba102067cb6da1c0698764", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "efceff797292a5eea2f0c8c4e7107515408076c18e82b36c5f617a0354601141", - "previous_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "epoch": 20, + "hash": "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90", + "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "epoch": 57, "signed_entity_type": { - "CardanoTransactions": [ - 20, - 704 - ] + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 57, + "immutable_file_number": 19 + } }, "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 + "epoch": 57, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -442,35 +430,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:16.528458Z", - "sealed_at": "2024-08-08T15:15:16.918173Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:32.153098137Z", + "sealed_at": "2024-09-09T12:59:32.547820554Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "704" + "snapshot_digest": "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "8156e90d1e81766441d21590fa4966d853716193690e16f20aa9d0f9111f4d9e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "38a27a1eee8e0186a4a9bb6ec086a455b2edfa434527c27a1199c8fcceeffcdb", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "8bcb51cee1c1c7371607e00a1941841741a3866a9c657263b07978a08d86ed80", - "previous_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "epoch": 20, + "hash": "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba", + "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "epoch": 57, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 - } + "CardanoStakeDistribution": 56 }, "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 + "epoch": 57, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -480,30 +463,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:16.111484Z", - "sealed_at": "2024-08-08T15:15:16.370934Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:31.617098551Z", + "sealed_at": "2024-09-09T12:59:32.008270516Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "snapshot_digest": "7f9dc438897683a9fb64343f5102a38d05ceba9fa857721eb1ef0cd051231fe1", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "56", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "fceb38058bb6e5a163b1665f521f91c8a422d6f6868d68660adc02da2055ee2c", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "1f3dcf4c57bf79e291f21af4413e399e1a5fc108ecee3ac6526ea020e9279171", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "e4a943715ce2d923d2670f50da52ad027311c675a32e2169d2eddd2cf2119728", - "previous_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "epoch": 20, + "hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "epoch": 57, "signed_entity_type": { - "CardanoStakeDistribution": 19 + "MithrilStakeDistribution": 57 }, "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 + "epoch": 57, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -513,31 +497,33 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:15.715705Z", - "sealed_at": "2024-08-08T15:15:15.976252Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:31.089963428Z", + "sealed_at": "2024-09-09T12:59:31.478907862Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "19", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0a5e35c9b4c517a009a2d8b0cad9dbccde0534decb6405cfa3984a69899a55a3", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "0671b0b9dc2f5f3cec9a253fd40246361dbc1180e03bc78da4e47f9b3ef2c1c2", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "previous_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "epoch": 20, + "hash": "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9", + "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "epoch": 56, "signed_entity_type": { - "MithrilStakeDistribution": 20 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 56, + "immutable_file_number": 18 + } }, "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 5 + "epoch": 56, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -547,32 +533,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:15.450742Z", - "sealed_at": "2024-08-08T15:15:15.582759Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:29.386268509Z", + "sealed_at": "2024-09-09T12:59:29.909816033Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0be409cd72deb01f486c58d8a54e0facc859ed5d496862d07676444da342f8df", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "4b8f5d360e448ba376fab4563bd57d49c707617a382fc16f2fd5e30ea6a761de", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "c404f18a8d19722c301eb6b682514c509eeca0ebdffcdfa36c0d6518868039e6", - "previous_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "epoch": 19, + "hash": "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3", + "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "epoch": 56, "signed_entity_type": { - "CardanoTransactions": [ - 19, - 674 - ] + "CardanoStakeDistribution": 55 }, "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 56, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -582,35 +566,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:13.943040Z", - "sealed_at": "2024-08-08T15:15:14.073673Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:28.854422087Z", + "sealed_at": "2024-09-09T12:59:29.244804372Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "674" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "55", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "7da17ba95db83375f6bb8f31ead46270a9a44868c72990c434f5167925bb3764", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "926d1ad43ec2151d7954d1eac9590143f741a60d1e721aee550d53310d699d33", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "3f4710e4e33dbf5737f52bf2bfd1817d35492bf2e0c238e36b317e7938d20ace", - "previous_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "epoch": 19, + "hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", + "epoch": 56, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 - } + "MithrilStakeDistribution": 56 }, "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 56, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -620,30 +600,33 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:13.251756Z", - "sealed_at": "2024-08-08T15:15:13.511170Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:28.327599145Z", + "sealed_at": "2024-09-09T12:59:28.717577603Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "snapshot_digest": "45ccdb65ee7b4090511eca72232566d33f8d2c3c1c0db73cca2667cda5621a92", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "3180d9eb8f57a4fc228952d1f39efe97de7f3d4884afc0d57e4e6e2cebc6063e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "e489bfc55493fff216a2515158e999757a9a196190caaf2c151f279352965cc6", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "e92f43f885085987fbb5e786ce82c9e315a5147c3fde9c9b780562789c24baeb", - "previous_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "epoch": 19, + "hash": "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b", + "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", + "epoch": 55, "signed_entity_type": { - "CardanoStakeDistribution": 18 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 55, + "immutable_file_number": 18 + } }, "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 55, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -653,31 +636,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:12.854685Z", - "sealed_at": "2024-08-08T15:15:13.115843Z", + "initiated_at": "2024-09-09T12:59:26.588899743Z", + "sealed_at": "2024-09-09T12:59:27.118499316Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "18", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "snapshot_digest": "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "1761c39c79983770b169b75caac51d02c7de2e0cc9ea846733d96e84b2a3481b", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "df267af69f18c03266bf982897f5076123a3df8d00a9f7b5a583e4d6f82bf089", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "previous_hash": "55c9d1616a06a38cb274629f3de576b10b57d696da7494b4d7a2b425831e0772", - "epoch": 19, + "hash": "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899", + "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", + "epoch": 55, "signed_entity_type": { - "MithrilStakeDistribution": 19 + "CardanoStakeDistribution": 54 }, "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 55, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -687,16 +669,18 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:12.587392Z", - "sealed_at": "2024-08-08T15:15:12.720140Z", - "total_signers": 2 + "initiated_at": "2024-09-09T12:59:26.057930060Z", + "sealed_at": "2024-09-09T12:59:26.450883680Z", + "total_signers": 1 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "54", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "93cf55438e7059b402896b17e441b65edfede7f6b2ce47afdcd6af73ace57547", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "8a5226ef12d80a9688ad399672faeae667b965c7ef165f288cd9b973159d19e3", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } ] 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 88b73ee306d..e8b0eac8202 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/certificates.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/certificates.json @@ -1,15 +1,1665 @@ { - "0292a8f2fd15a1e63036c2f37ca6b51e56f428c6fd53067601da70adbd7c6510": { - "hash": "0292a8f2fd15a1e63036c2f37ca6b51e56f428c6fd53067601da70adbd7c6510", - "previous_hash": "", - "epoch": 10, + "01879078eded273b160b566424fab3b78c56cebcd4d0653148cf6ab60ee54b72": { + "hash": "01879078eded273b160b566424fab3b78c56cebcd4d0653148cf6ab60ee54b72", + "previous_hash": "e1bddee89293b9d7b73c7b07a2ae3d131a6b8c3aa0ac5354e02a6679bcca7353", + "epoch": 24, + "signed_entity_type": { + "MithrilStakeDistribution": 24 + }, + "beacon": { + "network": "devnet", + "epoch": 24, + "immutable_file_number": 7 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:58.600595063Z", + "sealed_at": "2024-09-09T12:57:59.256154661Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3233332c3230392c3139352c3136372c3234342c32312c31372c39302c3131372c35382c34342c3135332c38362c3139362c38392c3232302c3130352c3230352c3232322c35382c3231362c3131342c3136332c3232382c37392c3231342c3135302c38372c3233392c38372c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "b36d4aaa7281d1b40c250ea0244ae83923cfb7a0ae37c269ef10a550e847f987", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3136392c34302c32362c32372c3139352c3139332c3138312c36352c37322c3234392c3139362c36392c34362c3233382c31312c3233302c3230302c302c38312c34372c3233392c3232332c35312c35372c34372c3130362c32392c3131312c3134372c3131322c3135335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137392c3134322c31312c3139302c3132392c3235302c3138342c36372c33312c34352c3231392c38392c3138302c3137362c33312c3230312c3131382c3137312c3233392c35312c36352c3233352c32352c3131352c32332c392c33312c3139332c34382c3231372c3232382c322c3138342c3130382c3232332c3234382c3137332c33372c3130342c3138322c3138382c3231302c382c3133302c3138302c36352c3134372c3234305d2c22696e6465786573223a5b302c312c31302c31392c32392c33312c34322c34342c34362c35312c37322c37372c38302c38332c3130335d2c227369676e65725f696e646578223a307d2c5b5b3137332c36382c3136342c37372c392c3231312c3233322c3136362c3232302c34352c32302c3230342c3138382c33382c3233362c332c3234342c3130352c3139362c3138322c3131392c3233392c3233322c3136392c3135372c3231352c3138332c3230332c3233372c3138392c3130342c39332c3131322c382c3134332c3231332c3130302c39312c35362c3137382c37302c38372c34382c39332c3130392c3135322c3231322c3131372c31362c39372c35342c302c39312c36392c36312c3136322c3231332c33362c37382c3230332c36342c38362c3232392c3137302c3234372c33332c3133352c3133312c372c3133372c3231322c3230342c36312c31352c3130312c3232372c37352c39342c3230312c342c3130362c3131362c3136332c34322c38392c3232302c322c3132342c3137392c3135332c3134362c39352c3135392c3136332c35352c3139305d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3132382c31322c3233382c3136332c3135302c33342c32332c3139302c392c3235322c38312c3234372c37322c3232322c362c3234382c3132352c36392c3139302c3232362c3135382c37352c3138342c31372c3232302c3136342c3133342c3232392c3130342c3135352c3138352c3132352c3132312c3138322c3232322c31392c3135322c3139332c36382c33322c3135352c332c3234362c3131352c37362c38342c3130312c35315d2c22696e6465786573223a5b322c342c362c372c382c392c31312c31322c31342c31352c31362c31372c31382c32302c32312c32322c32332c32342c32362c32372c32382c33302c33322c33332c33342c33352c33362c33372c33392c34302c34312c34332c34352c34372c34382c34392c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37332c37342c37352c37382c37392c38312c38322c38342c38352c38362c38372c38382c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138352c3135382c332c3134392c322c3138392c3134392c3132312c3234362c3232302c3137352c3139322c3130362c35302c33332c3233392c37392c3135312c322c33302c3233382c31332c36352c36362c322c33362c3137362c34342c3133372c31322c3235352c3137352c3232342c3135392c362c34382c37322c39362c37342c38362c3133332c362c3134332c35392c3136302c3230372c33392c34392c382c352c36382c3135302c3131382c3138342c31382c32362c3230302c3130372c34382c34392c372c3135372c3132382c3130312c3231342c31362c372c3139342c362c3132392c3232322c39382c3230362c3230322c3136322c3232372c342c3130332c3133372c3231332c3233322c3130392c3233352c3131372c3139312c3131352c3231322c3138342c34382c3134302c3137372c32342c3134352c3234312c3134312c3138335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd": { + "hash": "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd", + "previous_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", + "epoch": 62, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 62, + "immutable_file_number": 20 + } + }, + "beacon": { + "network": "devnet", + "epoch": 62, + "immutable_file_number": 20 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:46.005464441Z", + "sealed_at": "2024-09-09T12:59:46.394168003Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "d9a54b252d48861c9838b418f86f23f67dd0bcd8bb305ec6f8be226cf80a3aca", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134312c322c38352c3135312c3133352c39312c3134372c3135342c3133352c34372c3133362c3230382c36332c312c3230382c3138362c31302c33392c3139312c3137322c38302c3138382c3134312c33392c3133322c3230362c3139322c3235332c37332c34322c3139322c33342c3134302c38342c3231312c3232352c3131302c3133382c3235332c3132362c3132332c3232332c37332c302c3232362c37392c3132382c3139375d2c22696e6465786573223a5b302c312c322c342c362c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33392c34312c34322c34332c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36312c36352c36372c36382c37302c37312c37332c37342c37352c37362c37372c37382c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c322c35312c37362c3233342c37312c3131302c3133382c3234312c3232392c37362c3234372c362c3136362c3234372c3130352c3135382c39322c36392c31312c3234382c3138322c33332c32372c3133372c3136362c3232352c3230312c3135362c3234372c3230312c3138372c3138372c3133312c36362c3131342c3230372c3234322c36392c3130372c3231332c35302c3233342c35382c32392c3233382c362c31332c31342c3138352c35382c3139382c33312c3134372c3232312c33332c3232322c33342c37362c3230302c3133332c3233312c3232372c32332c352c3139312c3139372c35302c38312c3235302c37302c3137382c3136382c3139332c3232382c3134352c3134372c3135322c3136322c3130322c3136322c3234352c3231302c3230392c38392c3132352c3136342c3230332c32362c37372c37362c3130342c35312c3131382c34362c34395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c33322c3136342c32362c38362c3134322c33392c3232382c35322c39312c36352c3130382c3230322c35372c32382c3134312c3130392c38352c3138382c362c3232332c3136352c3139352c38302c3135332c31342c37362c3133362c33352c3136302c3230382c33365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "05d19d2376a82b913641d4b7fe833934f8a63cb7f99625901c3f32cf3d4c45f4": { + "hash": "05d19d2376a82b913641d4b7fe833934f8a63cb7f99625901c3f32cf3d4c45f4", + "previous_hash": "01879078eded273b160b566424fab3b78c56cebcd4d0653148cf6ab60ee54b72", + "epoch": 25, + "signed_entity_type": { + "MithrilStakeDistribution": 25 + }, + "beacon": { + "network": "devnet", + "epoch": 25, + "immutable_file_number": 7 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:01.604479269Z", + "sealed_at": "2024-09-09T12:58:01.999691175Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c36382c39352c39382c3134362c3132362c3131372c3139332c3132352c3131342c34322c3135372c36322c332c3135322c32372c38362c3230372c3132342c382c3130372c312c39312c32322c33382c3130352c33352c3233372c3136372c3138372c3234392c3130325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "279aaaf273884044a0785b8e82a732ae167ffb93efc81d904517d164adade3fd", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3233332c3230392c3139352c3136372c3234342c32312c31372c39302c3131372c35382c34342c3135332c38362c3139362c38392c3232302c3130352c3230352c3232322c35382c3231362c3131342c3136332c3232382c37392c3231342c3135302c38372c3233392c38372c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133312c3230312c38302c3230392c3132342c3133312c39392c3136362c37382c3136322c3138362c32372c3231392c34352c32382c3136342c39352c3139312c3134302c3133372c3135372c36332c312c39392c3234372c38352c31372c3131302c382c3135352c3234352c38322c3234322c36312c3130362c3234332c3133332c3232352c3137372c3136322c3133382c36352c3230312c392c3133332c31392c3234302c31345d2c22696e6465786573223a5b302c312c322c332c342c362c382c392c31302c31322c31342c31352c31362c31372c31382c32302c32312c32322c32342c32352c32372c32382c32392c33302c33322c33332c33342c33352c33362c33382c33392c34302c34312c34322c34342c34352c34362c34372c34392c35302c35312c35322c35332c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36372c36382c37302c37312c37322c37342c37372c37382c37392c38312c38322c38332c38342c38352c38362c38392c39302c39322c39342c39352c39362c39372c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c3232392c38332c3138382c3233392c3132312c3139392c3233362c35352c3130342c3133372c3233322c3134312c39362c3137372c3233332c3131312c32372c3131362c34392c3131372c3234382c3134372c3131352c3138322c31382c3137352c3233392c3138352c33342c3231332c3134302c3136322c34352c3235342c37362c33372c39352c3137302c38352c3139302c33342c35352c3234312c3139312c32322c3132312c3233352c31352c3136352c39372c37332c33312c3235302c39342c3137302c3137332c3232352c3134342c3131392c38372c3231392c36362c3133392c32332c3133322c35352c382c3134302c36302c3135332c3231352c3233322c3235342c322c36302c37372c3234302c3138352c3131322c33392c32332c3234352c3230372c3230392c31372c34312c36302c3233342c3230372c34362c3138302c3233392c3137372c38342c3233385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137372c3136362c32342c3235312c3135382c3231352c37362c32302c36332c37382c38352c3136322c36332c35302c3230362c31322c3233352c33312c32382c3139312c3139382c38392c3133312c39312c38352c3138362c36302c34362c31352c3232392c3135342c3135325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "06b4bf0a413b8f066c82b6d1cece32dcd843a03133c1d0d224f70ef67787174a": { + "hash": "06b4bf0a413b8f066c82b6d1cece32dcd843a03133c1d0d224f70ef67787174a", + "previous_hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", + "epoch": 45, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 45, + "immutable_file_number": 14 + } + }, + "beacon": { + "network": "devnet", + "epoch": 45, + "immutable_file_number": 14 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:59.140763303Z", + "sealed_at": "2024-09-09T12:58:59.401787519Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "32ead639d50fcef83d620f4f30a173e2f451675db04c8e104a1af746de2156a4", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137332c3130382c37382c3230302c3130392c32372c3139372c35362c3138372c3230302c34302c3131372c3138302c3232392c3139312c3130372c3230322c3135382c34332c34312c37332c3230302c3134342c3136302c3131302c3139322c3138372c32372c3135302c33372c3131382c34342c3131392c33312c3230332c3231352c3133312c3134392c31362c3137302c3133332c3136322c3231312c35332c3136372c36302c3231322c3131365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31342c31382c31392c32312c32322c32332c32342c32362c32372c32382c33312c33322c33332c33342c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35312c35322c35332c35342c35352c35362c35372c36302c36332c36342c36352c36372c36382c36392c37312c37332c37352c37362c38302c38312c38322c38332c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135322c3231352c3231302c3231382c3136312c37302c3136352c3132352c3136382c3234342c3134322c3137382c3133302c3134382c3132302c36382c3230352c3230382c3234302c3134312c3232362c3132372c3231342c3130342c3133302c3230332c39382c3230332c33352c3132312c31392c31342c3138352c3232332c37312c3135302c3131392c39352c3135342c39382c3137392c3130362c3233332c36332c39372c3133302c38302c3130362c352c3233382c31342c36312c36362c32302c3139302c37352c3234312c3133302c38322c3136362c3133302c312c3135302c3230342c35332c35332c3135332c3137372c33312c31342c34332c3130362c3235332c392c3130372c3138352c3136352c3231332c3139382c33322c3233372c3232342c35392c34302c3134392c38342c3230312c3131342c3132392c3234392c32372c36362c34372c3131332c3235352c3233355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c34332c3130372c36322c39332c3134322c3137332c3138342c3138302c3132332c3133392c36392c33382c3137372c3134302c3134342c35322c3135312c35332c31372c3133322c39382c3231322c3230372c3139332c3132312c312c32342c33322c31342c3139332c3234345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "0b751dba41d63a0771578176044df8634418c6ef06eff541c9d87b1ec5fc7e6b": { + "hash": "0b751dba41d63a0771578176044df8634418c6ef06eff541c9d87b1ec5fc7e6b", + "previous_hash": "a25e25fe1e22b13420b390233d763008a0ed390616a295c170a8fbb65202f0c7", + "epoch": 39, + "signed_entity_type": { + "MithrilStakeDistribution": 39 + }, + "beacon": { + "network": "devnet", + "epoch": 39, + "immutable_file_number": 12 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:40.704229604Z", + "sealed_at": "2024-09-09T12:58:41.609533457Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233352c3133362c37322c37312c3234342c3130342c3130382c3137322c3138392c36302c37342c3132342c3235332c3230382c35312c3138302c342c3133352c382c3134362c3130312c3138312c3131362c3232382c3130342c3139372c3136392c3139312c3136362c35342c36332c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "f101b0d8acb35c6bedf8aca03a63188d9a4764c4c776c4da3f0b24e0af8e2e47", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139322c3131372c3234382c342c3235302c3137302c3139352c31382c33342c33342c3230342c3132302c3235332c37352c3230392c34332c3232322c35392c3232332c3138312c3230342c3232382c3137322c31372c3231382c38332c3130392c36322c3235302c37382c352c35305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136372c3235332c3133392c3232332c31342c31312c352c33302c3234372c3231332c3233342c3231302c3234332c33322c3232352c3136302c33362c39372c3137312c37322c3130392c3235332c3235352c3136392c3136392c3234312c3135322c36342c38332c3231342c37312c3131372c3130312c3136392c3139382c35352c39372c35392c3137362c3232392c34302c3232322c3133342c3139352c3138322c3135332c3233342c3134325d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32362c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c34302c34322c34332c34362c34372c34382c34392c35302c35312c35322c35332c35352c35372c35382c35392c36312c36332c36342c36352c36362c36372c36382c36392c37312c37332c37342c37352c37362c37372c37382c37392c38312c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130302c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133362c35312c3138302c3139332c382c3231332c33332c33362c3135342c3230382c38372c36312c3134312c3233312c32302c3232372c3138352c3234382c36332c3131382c37382c38342c3230342c36332c32322c33322c3232362c3131312c35332c35392c3136392c3230362c32382c3230392c3135302c38372c3230392c33352c35322c36382c3136392c38362c3235342c33352c3232362c3139312c3131322c32312c32322c3137372c3133362c38382c3135382c3131382c3133352c35392c3233362c3230362c32392c342c33362c3139392c3134342c37352c3139372c3232362c3139312c32392c3133362c36372c3132322c37342c3135332c3136372c3135322c34332c34392c3139382c3135362c34392c3230382c3134312c3137362c3139382c3235312c3134302c3234392c3138342c31392c3131342c38302c3138322c39372c31332c3231342c36375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232362c3130312c302c382c3232342c3231312c3132322c34352c3230392c3135372c37352c342c3136382c3130372c3235322c392c3230392c3133382c3130342c3235312c3232342c3130372c3235342c3139322c3135362c37332c3139302c33352c38342c332c3233392c3139365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899": { + "hash": "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899", + "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", + "epoch": 55, + "signed_entity_type": { + "CardanoStakeDistribution": 54 + }, + "beacon": { + "network": "devnet", + "epoch": 55, + "immutable_file_number": 18 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:26.057930060Z", + "sealed_at": "2024-09-09T12:59:26.450883680Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "54", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + } + }, + "signed_message": "8a5226ef12d80a9688ad399672faeae667b965c7ef165f288cd9b973159d19e3", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3139332c35352c34302c34392c33362c3231392c3233382c3139372c38382c31332c372c34322c39322c38382c3133302c3235312c33372c37312c32342c36392c3138382c3235312c36302c3132362c31392c39322c3235322c3133322c32322c3233362c3231302c3133352c3138382c32302c3233372c32322c3137312c3132342c33392c3235332c3135372c32382c3131392c3137362c3138352c3137382c3133345d2c22696e6465786573223a5b302c312c322c332c362c382c392c31302c31312c31322c31332c31352c31372c31392c32302c32312c32322c32332c32342c32352c32392c33302c33322c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35322c35332c35342c35352c35372c35382c36302c36312c36332c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38382c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134302c36382c3138392c3139322c3235302c3131382c3133302c3130322c3132342c352c3131352c37322c36352c3132382c3130342c3235312c33352c3130322c3233382c3231312c3136352c3137332c3135352c3134332c3231302c37392c3136322c3139312c3131302c34332c3232392c3135302c3138362c32302c3232342c39392c3139372c34352c34332c352c36342c32392c3131382c3139322c39382c33302c36342c3132352c382c32362c33352c35342c3134312c3136382c31392c3232342c36342c3131302c3233372c31342c34342c34312c34362c3130302c3133392c3135392c3135352c34372c352c3235332c3231322c39312c35302c3134392c32332c3231332c36302c3133392c3137322c382c3230352c37382c3234362c3234362c3138342c3133342c3137392c32382c37312c3231372c3134322c3137332c3233392c34302c322c3136395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234342c3139312c39362c342c3132392c36332c302c31322c3139312c34392c3230342c37382c3136332c3231372c3131352c3130312c3138302c3135302c3234372c36352c3130372c36342c3234312c33332c3132302c3134352c3134312c31322c38352c392c3131342c3233325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "0df5f7ffabd82b31942966f6f496059483caf8dfe889d36137a81cf19b205315": { + "hash": "0df5f7ffabd82b31942966f6f496059483caf8dfe889d36137a81cf19b205315", + "previous_hash": "e1deb3c58329743012c1e944a5f6931af79a4fd9eef212e00b1a4a0e48466736", + "epoch": 13, + "signed_entity_type": { + "MithrilStakeDistribution": 13 + }, + "beacon": { + "network": "devnet", + "epoch": 13, + "immutable_file_number": 3 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:27.836820179Z", + "sealed_at": "2024-09-09T12:57:28.228212611Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b36382c3134362c33302c36382c3133372c31342c3234342c3131312c39332c3231382c37362c3135302c3233322c3231392c3235312c3234332c37302c37312c3132372c3132392c3232392c39382c31362c36312c392c3132312c3233372c3231382c3232312c3231382c3132342c38395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "98498c1c3be19d41326fbbeb534f515c2e394ef7966b78ef3c7690b728b3384b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3235312c3138332c39302c34322c3130362c3134322c3232382c3232392c34332c3135382c34312c36322c39362c3230392c3231372c3139332c3231352c36342c3234312c39382c3134362c3131352c31332c3233352c37392c3233332c3234312c3136362c3138342c3134332c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136392c3135392c32332c3138332c3235322c3131382c3133362c32352c3232332c3133302c3133352c32312c3233322c3136302c3138322c32322c36362c3134372c37312c31302c3135392c3130352c36342c3138372c37372c342c3138372c38362c3232372c3231332c3232372c3138352c3137302c3132362c3230392c3230392c32362c33322c39342c302c3234392c31372c3231342c342c3137312c34302c3135392c3234355d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31392c32302c32312c32322c32332c32352c32362c32372c32392c33322c33332c33342c33352c33362c33372c33382c34302c34312c34332c34352c34362c34372c34392c35302c35312c35322c35342c35352c35362c35372c35382c35392c36312c36332c36342c36352c36362c36382c36392c37302c37312c37322c37342c37352c37372c37392c38302c38312c38332c38342c38352c38362c38372c38382c39302c39312c39322c39352c39382c39392c3130302c3130315d2c227369676e65725f696e646578223a307d2c5b5b3134322c3135382c3233382c3131372c3133352c3231392c3230372c3130302c3234302c3134302c3138352c3138362c36302c3230342c37312c3133352c3230392c34312c32392c39342c38332c39382c3132302c3131382c36382c3137352c3135362c392c3131352c3139382c3130352c3135392c3134302c36372c3233362c3135302c38342c3135372c3232382c3230362c3132312c3136352c35362c3234332c3139392c3231342c3233352c38322c31372c31392c34372c36342c3230362c322c35352c3134322c392c3136362c3135322c36382c38352c3230312c3138392c3134312c34392c37342c3135362c3130392c36382c3230372c3230362c362c3130362c3231302c3132372c35372c38372c342c3233372c3133302c33332c32362c3136372c3232372c3134362c33362c33392c3137382c35322c36342c33352c33322c31332c322c37302c3139375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b372c39362c36352c3138392c3230372c3233382c3138342c3136352c35342c32372c3132342c3230322c36392c31382c3131392c3232322c39312c32302c3130392c3133392c3137372c3138382c38302c3233302c36392c3230352c3232362c362c35342c312c39312c3233335d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "101b59eb719edf64156551ea64817b68c7a65dd78a276682ab2451da0481d749": { + "hash": "101b59eb719edf64156551ea64817b68c7a65dd78a276682ab2451da0481d749", + "previous_hash": "d7e1b05877169e5b12f35ad217e74190e4e435d53c353803fb7a6053c09b5e85", + "epoch": 19, + "signed_entity_type": { + "MithrilStakeDistribution": 19 + }, + "beacon": { + "network": "devnet", + "epoch": 19, + "immutable_file_number": 5 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:44.567591774Z", + "sealed_at": "2024-09-09T12:57:45.092589489Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31332c3234322c3230322c3134352c35352c34372c3133332c3130392c32392c35392c3232302c3136352c3132312c33342c3130372c3234372c3136312c3137342c3130372c38382c3132322c31372c3136362c3137332c34312c3235352c3234382c37372c3130362c3135362c3231362c36365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "e68f461a84a8329c95c28912b7e05e3eb67d82f696f066922d5998d22fb0e92b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133302c3133332c3230382c35372c3130372c3130312c3232312c3233312c3139322c3234332c3131312c32372c352c31392c36372c33342c32362c3232332c3234322c3231342c39332c36332c3135312c3132382c3137392c36342c34382c33362c3137362c3135322c3234312c3134325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c3139332c36322c3232302c3138302c39302c3136342c34352c3136312c3135322c3235352c3232322c3233382c3130332c3131382c3139382c3234342c35342c3230332c3231312c3233352c3133322c3131352c3232372c3135302c32372c36372c37392c3130302c3131352c3231382c3137312c31312c32362c3134392c3235312c3139392c3233302c3135372c33362c31362c3232302c3234342c3232302c3139372c342c36312c3230315d2c22696e6465786573223a5b302c312c322c332c342c352c392c31302c31312c31322c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c33302c33322c33332c33352c33362c33392c34302c34312c34322c34332c34342c34352c34362c34382c34392c35312c35322c35352c35362c35372c36312c36322c36342c36352c36362c36372c36392c37312c37342c37362c37372c37382c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133342c3230322c3135382c3130362c312c3231372c3230312c3235342c3235342c3233322c3133302c35372c3133302c3132352c352c3139382c3230302c3230372c3230382c3130332c3132332c38302c34332c34332c36382c3231392c39302c35302c3138302c3233372c35372c3232362c3231302c3134332c3139352c3139312c3230392c31312c3130392c36342c3136342c3130372c33362c3235332c3139312c3131332c3233352c38392c31362c37352c35352c3132342c302c3131302c32372c37332c3137372c3231372c3131302c3235332c3231372c32302c3231392c3130322c3136392c3135362c3131382c3130392c3132362c3139342c3132302c3132352c36372c3230362c36362c3234322c322c39312c3131302c3230352c3138332c3130382c3135342c36372c3232342c3137332c3233362c3136332c37352c3230322c3230312c3132322c33382c31342c32312c35325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35392c3130362c3230372c36322c392c3232372c3131372c32372c3136372c3130302c34352c3230332c3232302c3133392c32352c36302c35362c37352c3134382c37332c39372c37322c3230352c3234362c38322c3138312c3133312c3139392c3131342c3130312c3137392c3130335d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "11a168fe6f5b95fbd27e84d4484c8f8a3e3cbd60945cf15e0b379a24d531e5d2": { + "hash": "11a168fe6f5b95fbd27e84d4484c8f8a3e3cbd60945cf15e0b379a24d531e5d2", + "previous_hash": "20ba8fe4767689217045e8e58fc3b30051abc5725d6e18548c679788109ca86b", + "epoch": 30, + "signed_entity_type": { + "MithrilStakeDistribution": 30 + }, + "beacon": { + "network": "devnet", + "epoch": 30, + "immutable_file_number": 9 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:15.423505209Z", + "sealed_at": "2024-09-09T12:58:15.817324520Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34382c38352c3233362c3134332c3134322c3133312c31322c372c36342c3135312c3131352c3231372c3235332c34342c3135392c35372c35382c32372c3131312c3131322c3131302c32362c37372c3233332c3135332c3135352c31382c33302c38362c3235322c3134352c3137325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "e6a11a8fb5ff84b8b6dd399dca7d3d08e68f092b5fe9c5f11d455406b907edb3", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37302c3233302c3136342c31302c3234302c3235332c3131362c36302c38372c39332c3231382c31302c34322c3230302c31302c322c3133392c34382c382c3136322c37342c37332c3135382c39342c39382c3134352c3133332c35362c3136362c3130302c302c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133352c33322c34372c3138382c3130332c3233302c3231382c36302c3134342c3131302c3132312c3133362c3139352c34332c3137322c38382c3137392c33312c37312c33352c35382c3137392c3132352c3231332c352c322c37312c3136392c3134312c35362c3131382c3231372c3130392c3234392c3235342c3136392c35382c37352c3132312c31352c3233312c3137382c3132332c3131332c32372c3134352c31302c3130315d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31342c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33382c34302c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c36302c36312c36332c36342c36352c36362c36372c36382c36392c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38372c38382c38392c39302c39322c39332c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135322c38332c32342c37342c3231382c32332c31382c3131362c39302c3232372c36392c3232302c3139372c38382c38352c3139362c34302c3137362c33392c3137312c35392c38332c34382c3134382c3130342c312c3231372c34302c37352c3134372c36342c3139352c3233302c3138392c32352c31352c302c3134392c3132372c3137352c38362c3130382c31312c37362c3138312c3131322c3139302c3230372c342c3132322c3131332c3136302c32342c33392c3135312c3234322c32302c3138362c38332c39352c3234312c35382c3231332c3231382c36382c39322c31362c3137342c3137302c38302c3139322c32362c3131332c3132342c31332c3232362c3234342c39362c3234312c31342c39302c3136362c3138322c3130302c34382c3133332c3132322c3235302c35392c34392c3234372c36302c3135302c37342c3233342c3230345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32382c3234362c3235312c32312c3132332c3233342c3131362c3136342c382c35322c3232312c3132302c31372c352c302c36372c3232392c33372c3138362c3230332c34382c37302c39322c392c39332c34362c3233362c3234362c3137392c35322c3233302c3235325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "13a3061ff6bb00bb08342782cd82378d4b260c536e9aa78451d0711424429179": { + "hash": "13a3061ff6bb00bb08342782cd82378d4b260c536e9aa78451d0711424429179", + "previous_hash": "8523a61911ac4fd6713b3bfe6dfd01d5de855181cc844bc2bdc23c3e3cccd0e4", + "epoch": 36, + "signed_entity_type": { + "MithrilStakeDistribution": 36 + }, + "beacon": { + "network": "devnet", + "epoch": 36, + "immutable_file_number": 11 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:32.246182835Z", + "sealed_at": "2024-09-09T12:58:33.169717238Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132322c3134382c3139332c3136342c33382c3133382c37352c3130372c3133392c32372c3138382c3234392c3137352c3234382c3130322c39322c3137362c3130392c3234342c3232332c32352c33372c31352c3139322c38362c33382c3136372c34352c3130302c3136392c38332c34315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "1a17edb46dd36a609e053e7ba197a42ec7d3a07f5c047fefbe73836876dce141", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c3131302c3233362c3134382c3130372c3134302c3230312c3230392c3234342c37322c33312c3134392c3137352c38362c35382c3132312c3231312c3138352c3235322c3139322c38362c3131392c32332c31312c372c3137362c32392c39372c36382c36382c3139332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3131302c36392c36392c39372c37382c37362c3132302c3130352c3138322c3232362c36332c36342c31322c33352c38372c3139352c3139302c37332c3132312c3234352c3232332c3137342c3133302c3131322c3139382c38382c3230332c3232342c3134342c3136392c3134382c36302c3136342c3235312c3135392c34332c3234382c392c3233312c3235312c3138312c3230312c3231302c31362c39332c3136352c36395d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32372c32382c32392c33302c33312c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35342c35352c35362c35372c35392c36302c36322c36332c36352c36362c36372c36392c37302c37312c37322c37332c37352c37362c37372c37382c38302c38312c38332c38342c38352c38362c38372c38392c39302c39322c39332c39342c39352c39362c39372c39382c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136372c3232352c34322c3233312c3135302c3133322c34352c3131362c38302c3131322c35352c3139342c3134392c3137372c38342c3139342c39352c36332c3134392c3139382c3134382c37382c3136312c3135382c3234352c37322c3132342c31302c39322c3130332c39382c3134382c3138322c38352c34382c3135342c33362c3134342c3232392c32312c3138342c35312c3130372c3234372c3232342c3231302c37372c3130372c352c3133312c3232342c35302c3234312c3234302c3133302c3230382c31352c36322c3137322c34332c34332c302c3130302c3139372c36332c3230362c39342c3138372c3135322c3234302c3232322c31352c3232362c38372c3235342c3134312c3134382c3137302c3234332c3234312c39342c3137372c3134312c3131332c34302c3233342c3139322c3230332c3139362c33332c3135372c31312c3231312c3231342c36322c39365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b36342c38352c3233362c3133332c38322c3130352c3137302c34322c3231322c39322c33332c3136352c36382c3234332c3232302c35382c3132332c3232342c3138362c3134392c39312c3137362c33392c3230302c34332c3139332c3135392c3231372c3137392c3231362c34352c3137365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "1e68875bb54cf2cf9a0ab09110175f74bab04de7a30cd799f9990ccbf267652c": { + "hash": "1e68875bb54cf2cf9a0ab09110175f74bab04de7a30cd799f9990ccbf267652c", + "previous_hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", + "epoch": 52, + "signed_entity_type": { + "CardanoStakeDistribution": 51 + }, + "beacon": { + "network": "devnet", + "epoch": 52, + "immutable_file_number": 17 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:18.252893282Z", + "sealed_at": "2024-09-09T12:59:18.644033661Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "51", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + } + }, + "signed_message": "85956805bc1e052df6c991e88fc6aa20a2131e6fb19abdaa574269e880a0e942", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c33382c3131392c302c39392c33392c3131352c34372c3130392c3133342c37322c38352c37362c3139372c3131342c3133392c32302c3130392c36322c31302c3130332c31302c37342c34302c32332c3134392c39342c33312c3234342c3130302c37342c39362c3139322c342c37312c3232352c3133312c31322c3232382c3130302c36392c33322c3132362c3233382c3230362c3134342c33302c3132325d2c22696e6465786573223a5b302c322c332c342c352c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32322c32332c32342c32362c32372c32382c32392c33312c33322c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34372c34382c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38332c38342c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136362c3132352c37322c3131322c33332c3133322c3130322c3231352c37322c3231342c3233342c32302c37352c3231392c37332c3230362c3132382c33332c3232332c3136382c3230382c3133372c32372c39352c3135352c37312c3134332c3230312c32332c3235342c3139372c36342c34362c39342c38332c3231372c3138352c38332c3235312c33392c3130382c35382c34312c37392c34342c3234362c352c3137312c31362c3134382c3230342c3232392c34302c31312c31332c3132332c3136352c3131342c31312c3233352c392c3130392c3233312c3234332c3132362c3234312c38352c3233322c3134382c34362c35372c3233352c34372c3233302c3139382c3231362c3135302c3130342c3135332c31362c3138342c35362c32392c37372c332c302c33372c31332c32362c31302c3139302c31342c31322c342c3131382c3233335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32342c31392c35392c3136342c38342c3135312c3133392c3130382c35372c36332c33332c34342c3130332c39372c3230362c3132312c33372c37342c34382c3138372c37392c3133392c3235302c3234392c3135362c382c33352c3132342c3132352c38352c362c3139375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac": { + "hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "epoch": 58, + "signed_entity_type": { + "MithrilStakeDistribution": 58 + }, + "beacon": { + "network": "devnet", + "epoch": 58, + "immutable_file_number": 19 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:34.179510423Z", + "sealed_at": "2024-09-09T12:59:34.440408302Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "8f26762f6d7837fcbde247e21112c2ad5309965c35ba102067cb6da1c0698764", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c372c34392c3135382c32382c3133372c3231302c32332c3132352c3231372c32322c33342c31332c392c34372c3230372c3234332c31322c36352c3133312c3233382c32372c3132322c3234362c3233312c3130362c3133392c39372c3136342c32382c34352c3230322c3131362c3133332c3139362c32382c3133342c38322c33322c3232302c3139312c3135312c3138382c32372c3234372c35322c3132342c31365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31322c31332c31342c31352c31362c31372c31382c31392c32312c32332c32362c32372c32392c33302c33312c33322c33332c33352c33362c33372c34302c34312c34322c34342c34352c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c36302c36322c36352c36362c36372c36382c36392c37302c37312c37332c37342c37362c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39302c39312c39322c39332c39342c39352c39362c39372c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136372c32382c3231342c3134322c3135322c3234362c3234362c3133372c3132352c3130382c3138392c32392c3132352c3137302c37362c3234392c3139362c3233312c3135372c3135392c32312c3234362c38352c38362c32342c3132322c3132302c3235342c31312c3234352c3132392c31382c3137352c3234322c3137352c3131332c3234382c31382c3137302c3134352c39382c3137382c3234332c3131322c3133342c3136322c31332c3138332c32332c31302c3133322c33332c3230352c3136342c3234352c3136382c39352c3231372c362c3134322c3136322c3134332c3133342c33332c3132382c39332c3131362c302c31352c372c3138342c3138342c3137352c3232322c3139352c35342c32312c3230342c38392c38342c3136352c3135382c3231352c3230362c3234392c3139322c3234312c3135382c33382c3134332c31382c33312c3133372c3138332c3130342c3233325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134392c39312c37382c3134322c31332c38362c3234382c33362c3139352c302c3134342c36302c3231342c37352c39392c362c36382c31302c3136392c37342c3131392c3136382c3137322c33382c3130382c3133322c38392c3231372c3132362c3230302c36302c33355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "20ba8fe4767689217045e8e58fc3b30051abc5725d6e18548c679788109ca86b": { + "hash": "20ba8fe4767689217045e8e58fc3b30051abc5725d6e18548c679788109ca86b", + "previous_hash": "f88d22f2977aa0161b3dd0775cccdcb935d90e3c621d5bb8d51893785c8252f5", + "epoch": 29, + "signed_entity_type": { + "MithrilStakeDistribution": 29 + }, + "beacon": { + "network": "devnet", + "epoch": 29, + "immutable_file_number": 9 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:12.687583863Z", + "sealed_at": "2024-09-09T12:58:13.082533122Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37302c3233302c3136342c31302c3234302c3235332c3131362c36302c38372c39332c3231382c31302c34322c3230302c31302c322c3133392c34382c382c3136322c37342c37332c3135382c39342c39382c3134352c3133332c35362c3136362c3130302c302c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "0b5ae3bd694616c66e2c3789001e7c701eca1eef49bbd19bace5a210551db5e1", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c35382c3134332c3134392c3134372c3133392c3135332c322c31372c352c3234362c3131302c33312c37392c3135312c3130382c36332c3232352c3137322c3235342c33312c3235352c3132342c3136372c3137322c36332c37372c3136372c3234322c3231322c3232302c33355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c3138392c39382c39322c3133332c3132332c3137362c35322c3233392c3232372c31322c32372c38302c3230312c312c3233382c3138342c3136342c3131392c38302c3131332c3136332c3232392c3231352c37342c34382c35362c3135332c33372c39322c39322c33372c3133302c3134342c3139322c3138302c3135382c3132352c382c332c3134342c32332c31332c32362c3132332c3137302c3134322c3134305d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c31302c31312c31322c31332c31352c31362c31382c31392c32312c32322c32332c32342c32352c32372c32382c33312c33322c33332c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35312c35322c35352c35362c35392c36302c36332c36352c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37382c38312c38322c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130335d2c227369676e65725f696e646578223a317d2c5b5b3136392c3130332c3134362c3231352c34312c3232362c38362c3230322c39362c3137392c3233382c34382c3138382c3130322c34392c3134392c3233382c3137362c3130352c352c3133332c36362c36352c34322c35322c32352c3230322c3133382c39382c3130312c3132342c3230342c3138392c3138352c36312c37302c3139322c3135332c3131362c3231352c3139322c3235302c3132342c38372c3133302c3231382c3138362c37362c31322c35322c3137332c34322c3132362c3232362c3234372c3132332c35322c3231372c3135372c39392c3134392c33352c342c3137382c3133382c3138352c3138302c32302c3133302c3234332c32302c31382c3135372c3230302c3137372c3231382c39312c35322c3135312c31382c3134392c31372c3232302c34392c3130392c3131392c322c3234302c32352c3231382c3133382c3136372c38372c3234322c32352c3234315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39362c37322c3133312c32342c39342c3134322c38372c39332c3231342c3137352c3232322c32332c3138322c3230322c3231332c34302c3233322c3138302c3232392c382c3131382c3135302c3137312c37352c3232382c3230332c31362c3233382c35372c3233352c3131342c3134305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "27a2171a4e6eb4a80bc36d71f1d11cf9e1640fae490dfd038235c5ffd1e789d8": { + "hash": "27a2171a4e6eb4a80bc36d71f1d11cf9e1640fae490dfd038235c5ffd1e789d8", + "previous_hash": "f087ab01dcc7be081554b9fb0f569c89f5e46acc01538e0b884a83c1f9257ee7", + "epoch": 17, + "signed_entity_type": { + "MithrilStakeDistribution": 17 + }, + "beacon": { + "network": "devnet", + "epoch": 17, + "immutable_file_number": 4 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:39.050855465Z", + "sealed_at": "2024-09-09T12:57:39.442388915Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234342c35302c36332c32352c38392c3131342c31372c3233302c3135332c37332c3138322c3231302c3135372c3133372c3133322c322c32372c3138362c32392c3231332c3230372c3231352c3231312c3136312c3138352c3132322c39342c32392c39312c3130332c32322c3231325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "5f76617a640131a4147cf3ab43deaf4614fd82d2aa5b0b2f09668df34161e39f", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39352c3232332c3130322c3137332c3234372c3231372c38352c3138302c38352c3133332c34302c3133382c39332c36312c38332c3132352c3232382c3136342c3133392c37302c3231302c3230362c3231332c37392c33342c39382c3133312c3132312c38382c3235332c3232392c3233395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136382c3132372c3139312c3230332c3130352c3130342c3230342c3234392c3230332c3232302c3131302c3138312c35312c3134342c3231332c34382c3131352c37392c34342c33342c34352c38352c34372c33342c312c3136342c3234312c3231322c3232382c3133312c33342c3132382c3139352c3136372c3230352c3136382c3131332c3130322c3231382c3136342c37332c3231302c3138312c35372c3235322c3137372c3135362c3132385d2c22696e6465786573223a5b302c322c342c352c362c372c392c31302c31312c31342c31352c31362c31372c31382c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33332c33352c33362c33382c33392c34302c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36312c36332c36342c36352c36362c36372c36382c36392c37312c37332c37342c37362c37372c37382c37392c38302c38312c38332c38342c38362c38372c38382c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136392c3231342c3230392c39382c3139352c3233342c392c3138352c3138312c3136352c3134372c3130392c37342c3139332c3230392c34362c3139352c3139312c3131342c35362c33352c3233332c3233332c3138342c3133342c3137382c34342c3234382c34392c3130362c3231342c3234312c36332c3134372c3132322c3134302c38382c35302c3130382c3139302c3233382c3233372c38342c35362c3134382c3235312c3130322c3233322c31362c3136332c3132302c3132382c3134382c3133352c32372c3134322c3234392c3136322c3130342c34362c3231392c3233332c3230302c38322c3231372c3134322c36342c3131392c3132372c3234312c34302c38302c31322c3132362c3134322c3136352c39372c3131342c3139382c3134382c36322c342c3132382c3232362c3231392c36302c3138322c3234362c3135312c3134322c3139322c33332c3133362c39332c38342c3136395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34352c3233352c3137332c3134332c35372c32392c38372c37342c39352c3137302c3131392c3136372c3135302c372c3135382c3233322c3234342c35352c35372c3234332c36302c3135342c33392c3135372c31302c3133322c36382c32342c3230332c3233312c36322c39315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "2bebf6af48aa75fda8b21c19dad6201b4513e8bccbf0650531400abdca0d8593": { + "hash": "2bebf6af48aa75fda8b21c19dad6201b4513e8bccbf0650531400abdca0d8593", + "previous_hash": "5f7b4754de2a6221c8a9f20c0fe024cc3a516354874b60a8651381863cc2d47e", + "epoch": 22, + "signed_entity_type": { + "MithrilStakeDistribution": 22 + }, + "beacon": { + "network": "devnet", + "epoch": 22, + "immutable_file_number": 6 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:53.027343133Z", + "sealed_at": "2024-09-09T12:57:53.418492882Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37392c3139372c3137322c3233362c372c35302c3139302c3136362c3234332c3138342c3134322c31372c342c3137322c3139312c34332c3138352c3131312c35342c3133392c37322c3137302c3231302c37322c3230392c3230322c36322c3134392c3130302c3134332c3135312c3137395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "858b0d381f3860dfc2feca2891a6485d81f4f1cf87364a3ca35539ff1bdd797a", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c3137372c3232392c3231332c3134372c3135362c3134312c3234332c31352c3135372c3135392c33362c36342c3130322c3231362c3232372c3133372c3135322c36302c3130362c3235322c3131372c3231382c3139342c3134352c3232302c3235332c3232352c35302c3137342c3131312c3132385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c3137322c34382c34322c3130372c38392c3234342c37352c3134332c3231312c3136302c3132322c3235342c3233352c3138382c34302c3133372c3235312c35312c3134392c3134362c37392c3133342c3133372c35352c38352c3138342c3132352c3130322c33382c34312c3230312c3134362c3234322c342c3131392c3136382c34382c3134382c3130312c31342c37312c3131312c3234332c3136332c34332c32362c33305d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31362c31372c31382c32312c32322c32332c32362c32372c32382c32392c33302c33322c33332c33342c33362c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36312c36332c36342c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38362c38372c38382c38392c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134342c3132382c39382c37312c3235312c3234322c33332c3133332c3133312c3132322c3234382c302c35362c36362c3234312c37312c39302c3233352c3138352c34332c3230372c38382c3136322c3132352c32302c3235312c31312c35352c3232342c39392c31322c31352c38382c3130302c3232332c34312c33322c352c36352c39312c3135362c3134332c3133372c3134362c3233332c3134352c3233382c3234362c382c3132332c3138362c3136372c3131392c39322c3132352c3138312c3131312c3132392c3230322c3231372c3136342c3232362c3230352c32322c3130392c3130302c3134382c35352c3234362c31392c38332c36322c3138352c3233392c3233352c3137382c32382c3133392c3132312c3133362c38392c39392c39332c3231392c3139342c3230392c3136342c3132362c34372c3138342c34362c32312c39372c3134382c3136392c34345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134312c33352c3232302c34322c3233382c31322c3132382c3231382c3234352c3132312c3231352c37362c3231382c33312c3231382c31362c31362c3132392c31352c32342c3132352c36332c3131362c31372c35362c34352c33312c34332c39372c3135342c38382c33365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "2c8066e4159e0547d3da9ad5f1e1a0f8d7470cc2f63901b0fe22bba850b7c3ef": { + "hash": "2c8066e4159e0547d3da9ad5f1e1a0f8d7470cc2f63901b0fe22bba850b7c3ef", + "previous_hash": "c7d868cee0669eebf64df13b1ac8e82109488dddf653f940c8801a2a57af874e", + "epoch": 34, + "signed_entity_type": { + "MithrilStakeDistribution": 34 + }, + "beacon": { + "network": "devnet", + "epoch": 34, + "immutable_file_number": 10 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:26.791200318Z", + "sealed_at": "2024-09-09T12:58:27.185609665Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b332c36372c3135342c3133312c33342c3235312c3133302c31382c3132362c3137392c3133362c3231322c3233312c3136312c3132322c3232352c342c3132392c36322c33352c342c38312c3139322c3130382c3137342c3134392c3234332c3135302c33372c3135332c38332c36385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "c92cab23429d092880a18e836d97bd4780f9d950ba6fbd7cb5c682efa37f5ce7", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34382c31392c3234382c3139302c38352c332c3135352c3133342c3139312c3230342c3235342c3130362c3231362c3137372c33342c3136332c39372c31342c3135322c3233362c3230322c33392c39352c3139352c33372c36352c39332c36342c332c39312c3136332c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3138352c3134342c33382c3139382c3130362c362c3231342c31362c34372c3131322c32362c3231332c34322c322c36342c3134392c3133332c3135372c3230302c32322c3137362c3138392c3131312c3133332c3232382c31382c3131382c3133342c352c3132372c3233322c3133332c3235332c3136392c3233322c3232322c3133372c35362c3136332c3134332c32342c3231352c32332c3234382c3135382c36332c3232315d2c22696e6465786573223a5b302c322c332c342c352c372c382c392c31302c31312c31322c31342c31362c31372c32312c32322c32352c32362c32372c32382c33302c33322c33342c33352c33372c33382c34322c34342c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36352c36362c36372c37302c37322c37342c37352c37362c37372c37382c37392c38302c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39382c39392c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3138302c3134372c332c36352c33372c38322c3138322c3232312c3133382c3130342c352c3230372c342c37302c362c3136332c3138302c37382c38332c3130342c3132352c38362c39322c392c36302c36302c332c352c37362c35392c36322c3138322c39382c3232342c3235332c3235342c33332c3231392c3133392c36362c3133312c31362c36302c3135302c39392c3139362c32302c3138362c31342c33342c32382c35352c3233322c38392c3231322c36302c33302c3234372c3233302c37332c3137302c3131322c37302c3136382c3231362c32322c3132342c39372c3135322c38392c3131392c34372c3234332c3133352c34382c33362c37352c3135382c3235312c31362c3234382c34312c33312c3133382c3136312c3131322c3134322c3131312c37312c3235302c38332c3138382c3138322c3137312c3135302c3134355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230302c3135342c37372c3133352c3234382c3138372c3232342c39372c3130392c39372c31392c37342c34342c3130332c3130382c3137392c3231342c36322c3132362c38312c32382c34322c3136312c33332c3232352c3131392c3135392c36342c3139382c3232332c32352c3231315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "304ae8a325e648d02f92d80be6734281cb729d4bab42ddb464bf15f66690f9ba": { + "hash": "304ae8a325e648d02f92d80be6734281cb729d4bab42ddb464bf15f66690f9ba", + "previous_hash": "d402d98d38cadd400a4bc23af1d7a5a1ca86fdf9b6111d304315bda72d0b8ac8", + "epoch": 41, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 41, + "immutable_file_number": 13 + } + }, + "beacon": { + "network": "devnet", + "epoch": 41, + "immutable_file_number": 13 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:47.594907026Z", + "sealed_at": "2024-09-09T12:58:47.859173271Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "664fd22c34833b074fcbbb31e76715c391ef8ade48c95269ca4d4ea8479cfaf3", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137352c33362c3230372c3131352c32312c34382c36332c31382c3136372c3130352c38332c39342c3133352c36382c3234382c33372c3130352c36322c3130332c31362c3233382c3233332c33342c34322c37382c302c3135342c392c35332c3137352c3234392c33332c3132302c3131352c35322c38352c3134372c3233372c31362c352c3130322c32312c31362c382c3138332c3130302c38322c3231375d2c22696e6465786573223a5b302c322c332c342c352c362c382c392c31312c31342c31352c31362c31372c31382c32302c32312c32322c32342c32352c32372c32382c32392c33302c33312c33332c33352c33362c33372c33382c34302c34322c34332c34352c34362c34372c34382c35302c35312c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37342c37362c37382c37392c38302c38322c38332c38342c38352c38362c38392c39312c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133352c36322c3137372c3133382c32372c332c3134322c36322c3135362c3130392c3134302c3231342c3233352c3233322c3133302c3232332c392c36302c3137332c3138342c3131392c3230322c38342c3134302c39382c34332c33302c34382c3139322c31362c39382c3230312c3134352c312c3133392c3134302c33332c31382c3136372c39332c37342c3137312c3234322c3231382c35352c3232362c342c39322c352c38372c3132382c3231362c39322c3135312c3138362c3231392c3134352c3132372c39372c3131372c372c3235352c3139302c31302c3233322c35372c39352c38382c3132302c3139312c3133322c3137362c382c35392c3231312c3231302c3233302c36392c3233392c37312c37332c36372c36392c3130382c34312c38362c32392c34372c3130372c3131392c35362c31332c37362c3233342c3233362c38385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232322c36302c37362c342c3139372c3138312c3133342c3234392c3136352c35372c3233352c3235352c3132332c3131302c3133302c32382c3132332c34362c38322c34342c37392c3235312c39312c35342c3131352c302c36312c3235312c38342c3132342c3234362c3130375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "3453ad777b6cf1ac7076850d3a5a9b97cb1988c277a3569e7defee4fd524b63b": { + "hash": "3453ad777b6cf1ac7076850d3a5a9b97cb1988c277a3569e7defee4fd524b63b", + "previous_hash": "8ba1adefdeb0786042d6634a4ae11cbb75f3d384bbfcee5411681a052269dcd1", + "epoch": 11, + "signed_entity_type": { + "MithrilStakeDistribution": 11 + }, + "beacon": { + "network": "devnet", + "epoch": 11, + "immutable_file_number": 2 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:22.172087832Z", + "sealed_at": "2024-09-09T12:57:22.562173402Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131322c3133302c3136342c34352c3234382c3136322c36352c3133302c3138302c39362c3133392c36362c3233302c3131372c33312c3134392c3137372c3134302c32392c3136382c3235352c33302c33312c3130392c3136322c3134332c33372c3230372c3130312c3134382c3138302c36385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "c91401b9d8c29082a5fb2f445629e5bcc560375a3724c12ac9630e6be6c63144", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232302c3235312c33382c34362c3131322c38382c322c3232382c3133302c38352c3134362c36302c33352c32372c3133302c34372c3133352c33392c3138362c38352c3235312c3234352c38322c34362c3234372c35322c35342c3139392c3134342c38312c3137362c31335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137322c3132312c35382c37392c32302c33382c36362c32342c37332c3131342c35362c3235332c3230392c33382c3135392c33362c3231352c3135332c3230382c3234322c31372c33332c39342c37362c302c392c3233372c37352c3131372c3133352c3135322c33332c372c3138342c3230332c3132362c3137302c35392c35322c3136392c3132322c3137332c3134372c36332c33342c31382c36392c3138385d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31302c31312c31322c31332c31352c31372c31382c32302c32312c32322c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34332c34342c34352c34362c34372c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c36302c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37332c37352c37372c37392c38312c38322c38332c38342c38352c38362c38372c38382c39302c39312c39322c39332c39342c39352c39362c39372c39382c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137332c38332c37372c34322c34362c36322c3234372c3231342c3136362c3137322c3132352c3134312c3233342c3136382c31332c3232302c3231332c392c3235322c3139312c35322c3132382c37382c35392c31362c39362c3235322c3133332c3134382c3233322c3233302c3130372c36312c3130302c3230352c3132332c32312c3234302c372c38332c39332c352c3231362c37382c38392c3230312c3137372c3232302c31322c3133322c37382c302c3134352c3133372c3233322c3231362c3133382c3231322c3231362c3233302c3135382c302c3133352c39322c36302c3230382c3138342c3230332c3137332c3232302c36392c362c36382c3136382c3231332c33372c3132362c3134392c36352c3230342c3135342c3134302c302c34362c3134332c33362c3234322c3132302c35332c32362c3135302c34382c3139362c3135392c3133392c31355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3139392c38392c3137362c3137362c31392c37342c32352c3138312c3232362c3131372c3133352c33352c35332c3231312c34392c3132352c3130322c3230342c31382c31362c3233302c36392c3136362c3234352c3139302c32312c39392c3130382c36322c3133302c3136382c3231305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "35f80cd7030b44a215a0e5de94b8fea892f7fd668dc51abe1e09b0bca799f2c1": { + "hash": "35f80cd7030b44a215a0e5de94b8fea892f7fd668dc51abe1e09b0bca799f2c1", + "previous_hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", + "epoch": 46, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 46, + "immutable_file_number": 15 + } + }, + "beacon": { + "network": "devnet", + "epoch": 46, + "immutable_file_number": 15 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:01.451622525Z", + "sealed_at": "2024-09-09T12:59:01.844743082Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "a2b3c174c539fee3af0df5e70c5696622ab85417b3cd538dbebc68c100b36907", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c35362c3233332c3134382c39392c36352c31372c37352c33352c3134322c3232392c3134312c3135312c3136392c3234322c3134352c35382c3138332c3136382c3136342c3134302c3136312c35332c36322c3231332c3135372c39382c3139362c3234382c3136332c3136382c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "56547bfffb8c374056696715d1f499c7a9554d2c00f622eae4e48b53fc511c3c", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135312c3130342c3234342c32302c3234372c3131322c38332c3134322c3134332c32362c3231312c3139302c3234342c3136372c3233322c31322c3136332c3131322c37362c3136382c3132362c33372c3133332c362c3135352c38322c3136322c3139352c33372c3233332c38392c3233362c3231322c36372c32392c3130322c3138362c382c3232342c3235322c33352c3133322c3134332c3135382c3131382c37352c3233332c34305d2c22696e6465786573223a5b302c312c332c342c362c372c382c392c31322c31332c31342c31352c31362c32302c32312c32322c32362c32382c32392c33302c33312c33322c33332c33342c33372c33382c33392c34312c34322c34352c34362c34372c34392c35302c35312c35322c35332c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37312c37322c37342c37352c37372c38302c38312c38322c38332c38352c38362c38372c38382c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136392c39302c3131322c34362c3139342c3130372c32392c3137382c37382c342c39312c3136372c3231382c36342c3230372c33392c38332c3131382c3231322c32382c32312c3139332c3134382c3130392c32352c3135342c3135362c3137352c32362c36372c39392c38312c37302c3234312c3233342c32322c39322c3131362c3139312c3230392c3131312c32332c3230322c36302c3231392c38392c35322c3132382c352c3234352c3138362c32322c362c3139332c34332c3133362c34382c32362c34372c3136342c3233342c3135332c3134392c3139392c3139362c3135362c3137312c3132322c39372c3136372c37382c36312c33352c3134362c39342c34342c39382c36352c3132372c3139322c3139312c3232312c372c3136372c3134312c3235322c312c3230352c3232362c36342c3137372c37302c3138382c3136362c34322c3131345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131362c3233302c3130392c34312c3131342c3133382c3137302c3234302c362c3133362c37342c3136352c3136382c3132362c35342c3133392c37302c3139372c3131332c3138302c32362c3232312c3130352c3136392c3135312c32372c3131322c3131382c33372c3135352c37322c3231315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b": { + "hash": "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b", + "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", + "epoch": 55, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 55, + "immutable_file_number": 18 + } + }, + "beacon": { + "network": "devnet", + "epoch": 55, + "immutable_file_number": 18 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:26.588899743Z", + "sealed_at": "2024-09-09T12:59:27.118499316Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "df267af69f18c03266bf982897f5076123a3df8d00a9f7b5a583e4d6f82bf089", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136332c352c34342c3138322c3130352c3235332c3232382c3131372c3131322c3137342c38362c3234332c3133372c34322c38382c38312c3232362c38322c39392c3135392c3134342c39382c3130352c3137352c3137302c3137322c31312c3131372c3232312c31312c3130332c33382c32352c3131392c392c3137322c3132392c38392c3231342c31312c37392c31362c3134372c32332c3137332c31372c3235322c3235345d2c22696e6465786573223a5b302c312c322c332c342c362c382c392c31302c31312c31332c31342c31362c31372c31382c31392c32302c32312c32332c32342c32352c32362c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34332c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35392c36302c36322c36332c36342c36352c36372c36382c37302c37312c37322c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c39312c39322c39332c39342c39352c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134302c36382c3138392c3139322c3235302c3131382c3133302c3130322c3132342c352c3131352c37322c36352c3132382c3130342c3235312c33352c3130322c3233382c3231312c3136352c3137332c3135352c3134332c3231302c37392c3136322c3139312c3131302c34332c3232392c3135302c3138362c32302c3232342c39392c3139372c34352c34332c352c36342c32392c3131382c3139322c39382c33302c36342c3132352c382c32362c33352c35342c3134312c3136382c31392c3232342c36342c3131302c3233372c31342c34342c34312c34362c3130302c3133392c3135392c3135352c34372c352c3235332c3231322c39312c35302c3134392c32332c3231332c36302c3133392c3137322c382c3230352c37382c3234362c3234362c3138342c3133342c3137392c32382c37312c3231372c3134322c3137332c3233392c34302c322c3136395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234342c3139312c39362c342c3132392c36332c302c31322c3139312c34392c3230342c37382c3136332c3231372c3131352c3130312c3138302c3135302c3234372c36352c3130372c36342c3234312c33332c3132302c3134352c3134312c31322c38352c392c3131342c3233325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c": { + "hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", + "previous_hash": "aa84c4ed03004982f9667958a701b223be8d452905a460a36f452be26bc81132", + "epoch": 43, + "signed_entity_type": { + "MithrilStakeDistribution": 43 + }, + "beacon": { + "network": "devnet", + "epoch": 43, + "immutable_file_number": 14 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:52.103835239Z", + "sealed_at": "2024-09-09T12:58:52.379333406Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "09a37cbd1fdaadb4bc91b278b9ca04da58516c041dc33b3d471c5aa65646810d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137382c3133342c33312c34312c3234332c39392c3131332c36382c3131302c3135352c31342c3134352c3131332c3133322c3136312c302c35332c3231352c3132322c34382c3231322c332c3132362c33352c37302c35382c3233302c3232302c3134392c352c36352c3136342c3137312c3230302c37392c3132352c3134362c38382c3230332c3137352c3135322c33392c3232322c302c31312c3232382c3130322c3134335d2c22696e6465786573223a5b302c312c332c352c372c382c392c31302c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32352c32362c32382c32392c33302c33312c33322c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c35302c35322c35342c35352c35362c35372c35382c35392c36302c36322c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37362c37372c37382c37392c38302c38322c38332c38342c38352c38362c38372c38382c38392c39302c39322c39332c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136382c36332c3138352c3230312c31322c33302c37382c3230382c362c35382c3131392c3138382c3138332c3130372c3232312c36372c3139322c31312c39372c3138362c3131302c35332c39352c3134362c3134312c34332c3133382c35342c3234362c3234302c3136362c3232392c3233362c3234352c3132382c3139312c3133382c39312c34332c32362c3230332c3138302c3130342c3234352c3230372c33382c38352c3133312c372c3235352c3137322c35332c33392c33352c33382c3137352c32372c3133322c38312c38302c3235322c3232392c3230382c3130322c3233312c3235342c3132392c3231322c3230312c3232352c3230362c3132342c3231302c3138342c3132312c3135362c3131312c3134312c3132342c3137342c3132342c3132362c32332c39322c3136382c39352c3233342c3234372c3134332c3233352c3135362c38372c3234372c37342c3131302c3132385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137372c36322c3136372c3231352c38362c3131392c3231312c39322c33342c3131332c3137332c3234372c37382c3130352c3131322c342c3232332c3130332c3234372c3132332c37322c3131332c37382c35322c3132392c3231382c3134372c3135312c3135372c3235312c34302c3235345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "3fd85abeaf29806f53bdc78643e042d5292aa66b4935fc4a75fbc9f04d79e4ce": { + "hash": "3fd85abeaf29806f53bdc78643e042d5292aa66b4935fc4a75fbc9f04d79e4ce", + "previous_hash": "5ae44166aa823d57345d8003c66c75873c6a86b00080df5848949659fe84e789", + "epoch": 15, + "signed_entity_type": { + "MithrilStakeDistribution": 15 + }, + "beacon": { + "network": "devnet", + "epoch": 15, + "immutable_file_number": 4 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:33.420699340Z", + "sealed_at": "2024-09-09T12:57:33.818706066Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232342c3139382c3137362c39352c34332c3136392c3132372c322c36302c37312c39382c35312c3136392c3231362c3133342c3137342c3136312c36342c3135392c3231302c3130342c3132372c3234352c3137382c3135352c31392c32322c32302c36332c3130392c3139312c375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "266a9df29c1f8de6faaca2f19db4fa44e258daefeeae2461f68f6094eb829332", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c31302c3234342c3133372c32312c3134342c3233312c32312c3135312c37382c3137382c3234332c38372c36332c35362c3132372c3139302c37362c33342c3231382c32332c3134362c34382c3134352c35362c38372c31342c3233382c3135302c38392c32352c39335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133332c39352c3135322c3234372c332c3137312c3135332c3137392c3137362c3130352c3133342c3136322c3131392c3133362c3235352c3233302c36392c38372c3130312c3230342c3137382c34312c38362c3233362c35372c32352c3139342c32332c3139362c3136342c3234342c342c3130322c3130372c37352c3234312c3231322c3136362c362c3135312c36342c3132302c3139362c3230342c3234312c34352c3138312c3230305d2c22696e6465786573223a5b302c312c322c342c352c372c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32372c32382c32392c33312c33332c33342c33362c33382c33392c34302c34312c34332c34342c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c37332c37342c37352c37362c37372c37392c38302c38312c38352c38372c38382c38392c39302c39312c39322c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138302c31362c33372c3230362c3139392c3130312c3137382c362c31372c3231322c3135392c31332c3137332c33392c3233392c32362c38392c31352c3234342c34372c33352c37332c3130302c3130352c3234322c3137382c39372c36392c39362c32382c3139362c3133312c3136392c39302c3235312c3231332c3134342c33332c37372c3231362c3134332c3134372c34332c3233392c34312c3131372c3233362c3133352c382c3233322c3135352c34382c3234382c3138372c3135392c3135372c3131312c33392c3138382c3136322c3133362c3138312c3138342c39302c3234302c3133312c3134322c3134352c3138362c37382c32322c38302c3233312c3138382c3132342c31342c3138322c35322c3136332c35362c3138392c312c3130332c3231302c33342c3134392c3137372c31382c36322c3138362c3137332c3131312c3138342c3136362c3139332c34395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3139382c3233372c3134312c3233382c38392c3137362c3130302c3232332c3132332c3134312c3131392c3131332c39332c31382c31332c3130372c3139322c3135332c38372c3232372c35332c33322c33332c3132352c3234302c34382c33332c36392c3139302c3232382c3136352c3232365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90": { + "hash": "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90", + "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "epoch": 57, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 57, + "immutable_file_number": 19 + } + }, + "beacon": { + "network": "devnet", + "epoch": 57, + "immutable_file_number": 19 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:32.153098137Z", + "sealed_at": "2024-09-09T12:59:32.547820554Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "38a27a1eee8e0186a4a9bb6ec086a455b2edfa434527c27a1199c8fcceeffcdb", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136362c3230382c3137392c3135372c3232382c3234352c3232392c3233322c3230312c38382c3139382c31322c3234352c3133362c3230322c332c3230312c31362c31392c3131352c3130322c3137392c32332c3230352c3132372c38372c32382c3132302c3139312c37372c38372c39382c31392c3132362c3131382c3137372c3130362c3232352c39392c3130392c3135332c3231312c32392c36312c3230372c3130352c3134352c3133345d2c22696e6465786573223a5b302c322c332c342c362c392c31302c31322c31332c31352c31362c31372c31392c32302c32312c32332c32342c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35342c35352c35362c35372c35382c36302c36312c36322c36342c36352c36362c36392c37302c37312c37332c37342c37352c37362c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39352c39362c39372c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135312c3130322c3132352c3133382c3138362c3138372c31342c3235302c3131342c3235322c3133322c3133382c3132312c36372c312c3130392c32342c39332c332c3231352c31362c3231332c3230362c3132382c36332c3139302c3233332c3135372c3138302c3134382c3135352c3138392c3231322c3139322c34332c3131362c34302c34332c3134332c31352c3133302c38382c35332c3131302c35332c3230342c3231312c38322c322c3139362c3232372c3137312c3135342c31392c3139332c3233332c3139392c3234302c3130362c37342c3137352c3131352c3131382c3134302c3135352c3234342c39342c32322c3234352c3135332c3232302c3233312c3139372c39392c3136362c3133332c3130372c3130352c34332c38302c34362c39312c35362c34302c3232312c3132342c3136302c3134302c3135362c3232322c31302c3232382c3234392c302c3230302c3234305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231302c3135352c37352c3234312c38332c3132342c3232352c3138332c35362c3138342c38322c3139332c3231332c39332c35312c3132342c3139382c37312c3133302c39322c3231322c32352c31312c3130302c3134362c3138312c3132352c3234322c39322c3134372c3132382c34355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "4d0c84de34c476bfcc315dccb9db078c29f86811db67cf05b33bf8a950de8102": { + "hash": "4d0c84de34c476bfcc315dccb9db078c29f86811db67cf05b33bf8a950de8102", + "previous_hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", + "epoch": 52, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 52, + "immutable_file_number": 17 + } + }, + "beacon": { + "network": "devnet", + "epoch": 52, + "immutable_file_number": 17 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:18.780968115Z", + "sealed_at": "2024-09-09T12:59:19.302394267Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "ab4fda5e3c6422c428f45fa8bffe42fbb16b907354d5464a2f2cb642be90f171", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137302c33302c3132302c3131332c38322c3134342c3133362c37302c3135332c3132352c3135352c33312c3138322c3134332c36382c38312c33322c3230362c38312c33382c3232312c3231362c3234362c32362c3136312c3137322c3132352c3232332c3233312c37332c3230342c33382c3136312c3235312c3230302c3139322c3135302c39372c3232302c3233392c39332c3132332c3234312c32322c3131362c33382c31312c3133355d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c31312c31342c31352c31362c31372c31382c31392c32312c32332c32362c32372c32382c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34312c34322c34332c34352c34362c34392c35302c35312c35322c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c37302c37312c37342c37362c37382c37392c38312c38322c38362c38372c38382c38392c39302c39312c39322c39332c39342c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137382c322c32322c3136312c32372c37362c3231372c3234382c3138362c32362c3138392c3137362c3139352c3232342c36312c3134312c35352c3234352c32322c3231392c31362c39352c39392c39372c3233372c3135362c3133332c37352c35352c3130302c3136342c3232372c3230352c37372c3134342c3132352c33362c33352c3134392c322c3139362c302c382c3234392c3134312c3131352c3137342c3131322c322c38372c3137342c34362c35372c3134342c3233362c3132302c3139382c3230312c39362c3130382c3131362c38352c362c3231342c3134342c382c34302c3138302c3231382c3138372c3232342c3135392c3130362c3131302c3230352c33312c34312c3235322c32372c392c3133382c3232392c3137392c37362c3132362c37302c3133332c3133302c3233302c332c3139322c35302c36392c3132392c32362c3233345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32392c3136392c3137382c3133382c362c3136372c3231372c37362c3131372c33332c3139382c3139382c3138362c3232332c3137352c35322c36312c39342c39392c3131322c35372c3231332c3132312c3132382c36342c34322c3131332c3134382c3136372c3230332c38382c34335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "4d674234cd3e602f78faea111462ddf994cc91222061df8627718b572a389afb": { + "hash": "4d674234cd3e602f78faea111462ddf994cc91222061df8627718b572a389afb", + "previous_hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", + "epoch": 47, + "signed_entity_type": { + "MithrilStakeDistribution": 47 + }, + "beacon": { + "network": "devnet", + "epoch": 47, + "immutable_file_number": 15 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:03.092997669Z", + "sealed_at": "2024-09-09T12:59:04.790283312Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c33332c31352c3230392c34332c3137352c3136362c36302c37362c3136382c3233392c39362c3233372c392c32372c31382c3235322c3134332c3231322c3136312c34372c33352c392c3132352c36352c342c3232322c302c33312c39322c37362c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "5c121ac2c1e62e989ab52f14d5e0557eae5711b94bad12abc9b683b20e8fad8e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c35362c3233332c3134382c39392c36352c31372c37352c33352c3134322c3232392c3134312c3135312c3136392c3234322c3134352c35382c3138332c3136382c3136342c3134302c3136312c35332c36322c3231332c3135372c39382c3139362c3234382c3136332c3136382c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135332c3134362c3234302c3230362c3138312c39352c3135322c34332c3139332c3234302c3135362c3234302c34362c3134372c3234302c3138322c3131382c35372c33342c3231372c3234312c3234382c3138392c3233342c3130352c3131302c3135352c3235312c3232302c3234302c3138382c34372c3131322c3234372c3134332c3134312c3131382c3230352c3230342c3231372c3139382c3232302c3234352c34362c3138342c3133352c3235342c3235355d2c22696e6465786573223a5b302c322c332c342c352c362c31302c31312c31322c31332c31362c31372c31382c32302c32322c32332c32342c32352c32362c32372c32382c33302c33312c33322c33332c33352c33362c33382c34302c34312c34322c34372c34382c34392c35302c35312c35322c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36372c36382c36392c37312c37322c37332c37342c37362c37372c38302c38332c38342c38352c38362c38372c38382c38392c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133312c3133352c35332c3232352c35362c35302c3135352c3136372c3231382c33332c3232392c3231352c32352c3139312c35322c3232382c36322c3132372c352c38382c38302c38312c34372c3230392c3138372c3233362c3231332c3138382c3139312c3235352c32382c31322c36332c3233372c3137352c3232372c3135362c32352c3138352c3133382c3231372c3137382c3133352c3138352c3134332c35302c3133382c36312c392c3139352c3133332c38332c3130342c34302c3139392c3232302c3234362c3230372c3133322c3133392c36342c3131332c382c3130372c32352c3138372c3234352c3139312c342c3137312c34352c3233382c3139382c3130322c39372c3134312c3133372c3133362c3235352c39302c3131352c3132352c3136302c3231342c3132342c3137322c3133362c34362c3130322c3137332c3136302c33332c3234382c3135352c3135342c3138385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b312c3130362c3232342c3137312c3133342c3134362c34362c3234382c3235312c3134302c37302c3137342c34372c3133382c31322c3131382c3136312c37302c3233342c38302c32382c3231382c3138332c3135372c3139372c35322c31362c3230362c3230342c34302c3234352c36375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751": { + "hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", + "previous_hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", + "epoch": 45, + "signed_entity_type": { + "MithrilStakeDistribution": 45 + }, + "beacon": { + "network": "devnet", + "epoch": 45, + "immutable_file_number": 14 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:57.568109107Z", + "sealed_at": "2024-09-09T12:58:58.599505590Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "1967fbae4e3dbca53d708c818918529831224cc2a1b186e8db97f2dc49d6887d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133352c3137362c3131302c37372c3135332c3231342c3133342c38312c3132372c3230392c3138312c382c32342c3132322c33342c37352c3231302c33302c3139392c39312c3235352c3133362c3235332c3135322c3230322c34362c32322c3139362c3131332c3233352c3130382c3230332c3134382c3136392c3133372c3135322c36332c39302c3232332c3235322c3232352c3231362c32302c37332c332c3135342c37352c35385d2c22696e6465786573223a5b302c312c342c352c362c372c392c31302c31312c31322c31332c31342c31352c31362c31372c31392c32312c32322c32332c32352c32362c32372c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34362c34372c34392c35312c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c36392c37312c37322c37352c37362c37372c37382c37392c38302c38312c38342c38352c38372c38382c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135322c3231352c3231302c3231382c3136312c37302c3136352c3132352c3136382c3234342c3134322c3137382c3133302c3134382c3132302c36382c3230352c3230382c3234302c3134312c3232362c3132372c3231342c3130342c3133302c3230332c39382c3230332c33352c3132312c31392c31342c3138352c3232332c37312c3135302c3131392c39352c3135342c39382c3137392c3130362c3233332c36332c39372c3133302c38302c3130362c352c3233382c31342c36312c36362c32302c3139302c37352c3234312c3133302c38322c3136362c3133302c312c3135302c3230342c35332c35332c3135332c3137372c33312c31342c34332c3130362c3235332c392c3130372c3138352c3136352c3231332c3139382c33322c3233372c3232342c35392c34302c3134392c38342c3230312c3131342c3132392c3234392c32372c36362c34372c3131332c3235352c3233355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c34332c3130372c36322c39332c3134322c3137332c3138342c3138302c3132332c3133392c36392c33382c3137372c3134302c3134342c35322c3135312c35332c31372c3133322c39382c3231322c3230372c3139332c3132312c312c32342c33322c31342c3139332c3234345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "580dfde6fa34e3e902244f171bd0ca54b27c065d9dadbc95d4b2e2b19a73c07b": { + "hash": "580dfde6fa34e3e902244f171bd0ca54b27c065d9dadbc95d4b2e2b19a73c07b", + "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "epoch": 58, + "signed_entity_type": { + "CardanoStakeDistribution": 57 + }, + "beacon": { + "network": "devnet", + "epoch": 58, + "immutable_file_number": 19 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:34.586494806Z", + "sealed_at": "2024-09-09T12:59:35.106621586Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "57", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + } + }, + "signed_message": "ba5279894984d07dcc36a893ffdc82f90b0229e262f725f87cbb90f1dbab210e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c3234322c3232362c34332c37362c37332c3231372c3230372c3130352c3231312c3132332c3134312c3230372c3233372c38322c382c3130382c3132342c35362c33382c3135332c35382c3235322c3137312c3138392c3134352c3131352c32342c31352c38372c3137392c39302c3132322c3137372c37362c35352c39342c31352c3232372c3134312c35322c3139322c3135312c3235332c3132372c33372c3234382c3134375d2c22696e6465786573223a5b302c332c342c352c362c372c382c392c31312c31332c31342c31362c31372c31392c32322c32332c32352c32362c32372c32382c32392c33302c33312c33322c33332c33362c33382c33392c34312c34322c34342c34352c34372c34382c34392c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36342c36352c36362c36372c36382c36392c37302c37312c37332c37352c37362c37382c37392c38302c38312c38322c38342c38362c38372c38382c38392c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136372c32382c3231342c3134322c3135322c3234362c3234362c3133372c3132352c3130382c3138392c32392c3132352c3137302c37362c3234392c3139362c3233312c3135372c3135392c32312c3234362c38352c38362c32342c3132322c3132302c3235342c31312c3234352c3132392c31382c3137352c3234322c3137352c3131332c3234382c31382c3137302c3134352c39382c3137382c3234332c3131322c3133342c3136322c31332c3138332c32332c31302c3133322c33332c3230352c3136342c3234352c3136382c39352c3231372c362c3134322c3136322c3134332c3133342c33332c3132382c39332c3131362c302c31352c372c3138342c3138342c3137352c3232322c3139352c35342c32312c3230342c38392c38342c3136352c3135382c3231352c3230362c3234392c3139322c3234312c3135382c33382c3134332c31382c33312c3133372c3138332c3130342c3233325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134392c39312c37382c3134322c31332c38362c3234382c33362c3139352c302c3134342c36302c3231342c37352c39392c362c36382c31302c3136392c37342c3131392c3136382c3137322c33382c3130382c3133322c38392c3231372c3132362c3230302c36302c33355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "5ae44166aa823d57345d8003c66c75873c6a86b00080df5848949659fe84e789": { + "hash": "5ae44166aa823d57345d8003c66c75873c6a86b00080df5848949659fe84e789", + "previous_hash": "0df5f7ffabd82b31942966f6f496059483caf8dfe889d36137a81cf19b205315", + "epoch": 14, + "signed_entity_type": { + "MithrilStakeDistribution": 14 + }, + "beacon": { + "network": "devnet", + "epoch": 14, + "immutable_file_number": 3 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:30.548864484Z", + "sealed_at": "2024-09-09T12:57:30.944144073Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c31302c3234342c3133372c32312c3134342c3233312c32312c3135312c37382c3137382c3234332c38372c36332c35362c3132372c3139302c37362c33342c3231382c32332c3134362c34382c3134352c35362c38372c31342c3233382c3135302c38392c32352c39335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "2896c9bb9cfe6cbea128045863f2c91bbf00c89ddcc920a881b52ac6ba2a069a", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b36382c3134362c33302c36382c3133372c31342c3234342c3131312c39332c3231382c37362c3135302c3233322c3231392c3235312c3234332c37302c37312c3132372c3132392c3232392c39382c31362c36312c392c3132312c3233372c3231382c3232312c3231382c3132342c38395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138322c36302c31302c3134352c37302c3135382c37312c3132312c3233302c3234302c3133362c36372c3137322c3233382c3132332c37312c3233312c352c36372c3134372c3139392c31352c3130332c3135322c3232392c3137352c362c3137302c38332c39332c3232312c34392c31312c3231382c3130362c3138352c3134312c3135392c37362c3138322c3132332c37322c36372c31322c38352c32302c3230332c3232315d2c22696e6465786573223a5b302c312c332c342c362c382c392c31302c31312c31322c31342c31352c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35322c35332c35342c35352c35362c35382c35392c36302c36322c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c37392c38312c38332c38352c38362c38372c38382c38392c39302c39312c39322c39342c39362c39372c39382c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3136362c3135392c35322c352c31392c3132392c3130302c36352c362c3139392c3235332c3130332c3130372c36362c322c39392c3139352c3138302c3134352c3134332c36342c3233362c3233322c3235322c3132372c3235312c36332c3234312c3233362c38332c3134322c35342c35382c3131302c3131352c3135392c3138332c3138312c39362c3132302c3233312c3234302c3233322c3234352c3135392c3133312c3138392c3134382c382c33382c31362c38332c35342c3131372c3135392c3132372c3230382c3230382c37382c39322c372c33332c3134302c3131362c3137322c3231342c32302c3138312c3132332c3134342c3139312c35362c3230322c35312c36302c38382c39392c32372c3230302c3230352c3135332c3131372c39352c36382c3137332c3231312c3132372c3135312c3136302c3136392c3137352c36382c32342c3131362c3233372c3234385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131352c37342c3132302c3137382c3132362c3134382c3231322c3131372c3138332c3232372c36382c3132382c3135352c3138322c34332c3132382c39352c3137302c32382c3231302c38352c3135302c33372c3136362c3135392c3133372c3230392c3135342c33362c3234362c3232342c3135395d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "5b2183f66de9d0004ee78f40aa3939ce3d3424824032803c08a4620b1e3e961f": { + "hash": "5b2183f66de9d0004ee78f40aa3939ce3d3424824032803c08a4620b1e3e961f", + "previous_hash": "11a168fe6f5b95fbd27e84d4484c8f8a3e3cbd60945cf15e0b379a24d531e5d2", + "epoch": 31, + "signed_entity_type": { + "MithrilStakeDistribution": 31 + }, + "beacon": { + "network": "devnet", + "epoch": 31, + "immutable_file_number": 9 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:18.369987574Z", + "sealed_at": "2024-09-09T12:58:18.758878632Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138302c31342c31302c31342c3231362c3139342c3234332c3132362c35342c3132302c32352c332c3232312c35332c34362c31332c35312c3136312c372c3230302c3135312c36382c3136372c3230362c38352c3139342c34332c31312c37302c3133382c3137362c36355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "d3ba6c58e25f246a41ad2ce1053bd0b1d2bfe5c7aaa420191d0aefaa8c7ba933", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34382c38352c3233362c3134332c3134322c3133312c31322c372c36342c3135312c3131352c3231372c3235332c34342c3135392c35372c35382c32372c3131312c3131322c3131302c32362c37372c3233332c3135332c3135352c31382c33302c38362c3235322c3134352c3137325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135312c3137392c3139312c3135342c36372c3134322c36382c3136322c3139372c3232322c3134342c3230312c3139332c3137302c3139372c35302c3132312c3234392c38322c38372c3131372c3130302c3138302c3137312c38322c3136382c3133342c33312c3234322c3232392c3130392c3138332c3133352c3133392c3134322c31322c3130332c39322c31332c37302c36362c3235352c3134362c362c302c3138322c3131382c3139305d2c22696e6465786573223a5b302c312c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37392c38302c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39362c39372c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133332c32362c3234302c3131322c33352c34362c3133332c3233302c3234352c3133362c3139392c34382c3135392c3135382c32322c3139362c3138382c38372c33322c33332c3138332c34322c37342c37362c3234372c3233302c34322c35302c3133382c38302c3131332c36302c3131392c3136382c38332c382c3139322c3137372c37382c3134392c3132342c3131332c3235332c3232322c3139342c31362c3134332c33362c31312c3230362c3133372c3234362c3231302c3232372c362c3233302c3230312c32392c3233332c31362c3136352c34312c3230362c3232352c32362c33342c3134322c3130362c3138352c3133322c3234302c3137362c3131342c3137392c32332c34332c36372c3137312c3235322c33352c3234312c39372c3132362c32332c38372c38372c3136392c3231382c32302c3235352c3230312c34352c39342c302c3232362c33385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134312c3137352c3234362c3130342c31312c3139322c34322c35322c39322c3137312c3235312c31352c3133332c36352c3135342c3131302c39332c3232312c3131362c31312c3230332c3139362c3138332c3235352c3230322c31372c37302c36302c39352c3231302c3231322c3130305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9": { + "hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "previous_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", + "epoch": 60, + "signed_entity_type": { + "MithrilStakeDistribution": 60 + }, + "beacon": { + "network": "devnet", + "epoch": 60, + "immutable_file_number": 19 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:39.556574352Z", + "sealed_at": "2024-09-09T12:59:39.691261261Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "3d2930126f7ee6f7cc6070383ca4df669a206614cddfa53de0b7d0b0145dde80", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132382c3231332c3130332c3137392c31312c37332c32312c3230312c3234392c3235352c32382c38312c36312c3235352c3130302c35352c3135302c3135372c38322c31372c33342c31362c3133332c32362c3139332c3231352c3232382c3134332c3232382c32312c39372c3131372c35362c3231392c37322c31352c3232372c332c3234372c33372c33362c38382c3132312c332c3135392c3133322c3137352c305d2c22696e6465786573223a5b302c312c332c342c352c372c382c31302c31312c31332c31342c31352c31362c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35322c35342c35372c35382c35392c36322c36332c36342c36352c36362c36372c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39302c39312c39322c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136342c3230372c332c34332c33322c3232332c3130372c3232382c36382c352c3230342c3130362c35302c3234322c3131312c32362c34312c3135332c35352c3139352c3134332c3132392c32302c3139372c3133312c32392c33312c3137342c3230362c3133382c3135342c3130392c3139362c3233312c37322c3132372c332c33322c36322c34372c3130342c322c3234392c33322c3234392c3232312c3138322c33362c322c3134332c3234312c36332c3136312c3137342c3133312c32362c3234342c3136382c322c3232372c3135352c3231392c35342c37362c3232352c312c3135372c39352c39312c3131362c3135392c3230302c3131382c3131332c31312c37312c33372c3231322c3233312c3232352c3230322c3136342c39302c322c34362c332c35322c32322c3233352c32322c3133332c38342c342c3133302c3139312c3139305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137332c3131322c33382c3138302c3136392c3133332c3131302c37372c3234382c36332c38392c33332c3133332c3139322c35362c3137312c3131372c39302c3235352c39302c3234312c3233372c33312c31382c3137332c34332c3230382c34302c34362c35352c3234342c3135395d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4": { + "hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", + "epoch": 56, + "signed_entity_type": { + "MithrilStakeDistribution": 56 + }, + "beacon": { + "network": "devnet", + "epoch": 56, + "immutable_file_number": 18 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:28.327599145Z", + "sealed_at": "2024-09-09T12:59:28.717577603Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "e489bfc55493fff216a2515158e999757a9a196190caaf2c151f279352965cc6", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c3136362c3135342c36352c3232362c32332c31352c3132342c352c36322c3137372c34312c3136312c3232392c36352c31392c3133362c3230332c34322c3135312c3132332c3231342c36322c33392c37392c3232372c3234322c32342c3139342c3134302c3234362c302c3139362c33312c33322c33392c3134362c37392c3134382c3139372c3137382c3133392c3139382c3136372c3135362c3234322c31342c3131335d2c22696e6465786573223a5b302c312c332c352c362c372c382c392c31302c31322c31342c31352c31362c31372c31382c31392c32302c32312c32332c32352c32362c32382c32392c33312c33322c33332c33352c33372c33392c34312c34322c34332c34342c34372c34382c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36362c36372c37302c37312c37322c37342c37352c37362c37372c37382c38302c38312c38322c38332c38342c38352c38362c38372c38392c39312c39322c39342c39352c39362c39372c39382c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c3137312c36362c34332c3130332c3234332c3231302c332c3130392c3131392c3231372c33382c3230342c35392c31342c38322c3235332c3133312c37362c3234382c37342c35342c3234362c3136392c37352c3134342c3136312c34302c34332c3235312c37332c3131302c3235312c352c37372c31352c3131372c37332c3131302c35392c34372c3137302c31382c3133302c3130332c37372c3137372c39372c322c38332c3132332c3234372c35332c3139372c37362c3135392c3235322c36342c3139382c3232332c36362c32302c3138352c3234342c3231322c3233322c302c38372c39332c3130372c3134362c3233302c3235322c3139352c3135382c3232312c37312c3131382c3135342c3134332c37362c3233322c3136302c39392c39362c3136302c35302c3134362c37372c35372c3230312c3130302c35302c3133322c38322c3133325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3130362c3235332c322c3132322c35392c32302c3133392c35372c3139302c38372c3234332c3133352c31342c3232352c3134392c3234332c3231322c3137302c3232362c3132312c3133342c3234362c34392c3232302c39322c3130362c3133382c3134332c39372c31392c372c3139385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "5f3effd9b5affda25669a7cec34e51c2fcd49534f070b68e6d9e12f299fdbdc1": { + "hash": "5f3effd9b5affda25669a7cec34e51c2fcd49534f070b68e6d9e12f299fdbdc1", + "previous_hash": "aa84c4ed03004982f9667958a701b223be8d452905a460a36f452be26bc81132", + "epoch": 42, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 42, + "immutable_file_number": 13 + } + }, + "beacon": { + "network": "devnet", + "epoch": 42, + "immutable_file_number": 13 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:50.852842032Z", + "sealed_at": "2024-09-09T12:58:51.111744682Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "d23e8489473cf1f3ca0777c8534d0021c85927077a9918deb8970ec500a04048", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "689117c7aa118ad9c51216fb7ce5d649d6a472ad45104a9cb3c62220027c76fa", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136352c38392c3134362c3136352c3131302c3235322c3234362c3235312c3135322c3138312c3136332c32322c31302c3231392c34362c3132362c33392c3136342c32302c35392c39382c3136372c3138392c3136352c3234322c37352c3133372c3234302c3139362c3230312c36362c3134382c3133322c3139352c3234362c3230352c31382c39362c3230352c37312c3131302c3232322c3233322c3135382c3235302c31332c35372c37345d2c22696e6465786573223a5b302c312c322c332c352c362c372c392c31302c31332c31342c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33302c33312c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35362c35392c36302c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38382c39302c39332c39342c39362c39372c39382c39392c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3132392c3233312c3134312c39332c39332c3235302c38372c37372c3235352c3235312c3234392c3231302c3135392c39362c3130322c3135322c3134372c3234352c3132372c3139362c3134322c3135392c32312c372c3138362c3134382c3231392c38302c392c3130332c3136332c34302c39392c3231342c3233332c3133332c3233302c3231372c352c39322c39332c3133302c3132342c3132322c3231352c3137322c3131362c3137322c32352c3231322c37352c3136342c3137332c33332c352c3234372c33362c3232392c39362c3137302c3135332c32372c362c352c3131332c3137362c38302c3131312c3138382c38382c3231322c35372c3139352c37372c38302c3235302c3230352c362c34382c35362c3138382c37362c3138312c3130362c3136382c38312c3137312c3139352c3134362c3231312c35302c3136362c3230392c3131332c3137332c32365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231322c3135302c3131372c3138382c3132342c3234332c31392c3132372c3134382c36312c3235322c3134312c37322c3131322c3131392c3133372c3230372c3133392c312c3138312c3132362c3139392c33392c3235322c3131382c3139352c3231312c3231352c3233362c3230382c3133382c375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "5f7b4754de2a6221c8a9f20c0fe024cc3a516354874b60a8651381863cc2d47e": { + "hash": "5f7b4754de2a6221c8a9f20c0fe024cc3a516354874b60a8651381863cc2d47e", + "previous_hash": "69405b53ab346dc38451bb60402190db798e4237e552ed391e04ef1aede05524", + "epoch": 21, + "signed_entity_type": { + "MithrilStakeDistribution": 21 + }, + "beacon": { + "network": "devnet", + "epoch": 21, + "immutable_file_number": 6 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:50.268856690Z", + "sealed_at": "2024-09-09T12:57:50.676553978Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c3137372c3232392c3231332c3134372c3135362c3134312c3234332c31352c3135372c3135392c33362c36342c3130322c3231362c3232372c3133372c3135322c36302c3130362c3235322c3131372c3231382c3139342c3134352c3232302c3235332c3232352c35302c3137342c3131312c3132385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "4736dfcce8a0423089d34b46530c8d28515114c218f65823b01656b27174a92c", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232322c39312c33372c3230352c34392c3231392c3233352c3232332c31312c302c3233322c3234362c34392c3230332c3233352c3232342c32362c32322c3131332c3132312c3133362c3234382c3137322c3137302c33392c3137362c3234332c3137322c3139322c37302c31352c39375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c342c3137322c3136312c34332c3131382c3139302c3235302c35312c3135322c34352c3230372c3230312c3138362c3135312c3131302c322c3233392c3230392c3131312c3234312c39332c33362c3135312c34342c332c3139372c3230392c39392c39362c3135342c3135352c3232302c342c3137392c342c3230352c3232372c3132302c3131352c3231332c3137322c3231312c35342c3131302c3133362c36332c32395d2c22696e6465786573223a5b302c312c322c362c382c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35382c36312c36332c36342c36352c36362c36372c36382c36392c37312c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39342c39352c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136352c3135392c3231382c3132322c3233312c3230392c3138362c38372c3133332c3137342c3134392c3232392c3234362c3133372c3233332c38392c3139302c3137332c3132392c36372c3130342c302c3133312c3133332c3230322c3133322c3135302c3137382c32312c3132362c31362c39302c3232352c372c3138332c3235302c3231372c37372c3132342c3139342c322c38312c3233372c3136312c3133352c3134392c3133302c3132362c302c3130372c3231342c3132372c3135302c35372c3232382c3232392c3230362c3131372c39392c3138312c3134372c3234352c3139382c3134372c3133312c34362c39362c3139392c3130312c35352c302c31392c312c3231362c3137372c3138302c34372c3233392c34302c3130352c33332c3235322c32302c35322c3137322c31372c31312c3134362c38362c38372c33312c3139302c3133322c36362c31392c3231325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234312c39382c38332c3136332c36322c3130352c34332c3233372c38352c3134352c3131352c38302c3231372c3131332c3136372c38302c3232372c31392c39312c3131392c342c3231322c3233362c3234352c3234322c3139372c3136362c3133362c32382c3231322c3232362c36375d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "60c5889afc6018d707b2a38be399497c01b44e35f47a7ee257a8b7bb5406d82b": { + "hash": "60c5889afc6018d707b2a38be399497c01b44e35f47a7ee257a8b7bb5406d82b", + "previous_hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", + "epoch": 51, + "signed_entity_type": { + "CardanoStakeDistribution": 50 + }, + "beacon": { + "network": "devnet", + "epoch": 51, + "immutable_file_number": 16 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:14.652125551Z", + "sealed_at": "2024-09-09T12:59:14.911883820Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "50", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + } + }, + "signed_message": "220b01159525d86593becee46b1fed0fd83d82d142a4441f8fd8431bdab865e6", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c3133302c3138372c34382c36372c3232392c3133352c3136362c3137322c3232382c3132312c302c34352c35392c3136342c3134392c3135372c3136382c3231312c32372c3235322c36352c37302c3234312c3235332c3132352c3136332c3131352c3136332c3134332c3230372c3233332c332c3231372c38362c3130392c34382c36352c3233312c33352c3133352c33342c3231302c3130382c33302c3232392c3230352c3131335d2c22696e6465786573223a5b312c322c332c342c372c382c392c31302c31332c31342c31362c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c33302c33312c33322c33332c33352c33362c33372c33392c34322c34332c34342c34352c34362c34372c34382c34392c35302c35332c35342c35352c35362c35382c35392c36312c36332c36342c36352c36362c36372c36382c36392c37302c37322c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38372c38382c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3138332c3234372c3231302c38362c3234332c33332c3134342c3235342c39322c3138312c3232352c36392c32392c31372c3139372c33312c33372c3132332c35352c302c3134392c3230392c31342c352c302c3130332c3231342c3231322c3139332c38362c3134332c3132372c3137322c3232312c3135382c3134382c392c3133342c3133342c35332c37312c32382c3131312c39302c3231302c3132322c3130302c3137342c362c3139302c3232312c3131332c3230332c3235352c34332c3130342c3138382c3232362c3132342c3136342c38362c3230322c3235352c36352c382c34342c362c33312c3131372c3233332c3235352c31312c3136392c3232342c3230332c3233372c36312c3234312c322c31352c392c352c3135342c3133362c37392c3132322c3233342c35392c3234372c33372c3230382c33322c31312c37322c39382c32385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134352c3132362c392c36302c3233352c35362c31332c38332c3136312c3136342c3138382c3231302c3234312c3134342c38352c3134362c3230332c3134352c3138322c3231362c34382c35322c3131312c3233342c36332c3135392c3137312c3133392c38372c39362c3134332c3233325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7": { + "hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", + "previous_hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", + "epoch": 62, + "signed_entity_type": { + "MithrilStakeDistribution": 62 + }, + "beacon": { + "network": "devnet", + "epoch": 62, + "immutable_file_number": 20 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:45.188270492Z", + "sealed_at": "2024-09-09T12:59:45.331998182Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "207cd61b42ef511abac11f5462c81dd3d16461015d7cc729b2e8ea682a1fd0ed", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c3233312c3230352c34392c3136362c3137372c3233372c3232382c38332c34312c3232382c3136312c3135312c33362c3230332c3139332c35362c3131302c31362c33392c39352c3138372c3130392c38382c39392c3233372c3234302c3137382c3230332c36302c3234332c3136302c32342c3232382c3234372c35362c34342c3136342c34332c3234362c3234392c3234332c31382c3134352c3137382c3137332c3233382c31335d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32362c32372c32392c33312c33322c33342c33352c33362c33372c33392c34302c34322c34332c34342c34372c34382c34392c35312c35332c35362c35372c35382c35392c36302c36322c36332c36362c36382c36392c37322c37342c37352c37372c37382c38302c38312c38342c38352c38362c38372c38382c39302c39312c39322c39332c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3137332c3133332c3135392c3136312c3133362c3135342c3139332c3139392c31322c3134322c3131332c35382c37332c3133332c31342c3137392c37362c3234342c3231322c3230382c3136352c3138322c3139302c3139332c33332c34362c3234322c3230302c34322c31302c32332c31372c32332c3233362c3131322c3136372c3138302c3135322c3132372c38352c3234362c34332c3132352c39302c3133312c3137372c31302c34322c31392c3234352c3136302c3132332c3133372c3131382c3136302c31312c39352c35352c3131322c3131302c31322c32382c3134392c31382c3131372c3136392c31332c39362c3233332c3233312c31352c34342c33342c3131382c38372c33362c3131392c3235322c39312c39302c38342c3134392c36342c34382c3133392c3230372c31392c3133382c33332c3132302c3133342c3130382c342c3134342c3133322c32345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37302c3135322c3230312c35352c3131382c3131342c37392c34322c3134382c3132302c3232312c3139332c3138302c31342c3130392c33342c37352c3136322c3230382c33302c31332c3134382c3131372c33302c3233352c3139362c3230342c3130322c3133342c3231342c322c32395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198": { + "hash": "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198", + "previous_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", + "epoch": 59, + "signed_entity_type": { + "CardanoStakeDistribution": 58 + }, + "beacon": { + "network": "devnet", + "epoch": 59, + "immutable_file_number": 19 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:37.348435710Z", + "sealed_at": "2024-09-09T12:59:37.889760383Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "58", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + } + }, + "signed_message": "0119fb3a1218f13d9a41c969c2496753b6840008fc59103a8cb9e84505bc346f", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137322c3233312c31312c3234352c3138322c3136322c3133372c3233322c31322c302c3134392c31342c36332c35382c35302c34392c3130362c3136332c3230382c31352c3134372c3139362c32332c3136342c3131312c3130352c31382c3233312c3231382c3230332c3137312c37372c392c3131302c3231352c3234312c3230342c34342c3235342c3132362c3139352c3232372c3230332c31362c3132352c33322c3234392c3233385d2c22696e6465786573223a5b312c332c342c352c362c382c31312c31322c31332c31352c31372c31382c31392c32302c32312c32322c32332c32372c32382c32392c33312c33322c33332c33362c33392c34302c34312c34322c34352c34382c34392c35302c35312c35322c35332c35342c35352c35362c35382c36302c36312c36322c36332c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37382c37392c38302c38312c38322c38342c38352c38382c39302c39312c39322c39332c39342c39352c39362c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136392c3134322c34392c39312c3133332c3234302c3130312c39322c3233352c3232312c3134382c31372c33302c35342c3130392c33302c3132352c35352c38312c3233382c3234302c3230392c3132322c37302c32372c3230372c3134352c3234332c3231392c3132322c3230322c39312c37392c3139302c3231342c3233322c3136322c3232352c372c36352c3138312c3234302c33382c3133372c37392c37392c35352c37352c31382c38332c3137392c38332c3131312c3234332c302c33342c3135322c3139332c3136312c3131392c372c3138352c322c36382c3139332c3131382c362c37392c36352c35342c31312c3234322c31302c3235302c3138312c38312c3137372c3230322c3139342c38382c31302c3133382c36392c36312c3135392c3137332c3139392c3132342c35382c302c3234332c3135372c35342c37312c3139312c35315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233372c3139362c3234382c38302c37352c3131312c3136302c3138392c3231392c3130382c3130332c3234332c32302c3130342c3132312c3131352c3138332c3136342c3231342c3137332c3232382c3139312c33372c38312c32312c35342c3131362c38352c3232332c33362c372c385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "68c9cf54825d99e1c7911be12e2bc143a3e329ed1eb6a675f55cf02cd4c85606": { + "hash": "68c9cf54825d99e1c7911be12e2bc143a3e329ed1eb6a675f55cf02cd4c85606", + "previous_hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", + "epoch": 53, + "signed_entity_type": { + "CardanoStakeDistribution": 52 + }, + "beacon": { + "network": "devnet", + "epoch": 53, + "immutable_file_number": 17 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:20.414278827Z", + "sealed_at": "2024-09-09T12:59:20.805180116Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b352c3232302c3139322c3234352c33342c37312c3130392c3131372c3138302c3231352c3138362c3135322c3137352c33302c31342c32342c3235332c3132382c3230302c34392c36312c32392c3136362c3133352c3133362c3233352c3232322c35312c3130302c39332c3135342c315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "52", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + } + }, + "signed_message": "f48511e159f2544278244d1a2ff394b5efc18a99ce73285314d8b85f1f0bdb4c", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c3133392c3232342c3131332c33332c3136392c3134312c3131322c3234382c3139342c3234302c3138362c3232312c3234332c3235342c38352c3139392c33312c3232322c3138332c35362c3139332c3234342c34332c31372c3136372c3231362c33342c3231312c3234312c3235332c3136372c35312c302c36342c3132382c38352c3131362c3233352c3131322c3134372c3131312c3234352c3139342c3230312c3137322c3138382c3134365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c392c31302c31312c31322c31332c31342c31362c31392c32302c32312c32322c32332c32352c32362c32372c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34352c34362c34372c34382c35302c35312c35322c35332c35352c35372c35382c35392c36302c36312c36342c36352c36362c36372c36392c37302c37322c37342c37352c37362c37392c38312c38332c38342c38352c38362c38372c38382c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137372c3135312c3133332c3135352c3230372c3235312c3135382c34342c3234372c3134372c3139312c3233382c3134312c3230302c37312c39342c34372c38362c39312c39352c3232302c32322c36312c3232312c31392c3139392c34392c3231372c3137382c3133332c3132322c3135362c35322c35342c3230392c3138372c3137372c3136322c3131342c3135302c382c39332c31382c35392c3138342c3230352c37372c37372c342c3132312c31342c3230302c3234372c3134322c362c3137332c3134302c36332c3133382c3133382c37352c3230372c3232362c3131392c3231372c3233352c362c32392c37322c31392c3133352c3136362c332c38302c3133342c3234332c3136342c35392c362c3234312c3231382c3131392c3139372c3135392c3139342c3132302c3231332c3136352c3135312c3133362c3135332c33372c3234382c34312c3133332c315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3130342c39362c31362c3231382c34342c3136362c3135352c37372c3136362c3132392c3134382c3133302c3138332c3132342c3139382c3131372c372c3136372c35302c3131382c302c37312c3137332c36382c32342c3230362c3139312c3132352c3130372c33332c342c3131325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "69405b53ab346dc38451bb60402190db798e4237e552ed391e04ef1aede05524": { + "hash": "69405b53ab346dc38451bb60402190db798e4237e552ed391e04ef1aede05524", + "previous_hash": "101b59eb719edf64156551ea64817b68c7a65dd78a276682ab2451da0481d749", + "epoch": 20, + "signed_entity_type": { + "MithrilStakeDistribution": 20 + }, + "beacon": { + "network": "devnet", + "epoch": 20, + "immutable_file_number": 5 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:47.350383968Z", + "sealed_at": "2024-09-09T12:57:47.739317250Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232322c39312c33372c3230352c34392c3231392c3233352c3232332c31312c302c3233322c3234362c34392c3230332c3233352c3232342c32362c32322c3131332c3132312c3133362c3234382c3137322c3137302c33392c3137362c3234332c3137322c3139322c37302c31352c39375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "48414657e17e0a509b4c99848dc5ca3b767f2be41379c0800448549d93c46165", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31332c3234322c3230322c3134352c35352c34372c3133332c3130392c32392c35392c3232302c3136352c3132312c33342c3130372c3234372c3136312c3137342c3130372c38382c3132322c31372c3136362c3137332c34312c3235352c3234382c37372c3130362c3135362c3231362c36365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134312c39352c3230352c3136312c3136362c3138342c3134382c3230322c3134382c34322c35312c37362c3230342c39362c3134352c3138332c3139362c33312c3232352c37362c3138382c3230352c3231382c34332c3134382c342c3138372c36302c37362c382c3136332c38302c36352c36322c3131302c3135372c3230322c38382c3231312c34382c32302c3134392c372c3232332c37322c3136382c31322c3231335d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c392c31302c31322c31332c31342c31352c31362c31372c31382c32302c32332c32342c32352c32362c32372c32382c32392c33302c33332c33352c33362c33372c33382c34302c34312c34322c34342c34352c34362c34372c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37392c38302c38312c38332c38342c38352c38362c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137372c3135392c3134352c39342c3131392c39362c3136372c35312c35342c3135342c35362c3130342c3137312c36372c3131302c37342c3138322c3231312c38312c33392c37312c3130352c3233312c3133332c35332c3132352c362c3130362c3138382c39312c3136372c3232382c33312c35312c31342c31372c31372c3233332c3134302c3134342c3230352c3133372c3132332c33352c31332c3138362c3135302c39302c32302c32322c32342c3235322c35352c3232372c35392c3233342c3137312c3138372c32302c39332c37332c3139362c3135362c3130342c3137382c3231352c39362c3232362c36312c332c32302c3233372c38342c3138362c3230312c33322c37342c3131382c3232392c3234342c3132382c3133362c34362c3231302c3234392c3139312c36322c32372c38392c34302c3234382c32392c3132382c3130342c34382c37345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131322c3133352c3231322c3133392c35392c3137302c32302c32332c37382c33372c33332c33352c37312c3134362c332c3135322c3132392c3231342c3234392c3234322c3139352c36322c3132312c3234392c3232372c33372c34332c3139362c3232312c38392c3138322c3234325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "72624ce84ca83b2a92eafa1a4956d38c61306a1108f85e30e1c836747ff29aa0": { + "hash": "72624ce84ca83b2a92eafa1a4956d38c61306a1108f85e30e1c836747ff29aa0", + "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "epoch": 60, + "signed_entity_type": { + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 60, + "immutable_file_number": 20 + } + }, + "beacon": { + "network": "devnet", + "epoch": 60, + "immutable_file_number": 20 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:59:40.228503717Z", + "sealed_at": "2024-09-09T12:59:40.491353044Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "09b1889a7ccde96b5e6b543ad8ca4cbcde8503b240079b68e92d498da15ce352", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137392c3235312c3233352c37342c3136332c3234372c3130362c3134392c3130322c3232352c3231382c3133382c3132312c3135372c3131382c3233362c3134332c33392c362c3138322c3130362c31352c3234352c3235352c39302c372c35372c3233372c3231372c38382c39352c372c36372c34382c33382c32302c3130372c312c3134332c31342c33342c3131372c3135332c35382c32382c3232392c34362c3234385d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32332c32352c32362c32372c32382c33302c33322c33332c33342c33352c33362c33372c33382c33392c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35322c35332c35352c35362c36302c36312c36332c36342c36352c36372c36382c36392c37302c37312c37322c37342c37352c37362c37372c37382c38302c38312c38322c38332c38342c38352c38362c38372c38392c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136342c3230372c332c34332c33322c3232332c3130372c3232382c36382c352c3230342c3130362c35302c3234322c3131312c32362c34312c3135332c35352c3139352c3134332c3132392c32302c3139372c3133312c32392c33312c3137342c3230362c3133382c3135342c3130392c3139362c3233312c37322c3132372c332c33322c36322c34372c3130342c322c3234392c33322c3234392c3232312c3138322c33362c322c3134332c3234312c36332c3136312c3137342c3133312c32362c3234342c3136382c322c3232372c3135352c3231392c35342c37362c3232352c312c3135372c39352c39312c3131362c3135392c3230302c3131382c3131332c31312c37312c33372c3231322c3233312c3232352c3230322c3136342c39302c322c34362c332c35322c32322c3233352c32322c3133332c38342c342c3133302c3139312c3139305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137332c3131322c33382c3138302c3136392c3133332c3131302c37372c3234382c36332c38392c33332c3133332c3139322c35362c3137312c3131372c39302c3235352c39302c3234312c3233372c33312c31382c3137332c34332c3230382c34302c34362c35352c3234342c3135395d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "73011314dab467c86785ed30e896113f9149f0260a8f0d092f03e6f56edf23b9": { + "hash": "73011314dab467c86785ed30e896113f9149f0260a8f0d092f03e6f56edf23b9", + "previous_hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", + "epoch": 49, "signed_entity_type": { - "MithrilStakeDistribution": 10 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 49, + "immutable_file_number": 16 + } }, "beacon": { "network": "devnet", - "epoch": 10, - "immutable_file_number": 2 + "epoch": 49, + "immutable_file_number": 16 }, "metadata": { "network": "devnet", @@ -19,35 +1669,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:47.298357Z", - "sealed_at": "2024-08-08T15:14:47.298357Z", - "signers": [] + "initiated_at": "2024-09-09T12:59:09.649612436Z", + "sealed_at": "2024-09-09T12:59:09.910512957Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3234342c3139342c3232392c3233342c36312c3130362c3132382c3234342c3234372c3232362c3138372c3132342c3130352c3235352c3233342c39322c3139372c3134332c31322c3131332c3131342c352c3134372c39312c3231372c34382c35332c3232362c37312c362c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "dc678af3014f4432303dbbc4f8c4e79c3e89816eacf2bbea993072c8762ac45b", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "61fe3ddc40e5df94830eec07ce94ea2ffed2ff8e99760d0444745c7226fa823d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3234342c3139342c3232392c3233342c36312c3130362c3132382c3234342c3234372c3232362c3138372c3132342c3130352c3235352c3233342c39322c3139372c3134332c31322c3131332c3131342c352c3134372c39312c3231372c34382c35332c3232362c37312c362c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "", - "genesis_signature": "2ea2674c53e0e405a141bfd9fb43fc53c1190d08bc7a243657ef2b48699e29cc094e21bb7687033116d02ecb3ae2688e8bc5806cbe8c455ebeffea3fe146ed02" + "signed_message": "b318e2d3fd95f43eab9ab6dcc6a29f40ff321c5bcaa67daf53cb56dba64428e1", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137362c34382c3231382c34372c3137352c37332c3130362c37372c3231342c3138362c3230322c3137352c302c3131362c38332c3130342c3131362c3133342c33362c3233362c35322c3132332c3132312c34332c3231312c31332c3139362c37372c3235312c39312c3135322c38352c3134352c36322c3235312c3231392c3233322c332c3137342c3137392c3139352c36392c38342c3133322c3133392c3234352c3133372c3230395d2c22696e6465786573223a5b312c332c342c362c372c382c392c31302c31312c31322c31342c31352c31372c31382c31392c32302c32322c32332c32342c32352c32362c32372c32382c32392c33312c33322c33332c33342c33362c33372c33382c34332c34342c34362c34372c34382c35302c35312c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37362c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39302c39322c39332c39342c39362c39372c39392c3130315d2c227369676e65725f696e646578223a317d2c5b5b3135302c3137322c3136382c39312c34392c3135342c34362c3134372c312c3137342c3136312c3233332c3138332c37312c3234332c36382c3139312c34332c3133342c37302c332c3139332c3135372c3132302c34362c3231332c3138392c3134332c322c3137382c33362c33372c36362c3139362c3230392c3234322c3235332c3134332c3137302c39392c3132312c3232342c3235302c32382c35322c34362c35362c34392c302c31382c31312c3231312c3139362c32352c3138332c35392c3137382c3136352c35352c3233322c3231302c3130302c32382c3130372c34392c3131312c3131302c3232302c35322c3132352c3235342c36302c3233312c3232332c32382c3138372c31332c37312c3139312c3133352c34382c3235312c3130342c3131322c35332c3139352c3136352c3234352c34302c3235352c3130352c3235332c3139322c3130332c35312c37395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234322c3233392c3136332c35392c3135342c3138312c3235312c33392c3132312c3233312c3133302c3130352c34302c3131332c36332c3135312c35342c3137372c3231352c3136362c3131302c3130322c3138332c3136342c3133332c31322c3130312c362c31352c3135382c312c3136365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" }, - "09f24981f39bb8f26b3bca67a0bfef839ad9559d09484e6e26cff316aaf3c811": { - "hash": "09f24981f39bb8f26b3bca67a0bfef839ad9559d09484e6e26cff316aaf3c811", - "previous_hash": "87490bc637ba9af3e45dac7a8c86959bb983087a393475a14a4e9067338bfc4b", - "epoch": 16, + "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4": { + "hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", + "previous_hash": "4d674234cd3e602f78faea111462ddf994cc91222061df8627718b572a389afb", + "epoch": 48, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 16, - "immutable_file_number": 4 - } + "MithrilStakeDistribution": 48 }, "beacon": { "network": "devnet", - "epoch": 16, - "immutable_file_number": 4 + "epoch": 48, + "immutable_file_number": 15 }, "metadata": { "network": "devnet", @@ -57,41 +1709,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:04.795658Z", - "sealed_at": "2024-08-08T15:15:05.060246Z", + "initiated_at": "2024-09-09T12:59:05.890910721Z", + "sealed_at": "2024-09-09T12:59:06.283713437Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "ffd8474dfab70ee0f959633901baeda16cdd29357ac3faa4a86a5d08a68c0053", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b342c3134332c3139302c39342c3234382c3137392c3130382c33392c3133342c3131342c3235342c35362c3235342c3130382c3234392c3136302c39392c32362c3134382c3235302c3130352c3139352c39382c37392c3232322c3130312c31352c3233392c3138312c3136302c3130372c34395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "8bce1fca76b14de252244609eefb3162e1296a3d107b725c0b1e13be2ffbbda5", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c3134312c3232302c3231352c3232332c37342c3230382c3132312c34312c38312c3132382c3235322c3232372c37382c332c3139322c3232382c3135382c3136302c3233342c3131372c36302c3136342c3232322c3230312c3130382c34362c3134362c31392c3130302c3232302c39355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134312c3137352c3132312c3134372c3132302c32372c37382c39392c3230312c3133392c33352c34362c3233332c3230392c3139312c3230302c3133302c34302c35312c3130372c372c36352c33392c32312c3138392c3233312c3138392c32312c34332c38352c3137302c33362c3136322c38362c34372c3139312c31302c34352c3134352c37392c33372c34342c31332c39392c3231322c33372c33312c39365d2c22696e6465786573223a5b312c322c332c352c362c392c31312c31322c31332c31342c31352c31362c31382c31392c32312c32322c32332c32342c32352c32362c32372c32382c33302c33312c33322c33332c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34392c35312c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38362c38372c38382c38392c39302c39312c39332c39342c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133342c3130342c352c3136362c3131372c32332c36302c39362c3234332c34382c3137372c35342c32352c3134362c3136382c3134362c34372c372c31342c34322c3139312c3232392c37352c34362c392c3130342c35352c3137372c3233352c3139362c3135312c34332c352c3130372c3134302c33372c3131382c32382c3135382c32382c36372c3234342c34382c35382c3231352c3134302c3231392c3133312c31342c3234352c38352c37332c3137332c3138302c35382c3131372c3139342c39392c3133382c392c3234382c3231362c39382c3135332c3231372c3136342c3232382c3133322c3135322c3130352c3132342c3232312c31362c31392c34362c3233332c3135362c3230352c3137392c34322c3138342c3130382c31312c3137392c3136372c3139302c3136382c3131372c35382c3232372c33382c35312c3230382c3136392c3131342c32325d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3138322c3231382c35382c362c34352c3135382c39382c3233312c3232322c3130322c31392c39352c352c38342c34362c34332c3233382c3230352c3135302c32352c33322c3230332c34372c3234332c3133332c332c32382c37302c3230312c38342c3131352c34312c35342c3230332c3230352c3137372c31332c302c3134392c31362c31332c3131352c3231312c32392c3230332c3136352c3234302c3233345d2c22696e6465786573223a5b302c342c372c382c31302c31372c32302c32392c33342c34382c35322c36342c36352c37382c38342c38352c39322c39352c39362c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137362c34352c3137302c32362c35372c31332c3131302c36352c39312c35352c35302c38362c3134332c3133392c3234362c3135342c36392c39392c3135382c3132382c38382c3131322c3232342c3233322c38322c3134382c3139332c322c3136302c3134302c3234342c3134342c3139302c36302c3135372c3233332c3230332c38342c3138302c3232322c3132332c352c32302c3133342c3232372c3134392c3231362c36342c31352c3135372c3132392c3135342c39312c3135382c32332c3230372c3132372c35342c33312c312c3134362c3231312c3232362c3139312c3230372c3137382c3136382c39392c392c3233322c3138362c38302c38302c3135302c33302c39302c32332c32342c3233352c3131342c34392c3233342c3230352c3230362c3133352c3134312c3130362c38332c3130302c372c3232392c3231352c3135302c3133382c3133302c3139325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "c341a2585471a3efdfa3f5f234e792d6bb5df51cbb8ffb57ac5660016cb6e416", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c33332c31352c3230392c34332c3137352c3136362c36302c37362c3136382c3233392c39362c3233372c392c32372c31382c3235322c3134332c3231322c3136312c34372c33352c392c3132352c36352c342c3232322c302c33312c39322c37362c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137342c35352c3133352c372c37372c3137382c3233362c34372c35372c3233342c3234362c3136342c34382c392c38342c31342c3138332c3131362c3134342c3136322c3234382c35372c3134312c3232322c3135382c3133362c3233342c3231362c31312c3234352c3234332c3133322c3131342c3137382c3233362c3235322c3139352c3230372c3234382c38362c3136332c39302c3134342c34302c31372c35332c3135372c35335d2c22696e6465786573223a5b302c382c31302c31332c32322c32372c33392c34312c35332c35352c36322c36342c36372c37302c37382c38312c38322c38382c39395d2c227369676e65725f696e646578223a307d2c5b5b3133332c3134302c32332c33312c31382c3232322c3136322c3235302c3133372c34332c3137352c3137302c3231322c3130302c31312c3230302c3137362c3234302c3132312c3135362c32302c35312c3132312c3135332c3132302c3135382c37332c35382c34302c3131322c3233342c3136382c3139302c37362c3235342c3134342c3138352c35342c38362c3135322c3231332c34312c37322c3231352c3135352c32352c37382c3131312c392c3234322c37352c3232332c3133342c38352c3135352c3133342c36362c3136382c32352c3131312c3231322c39392c36332c35392c39332c362c3232332c35312c3231362c3130372c37392c36352c3133362c3132342c36332c3131312c39302c3136332c3231342c3135342c3137352c31352c3134322c36312c3131362c3131342c322c36352c37382c3234372c3133392c3134302c3234342c35332c32332c3131315d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3134302c3132322c3135322c38322c31382c32342c3235322c32362c39302c34372c3136392c3134322c35302c3133392c3232332c3131372c3233312c3230332c3131392c3134382c3131392c3135342c3135372c3134342c38342c3234312c3232362c3230382c3135382c34352c3133312c342c34312c36362c3233382c3139312c3231362c39372c3133352c3231302c33372c3233342c32342c3139352c3135332c32362c3235332c3135355d2c22696e6465786573223a5b322c332c342c352c362c372c392c31312c31322c31342c31352c31362c31382c31392c32302c32312c32332c32342c32352c32362c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c34302c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35342c35362c35372c35382c35392c36302c36312c36332c36352c36362c36382c36392c37312c37322c37332c37342c37362c37372c37392c38302c38332c38342c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137372c382c3136322c3138392c31392c312c362c36302c39302c3133322c3235342c3131332c322c3230372c3136352c3137352c3230362c35302c35342c3235322c3134322c3136392c3231392c39352c3130332c3133352c3137312c35342c3138392c3134302c3234302c37342c35312c3136392c3136372c3136312c31342c3139362c3138392c3139342c34382c3235322c37362c3134302c3233362c3137382c37302c33372c362c36322c3134332c3131372c3137302c3230392c3135302c3138312c33372c37362c31392c35342c3233352c33392c3130312c37302c39342c32362c332c37312c3235332c36362c3136392c3231302c3133322c352c3133342c32362c31372c3230382c3130372c3135362c3131372c3235322c3130392c35342c3230322c3138322c38332c3135312c352c3134332c32392c3137342c302c3233372c37392c35355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "0a24d68267578b6673b1b85cfa87a43cd12eb321523598338b3d7044bc7bc58d": { - "hash": "0a24d68267578b6673b1b85cfa87a43cd12eb321523598338b3d7044bc7bc58d", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 21, + "8478f709685731ce68e1cca798087b397f34a2d6849c6aacee8de9d2477fcbf4": { + "hash": "8478f709685731ce68e1cca798087b397f34a2d6849c6aacee8de9d2477fcbf4", + "previous_hash": "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230", + "epoch": 50, "signed_entity_type": { - "CardanoStakeDistribution": 20 + "CardanoStakeDistribution": 49 }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 50, + "immutable_file_number": 16 }, "metadata": { "network": "devnet", @@ -101,42 +1752,42 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:18.411894Z", - "sealed_at": "2024-08-08T15:15:18.674240Z", + "initiated_at": "2024-09-09T12:59:13.020088684Z", + "sealed_at": "2024-09-09T12:59:13.541613455Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "20", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "49", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "02d02c6b65451e0e0184d6d586ebf446905c419fbbdd41afade3ed9f203c8893", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134302c3232362c39372c3233392c38362c37362c35302c3131392c3134392c37372c38322c3137332c33382c3136302c3235302c34312c362c3134382c3131322c36382c3133382c3130332c35372c3232392c3139382c3137362c3234352c3134332c3130362c3231302c3135352c38372c3234382c3133362c362c3230302c3131382c3231372c37342c38302c35322c3232302c37382c37302c3136342c3130382c3130302c3135325d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31382c31392c32302c32312c32322c32332c32352c32362c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34322c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c37302c37312c37322c37332c37342c37352c37362c37372c37382c38302c38312c38322c38332c38372c38382c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136382c3135342c32382c3232312c35372c3137342c36372c32342c3134382c35362c3139392c3132382c3137352c38392c382c3233352c3139392c3232302c3235332c3133362c33342c3234352c3131382c3139382c3139322c3132302c302c3138332c3136332c3138382c3233302c32382c39342c34322c3139392c3232362c3130332c3135392c3235342c3233392c38342c3232362c31322c3135382c34382c31322c33352c3234302c372c32322c39382c3132352c3130362c3132302c3230322c3231322c3231312c3233302c3232392c3136352c3231372c3133392c3136342c37382c3136332c3234372c31372c37322c3130332c3133342c3137352c3139322c3136372c3231352c34392c3230382c3136342c32372c3133312c34382c3232362c34372c3138382c3232362c3233362c32382c35362c3232312c3131322c3135382c3133322c3138372c35372c3233312c35372c3133375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b302c372c32382c3132332c332c37372c3136392c3138392c3134362c39382c36372c31302c35342c37312c37302c3132302c3233312c3234332c3234382c3131302c31392c34372c37342c37312c31302c35312c34322c3131392c3231342c39322c3231342c3139365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "fdb6cef912087f02a15bc8cee14ea3f185dcfe328ce5754dd781773206f8f70d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133312c3135312c3134322c3131322c3230362c3139312c38302c3136392c39372c3133352c39372c3136362c35322c3135322c3233362c37322c39302c39342c352c3131392c3136362c3131372c3233392c35382c3136352c3233372c3131332c3231362c38352c3131392c37392c3230352c3230332c32362c3136342c3232332c332c3233312c33372c3133302c34392c3134362c34392c3134372c3233372c34302c3232312c33385d2c22696e6465786573223a5b302c312c322c332c362c372c382c31302c31312c31322c31352c31362c31372c31382c31392c32302c32312c32332c32342c32352c32372c33322c33332c33342c33352c33372c34302c34312c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35352c35372c35382c35392c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39322c39332c39352c39362c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133362c3136382c3139362c3137392c35392c39342c36312c32382c3131352c33392c3130362c3135302c3134312c32312c3132362c3234392c3234302c33382c3135362c3136362c3235332c32322c35352c36302c3135342c3135312c3233332c33312c312c37322c372c3233372c3134312c34382c35312c38362c3134392c3233392c38392c34372c3232332c3230302c3231372c33312c39302c3136362c3137302c3131332c382c3134352c3132312c31332c36342c3137382c34332c31392c3130352c31382c32382c3137332c3230392c32392c3138342c3230332c31322c3136342c3130372c3133342c33302c31332c3139372c3130302c3138372c3133382c37302c32372c3231312c39382c36372c33392c3132372c3130322c38382c3232332c382c35392c31342c372c3139302c37312c3133322c38302c3131302c37332c38322c3135365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231372c34302c3137322c33372c3138322c3230372c3137372c3130362c3235332c33352c37322c3138302c31352c3137372c34352c35362c36392c3131352c3134322c3132342c37312c37312c3232352c3232392c3138382c31302c3130302c3138342c32352c38322c3131322c3134315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "0b3be1cf8a535e75f775cd30f9af98f280eabd768b652c43e42732539b61d3ac": { - "hash": "0b3be1cf8a535e75f775cd30f9af98f280eabd768b652c43e42732539b61d3ac", - "previous_hash": "166055f65bda0742ea2324c70b6c529fc33cd7973b5deae8275360acd3dcd68d", - "epoch": 15, + "8523a61911ac4fd6713b3bfe6dfd01d5de855181cc844bc2bdc23c3e3cccd0e4": { + "hash": "8523a61911ac4fd6713b3bfe6dfd01d5de855181cc844bc2bdc23c3e3cccd0e4", + "previous_hash": "2c8066e4159e0547d3da9ad5f1e1a0f8d7470cc2f63901b0fe22bba850b7c3ef", + "epoch": 35, "signed_entity_type": { - "CardanoStakeDistribution": 14 + "MithrilStakeDistribution": 35 }, "beacon": { "network": "devnet", - "epoch": 15, - "immutable_file_number": 4 + "epoch": 35, + "immutable_file_number": 11 }, "metadata": { "network": "devnet", @@ -146,42 +1797,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:01.597751Z", - "sealed_at": "2024-08-08T15:15:01.988558Z", + "initiated_at": "2024-09-09T12:58:29.472335820Z", + "sealed_at": "2024-09-09T12:58:30.510350627Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c3134312c3232302c3231352c3232332c37342c3230382c3132312c34312c38312c3132382c3235322c3232372c37382c332c3139322c3232382c3135382c3136302c3233342c3131372c36302c3136342c3232322c3230312c3130382c34362c3134362c31392c3130302c3232302c39355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "14", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c3131302c3233362c3134382c3130372c3134302c3230312c3230392c3234342c37322c33312c3134392c3137352c38362c35382c3132312c3231312c3138352c3235322c3139322c38362c3131392c32332c31312c372c3137362c32392c39372c36382c36382c3139332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "4896935d9e8130643042c23ce35947d5dd9084b692dfbb0a35f2059473731a82", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131372c3135382c3133392c3132362c3133322c3138392c3139342c3233312c3231342c3137382c3131342c3136322c33362c3130342c34342c3134372c33362c3135362c32332c3132352c3137322c3234352c38372c3133392c32352c3138302c3134342c3235302c3235302c322c35322c3139395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133352c3139362c3230352c3231322c37392c3233382c3130372c39322c3133372c3131342c392c34392c39302c35302c35392c3136312c31322c3235302c32352c3133342c3135302c3132322c3131362c3139392c3136372c3137342c31382c31302c3138382c38392c3234382c39302c3135362c3233332c3234362c32302c3131372c3136302c3134312c31362c3134302c38362c3230332c3231372c3136392c3136362c3131382c33335d2c22696e6465786573223a5b302c322c332c342c352c362c382c392c31302c31312c31322c31332c31342c31362c31372c31382c32312c32322c32332c32342c32392c33302c33322c33332c33342c33352c33372c34312c34322c34332c34352c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35382c36302c36312c36322c36332c36342c36362c36372c36392c37312c37322c37332c37342c37352c37362c37382c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39312c39322c39342c39352c39362c39372c39382c39392c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3133332c38322c32382c3235312c39342c3233392c3130392c32302c3131312c3137312c3232332c3136392c33352c3133362c33392c3134372c302c3232302c3232322c3134302c3131332c3233362c3136392c35312c3133382c33332c3132312c3132322c3132352c3231302c38372c39382c36302c3132372c3138362c35382c3230392c32332c3131312c34312c3134392c37322c3231332c3234372c3135312c32322c3139362c35382c332c3234372c38332c3130392c3132362c34362c31302c39332c36302c3134382c3136362c3139352c37362c39392c3232372c3135392c37352c3133322c3234392c3232352c3234342c31312c38332c37332c3231322c38312c3230352c37332c3234322c3232312c3133352c36342c3130312c3135332c3134392c33312c3138312c3230352c3130322c3132302c39342c32382c36322c31302c3137362c3137322c3134332c38345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135322c35372c3137342c3130302c3139352c3132352c34302c3134372c35392c38352c32352c3232362c3232372c3139392c3136302c3132332c33322c3234362c3132362c33362c3132332c3132342c3130362c3139362c3133302c3131302c35362c3132372c322c3136312c3130322c35335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "50b46e89228ff2172ed94a13faf9d46c7b37d0f53eb48fceefb2ca487cc9dc36", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b332c36372c3135342c3133312c33342c3235312c3133302c31382c3132362c3137392c3133362c3231322c3233312c3136312c3132322c3232352c342c3132392c36322c33352c342c38312c3139322c3130382c3137342c3134392c3234332c3135302c33372c3135332c38332c36385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c3130382c36352c31302c37352c3132382c3131332c31392c3131362c3234342c3139362c3131322c3233342c39382c3234332c39312c34372c3132392c3135342c35312c33382c35382c33322c3233392c3139362c332c33352c3234362c3134332c3132332c38352c3231372c3139332c3137322c3234332c3234302c36362c3232392c3231372c32352c3131352c33372c3139332c3234352c32382c33392c36392c37365d2c22696e6465786573223a5b312c332c342c352c362c382c392c31312c31322c31332c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33372c33382c34302c34312c34322c34342c34352c34372c34382c34392c35302c35312c35322c35332c35352c35372c36302c36312c36332c36342c36372c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38312c38322c38342c38352c38362c38372c38392c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134362c3134392c3232322c37382c3230312c3131362c3130322c36302c37372c3138342c3131382c34382c3132312c3135352c3138352c382c31372c362c3137312c38392c3234332c3134342c3232362c3133352c3136362c34332c362c3232332c3136302c3137322c3133392c3133332c36372c37362c37392c392c3234332c39352c37372c3136392c3130322c3230302c322c33352c3230332c33382c3130352c3133332c31322c3234372c3234332c3234302c3232302c3231372c37332c39362c35312c3230322c3232332c3138392c362c3233352c3134342c3138332c34352c3234382c3134322c3130362c32342c3139342c3230382c3137322c3136382c3139352c3230322c3131342c3231372c38352c3234322c3133362c31322c362c37382c3131342c3135302c322c3132382c3235302c3138342c38352c3234352c34332c3134372c3234362c38342c35365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3136342c3235302c3130342c3233362c34332c32382c3137352c3130312c35372c3132352c3131312c3137342c3231332c38372c332c3132342c3131322c38392c3233382c36362c3132372c3230302c3234352c3130382c33392c3234342c39322c3132312c3231352c3133332c3230322c32375d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "158877a782f052cc9712b890c9416959684820b3837d19f69a066c4a33d0ca81": { - "hash": "158877a782f052cc9712b890c9416959684820b3837d19f69a066c4a33d0ca81", - "previous_hash": "200ab2987880b3e983b1113be17fefb0f1f12a2baeec3c00bab24f41b9c88687", - "epoch": 14, + "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f": { + "hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", + "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "epoch": 61, "signed_entity_type": { - "CardanoStakeDistribution": 13 + "MithrilStakeDistribution": 61 }, "beacon": { "network": "devnet", - "epoch": 14, - "immutable_file_number": 3 + "epoch": 61, + "immutable_file_number": 20 }, "metadata": { "network": "devnet", @@ -191,42 +1840,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:58.794662Z", - "sealed_at": "2024-08-08T15:14:59.058057Z", + "initiated_at": "2024-09-09T12:59:42.858335072Z", + "sealed_at": "2024-09-09T12:59:44.546445986Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131372c3135382c3133392c3132362c3133322c3138392c3139342c3233312c3231342c3137382c3131342c3136322c33362c3130342c34342c3134372c33362c3135362c32332c3132352c3137322c3234352c38372c3133392c32352c3138302c3134342c3235302c3235302c322c35322c3139395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "13", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "041ef69d6eb06717853dd0d8bb2d219d20ae866f142f81abe8d019124e10dfb2", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136312c3231352c31302c34392c3137312c3232352c39342c3233362c3232382c32342c3235312c37392c3135372c34342c33332c39302c39372c3137392c38352c3132332c37382c33362c3134382c3234362c3137392c3132322c3234312c3131312c3131382c32332c3139342c3137375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135332c33302c36362c3139352c3231332c37342c38342c33312c3235302c3139332c37342c31392c3131312c34312c34382c3137352c3235312c34382c3230352c3138352c35342c3233332c3138392c31302c35372c36312c3134382c3232372c3133372c39342c3135332c3135332c33352c3232312c33362c32302c3233372c36322c3136302c3135322c35372c3234362c3231322c3234312c37372c3134352c32332c3132335d2c22696e6465786573223a5b302c322c332c362c372c31302c31312c31322c31332c31352c31362c31372c31382c31392c32312c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34322c34332c34342c34352c34362c34372c34382c35302c35322c35332c35342c35352c35372c35382c35392c36312c36322c36332c36352c36382c37302c37312c37322c37332c37342c37352c37362c37382c38302c38322c38332c38342c38362c38372c38382c39302c39312c39322c39332c39342c39352c39382c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133382c39312c32352c32322c362c3134342c3138312c3132342c3138392c3130332c3135362c3131372c3139312c3131342c3133312c35352c35372c33342c3138392c3132332c31372c3231362c39302c34372c37372c3131372c3232302c35352c3135392c32362c3130342c32342c392c3231372c362c3135332c38372c3230322c3138322c3231372c3230312c3135302c35372c3130372c3136392c3231372c3137392c3139342c342c3130372c3132302c33382c3132332c3230342c3233392c32332c36302c3137372c3136392c3233362c3132322c3136362c3133322c32332c3233392c35392c3133332c3135392c36342c3132352c3131352c3130342c3138372c33372c34342c3134392c3130342c36342c38362c36322c3139342c3133302c3139332c3233342c3230362c3230322c36362c3136352c3233382c3230322c3134382c39372c3136342c33382c3134362c39365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132372c31382c3230352c3234352c39342c3234332c3133322c3139372c3231302c37312c3130382c362c3131362c3233332c3139322c3138312c3234332c3134372c3134372c39312c3135342c3132312c32352c38382c3132362c3231322c3231302c37312c3135362c3232392c3134372c3134375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "c7956a0623f530cd736e51ef05978d405d39ecfe7256f3f8e5c3118c2040b9a9", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c3134362c3234352c3231392c3230332c3130312c312c3232342c3233342c3130352c32302c3130342c3132382c36372c32352c3234352c3132392c31342c3138372c39332c3134372c3133352c36372c3132302c3131302c39312c33382c33352c3233342c3130362c31352c342c3130372c38312c3232312c3136362c39332c3130362c3233302c36382c3233382c32352c35352c3139352c32352c31322c32352c3139335d2c22696e6465786573223a5b302c312c332c362c372c392c31302c31322c31352c31372c31382c31392c32302c32322c32342c32352c32372c32392c33302c33312c33322c33332c33342c33352c33372c33382c34302c34332c34342c34362c35302c35312c35332c35352c35362c35372c36302c36312c36322c36332c36342c36362c36372c36392c37302c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38382c38392c39302c39312c39322c39332c39342c39362c39372c39382c39392c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133312c37332c33312c31302c34312c3235352c3234362c34362c3137332c3135382c31352c3136312c34352c3135392c3135392c3231302c37342c3139342c3231352c3136302c39372c3230372c3130322c36302c3135332c3138352c3138382c3231372c36382c3132392c3231352c3235302c3235332c37352c3234322c36352c3132382c34382c3130302c342c3135302c32392c33392c38312c36342c3233352c39312c3138342c31382c37392c3138392c3131352c33342c36382c3134342c3135302c34302c38362c3139362c31342c3136302c38352c37342c3230352c32352c39352c3234362c3234352c3233352c3232352c3132362c3133332c3132392c32342c3138312c39312c3133372c33322c3232322c3235322c3130352c33372c31392c3134342c35362c3136302c3134362c38372c3138302c3133382c3134332c3233392c3235352c37362c3131352c3138325d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133352c3230322c3139332c39392c3234322c32362c39342c3232322c3137352c3135352c3235322c32392c38302c38332c3234312c3131362c3139392c35352c38342c3136342c3135362c3131342c38312c3233372c33362c3131332c3235312c3136342c3139312c3230372c32332c39372c3131302c3135342c302c34362c3135352c3233302c3233372c39312c31312c36392c34332c3230332c3233342c3133352c3234382c3232315d2c22696e6465786573223a5b322c342c352c382c31312c31332c31342c31362c32312c32332c32362c33362c33392c34312c34322c34352c34382c35342c35392c36352c36382c37312c38332c38372c39352c3130312c3130325d2c227369676e65725f696e646578223a317d2c5b5b3136372c3134372c33302c3235332c3133342c3136332c38382c3134332c3231312c3233342c3136392c3136392c34352c3137332c3134392c31322c3234332c3235312c3132382c3135302c3231342c3137302c3137342c31322c3138312c362c35322c3135332c3131312c39302c3134352c33352c36372c3232342c3135392c3231342c38332c3131372c33332c3230312c3131352c3133382c3131342c3234382c31342c31372c3231382c3230352c31302c3137372c3131372c3231392c34312c3233392c3233332c37332c312c3137332c3235302c3135342c3230302c3133332c35362c3138312c3233302c33382c3235352c3133322c39362c3138332c31302c3130352c332c372c39362c3132392c3137312c3234342c34342c3133352c37332c3130372c37332c3134312c3230342c3133332c3132392c3131312c38302c38342c3132342c3137332c3230372c3233362c3232392c3235335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "166055f65bda0742ea2324c70b6c529fc33cd7973b5deae8275360acd3dcd68d": { - "hash": "166055f65bda0742ea2324c70b6c529fc33cd7973b5deae8275360acd3dcd68d", - "previous_hash": "200ab2987880b3e983b1113be17fefb0f1f12a2baeec3c00bab24f41b9c88687", - "epoch": 15, + "8ae6981cc6e17ef561f9466380cf3442d368e1b34d706f0690382ba24cd27299": { + "hash": "8ae6981cc6e17ef561f9466380cf3442d368e1b34d706f0690382ba24cd27299", + "previous_hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", + "epoch": 48, "signed_entity_type": { - "MithrilStakeDistribution": 15 + "CardanoStakeDistribution": 47 }, "beacon": { "network": "devnet", - "epoch": 15, - "immutable_file_number": 4 + "epoch": 48, + "immutable_file_number": 15 }, "metadata": { "network": "devnet", @@ -236,44 +1883,80 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:01.336578Z", - "sealed_at": "2024-08-08T15:15:01.466817Z", + "initiated_at": "2024-09-09T12:59:06.424224195Z", + "sealed_at": "2024-09-09T12:59:06.946064392Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c3134312c3232302c3231352c3232332c37342c3230382c3132312c34312c38312c3132382c3235322c3232372c37382c332c3139322c3232382c3135382c3136302c3233342c3131372c36302c3136342c3232322c3230312c3130382c34362c3134362c31392c3130302c3232302c39355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "47", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "e14fa14ac61cc55901fd20d899c8d815ee13edfff83f70eade5619c7ec82aa98", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131372c3135382c3133392c3132362c3133322c3138392c3139342c3233312c3231342c3137382c3131342c3136322c33362c3130342c34342c3134372c33362c3135362c32332c3132352c3137322c3234352c38372c3133392c32352c3138302c3134342c3235302c3235302c322c35322c3139395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134362c39312c3136312c39372c39392c3130342c3230302c3136312c37312c33352c3133372c31372c3139362c36322c3132382c3130322c38382c362c3139362c3233342c3230392c3131392c3137342c3234372c35302c39372c3131392c3136372c3135302c35312c3133372c3230382c3133302c32332c34312c33362c3231302c38312c3231312c3136342c34342c3131342c3232302c3139302c31362c38392c3139312c35325d2c22696e6465786573223a5b302c322c332c342c352c362c372c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33372c34302c34312c34322c34342c34372c34382c34392c35302c35312c35332c35342c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37372c37382c37392c38302c38312c38322c38332c38352c38392c39302c39322c39332c39342c39352c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133312c3131342c3230332c3233312c35362c3133382c38382c3131312c3231352c37352c37372c3230312c3234322c3233372c37382c31392c352c3137312c3139392c32352c3130312c3136372c3139322c38342c382c37342c3137362c34362c3233382c33372c3136392c39302c3231342c3230322c3232302c3132372c3234312c39392c35362c31352c33382c3132362c36382c3234392c3233392c302c37362c3134332c31362c3231382c3230332c3136332c3231312c3138372c3231312c33382c3131322c3136382c3137302c3139362c31342c3133332c3235332c3136352c3135322c35362c3133302c3137312c3134392c3131302c34352c3131392c3130342c3232372c3139312c3233362c36342c35352c3130322c36372c3233332c3136352c3231332c33352c34302c3231372c3233302c3231342c33392c3234302c35322c31322c3135392c39382c3134392c39365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131322c3130352c33352c3130332c37322c31352c372c33382c3234312c3234342c32312c3131312c3133382c37302c32362c3137352c33302c3131362c3134312c38342c3139312c35372c32342c3131332c3130352c39362c35372c36322c3131372c3135302c3232312c3135315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "a1eefcbf6873c75852efee047af47cdbfcf711ad46138c1a8854ff705ca44212", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c33332c31352c3230392c34332c3137352c3136362c36302c37362c3136382c3233392c39362c3233372c392c32372c31382c3235322c3134332c3231322c3136312c34372c33352c392c3132352c36352c342c3232322c302c33312c39322c37362c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c352c33312c3138312c3130392c37362c36392c38342c35332c3138322c3230342c3134332c37312c38302c38382c3230352c3130362c3133342c3130352c3235352c31322c3233312c3131392c33342c3132322c35362c3233372c36302c35312c3230362c3131302c35352c31302c3139392c3231302c3131312c3231312c3232302c3234302c392c3139392c3231322c3233332c31322c3232322c3231382c36342c38375d2c22696e6465786573223a5b312c322c332c352c372c382c392c31302c31312c31322c31332c31342c31362c31372c31382c31392c32302c32312c32322c32342c32352c32372c32382c33302c33312c33332c33342c33352c33362c33372c33382c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35322c35332c35342c35352c35372c35382c35392c36302c36312c36322c36342c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37372c37382c37392c38322c38332c38342c38362c38372c39312c39332c39342c39352c39362c39382c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133332c3134302c32332c33312c31382c3232322c3136322c3235302c3133372c34332c3137352c3137302c3231322c3130302c31312c3230302c3137362c3234302c3132312c3135362c32302c35312c3132312c3135332c3132302c3135382c37332c35382c34302c3131322c3233342c3136382c3139302c37362c3235342c3134342c3138352c35342c38362c3135322c3231332c34312c37322c3231352c3135352c32352c37382c3131312c392c3234322c37352c3232332c3133342c38352c3135352c3133342c36362c3136382c32352c3131312c3231322c39392c36332c35392c39332c362c3232332c35312c3231362c3130372c37392c36352c3133362c3132342c36332c3131312c39302c3136332c3231342c3135342c3137352c31352c3134322c36312c3131362c3131342c322c36352c37382c3234372c3133392c3134302c3234342c35332c32332c3131315d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3137312c38352c3135342c3135322c36382c3232352c3231342c3232362c3232352c32382c35332c34392c3131322c3137312c3233342c3133392c362c3134392c3130322c3131342c3132312c3130362c31372c3230392c3139382c3139362c3135392c35302c3131382c37312c38302c34312c3135312c31322c3132352c3133342c3233302c37392c38342c3231382c35362c32312c3138322c3231352c38342c37332c35362c3232385d2c22696e6465786573223a5b302c342c32332c32392c33322c33392c35312c35362c36332c36352c37322c38312c38352c38382c38392c39302c39322c39375d2c227369676e65725f696e646578223a317d2c5b5b3137372c382c3136322c3138392c31392c312c362c36302c39302c3133322c3235342c3131332c322c3230372c3136352c3137352c3230362c35302c35342c3235322c3134322c3136392c3231392c39352c3130332c3133352c3137312c35342c3138392c3134302c3234302c37342c35312c3136392c3136372c3136312c31342c3139362c3138392c3139342c34382c3235322c37362c3134302c3233362c3137382c37302c33372c362c36322c3134332c3131372c3137302c3230392c3135302c3138312c33372c37362c31392c35342c3233352c33392c3130312c37302c39342c32362c332c37312c3235332c36362c3136392c3231302c3133322c352c3133342c32362c31372c3230382c3130372c3135362c3131372c3235322c3130392c35342c3230322c3138322c38332c3135312c352c3134332c32392c3137342c302c3233372c37392c35355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "19e22d3da92b017f270c75bd311bd8a651ef41c6b67b65dc9451bd3a1b339407": { - "hash": "19e22d3da92b017f270c75bd311bd8a651ef41c6b67b65dc9451bd3a1b339407", - "previous_hash": "166055f65bda0742ea2324c70b6c529fc33cd7973b5deae8275360acd3dcd68d", - "epoch": 15, + "8ba1adefdeb0786042d6634a4ae11cbb75f3d384bbfcee5411681a052269dcd1": { + "hash": "8ba1adefdeb0786042d6634a4ae11cbb75f3d384bbfcee5411681a052269dcd1", + "previous_hash": "", + "epoch": 10, + "signed_entity_type": { + "MithrilStakeDistribution": 10 + }, + "beacon": { + "network": "devnet", + "epoch": 10, + "immutable_file_number": 2 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:57:19.532644377Z", + "sealed_at": "2024-09-09T12:57:19.532644878Z", + "signers": [] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232302c3235312c33382c34362c3131322c38382c322c3232382c3133302c38352c3134362c36302c33352c32372c3133302c34372c3133352c33392c3138362c38352c3235312c3234352c38322c34362c3234372c35322c35342c3139392c3134342c38312c3137362c31335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "583379059cd570b65eee63cf6b5dc2c4530200e1f29d9a6083de1de51053d76c", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232302c3235312c33382c34362c3131322c38382c322c3232382c3133302c38352c3134362c36302c33352c32372c3133302c34372c3133352c33392c3138362c38352c3235312c3234352c38322c34362c3234372c35322c35342c3139392c3134342c38312c3137362c31335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "", + "genesis_signature": "1c2a3b6aec3fd6144ad0ce64ac31a77f74794f7fcb3b1173b8347b88474acb8dfae1231c4731c7cc8c584fb7606276ada406f72b8f830e62f60d9fe3f343740d" + }, + "8e066a60bf13f02745a9b7b865d22340ea15b7114c9b271243758bad03099fba": { + "hash": "8e066a60bf13f02745a9b7b865d22340ea15b7114c9b271243758bad03099fba", + "previous_hash": "0b751dba41d63a0771578176044df8634418c6ef06eff541c9d87b1ec5fc7e6b", + "epoch": 39, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 15, - "immutable_file_number": 4 + "epoch": 39, + "immutable_file_number": 12 } }, "beacon": { "network": "devnet", - "epoch": 15, - "immutable_file_number": 4 + "epoch": 39, + "immutable_file_number": 12 }, "metadata": { "network": "devnet", @@ -283,41 +1966,119 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:02.120257Z", - "sealed_at": "2024-08-08T15:15:02.506232Z", + "initiated_at": "2024-09-09T12:58:42.288258585Z", + "sealed_at": "2024-09-09T12:58:42.549722498Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 - }, + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "1d819bc6f4e565ca0e4f3b87ca6cd2ea6b0e3dcd0d159dc6af26945eaffd9b2f", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233352c3133362c37322c37312c3234342c3130342c3130382c3137322c3138392c36302c37342c3132342c3235332c3230382c35312c3138302c342c3133352c382c3134362c3130312c3138312c3131362c3232382c3130342c3139372c3136392c3139312c3136362c35342c36332c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "2c45d76687d7528cc2dcd1fd36319d338506c2cbece974be6b6e9b140553b7c2", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139322c3131372c3234382c342c3235302c3137302c3139352c31382c33342c33342c3230342c3132302c3235332c37352c3230392c34332c3232322c35392c3232332c3138312c3230342c3232382c3137322c31372c3231382c38332c3130392c36322c3235302c37382c352c35305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138332c3131332c3138352c37362c3138352c3231332c3231302c35322c3233352c3135342c3232372c3131372c31382c38382c3132312c39322c362c3232362c38382c38382c39392c34352c3130322c3136372c35352c3131372c3231392c39362c31342c3234322c352c3131302c3137332c3136392c33302c3131332c36342c3132352c34392c34372c35332c31382c3135302c35362c37352c3130362c33342c3232305d2c22696e6465786573223a5b302c312c322c332c352c362c372c31302c31322c31332c31342c31362c31372c31382c31392c32312c32322c32342c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35332c35352c35362c35372c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38382c38392c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136302c37342c33322c31322c342c3138352c3139342c3136392c39362c3132312c3136342c3138362c3133372c3134382c36322c39332c3131382c33352c3130302c3137352c35332c3138372c3234392c322c3133362c37342c3234322c35392c3136352c382c32312c3234392c31392c31312c3131332c37362c3231382c38352c3136332c3135322c35302c38312c3133372c34392c362c37372c3132382c3135322c32322c3130382c3135322c3136342c39312c3232362c3130362c35362c3138322c3231322c3137352c3131362c3133342c37322c3133392c34312c3235302c39322c3139382c38352c3133332c35382c36342c32302c3235342c34382c39362c3135302c39392c35312c3137352c34372c34322c3130312c3133372c31342c3135342c39352c32332c3231342c3136342c3230312c3130392c3137362c3135362c3132362c372c3231395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b36372c3131362c36302c3133302c32382c3135312c3131342c3233352c3134392c37382c32352c3137352c312c3135392c372c3234312c3232372c3232352c33302c3138382c34382c3130372c3232342c3134312c3231382c33362c3235332c3233392c3136312c3134302c3134392c335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "90d3c928a0b60701b6aa6ea0e8aebb646ffefa587ac270b616fc3e3b8a16e441": { + "hash": "90d3c928a0b60701b6aa6ea0e8aebb646ffefa587ac270b616fc3e3b8a16e441", + "previous_hash": "d402d98d38cadd400a4bc23af1d7a5a1ca86fdf9b6111d304315bda72d0b8ac8", + "epoch": 41, + "signed_entity_type": { + "CardanoStakeDistribution": 40 + }, + "beacon": { + "network": "devnet", + "epoch": 41, + "immutable_file_number": 13 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:46.935992340Z", + "sealed_at": "2024-09-09T12:58:47.456554606Z", + "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "ad6be483fbb3188a8c4f90a4235954ba0ceffa566b37a458cf0e2ab001303e76", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c3134312c3232302c3231352c3232332c37342c3230382c3132312c34312c38312c3132382c3235322c3232372c37382c332c3139322c3232382c3135382c3136302c3233342c3131372c36302c3136342c3232322c3230312c3130382c34362c3134362c31392c3130302c3232302c39355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "40", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "9214a5eece4cfdebe49d5f58e975f3191e9bf2ce48b332245e63cfb037d0a07b", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131372c3135382c3133392c3132362c3133322c3138392c3139342c3233312c3231342c3137382c3131342c3136322c33362c3130342c34342c3134372c33362c3135362c32332c3132352c3137322c3234352c38372c3133392c32352c3138302c3134342c3235302c3235302c322c35322c3139395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137342c3232362c39362c3232362c38372c35342c37322c3131302c31362c3230382c3138362c3134322c34312c332c3137372c36382c302c372c382c3138302c3139322c34312c3131312c3136332c3138392c34362c3233382c3135352c3132312c3131342c3230342c3230372c3139302c3138312c3133312c3135352c3139362c3232332c3133352c3131322c3130322c38372c3136362c3131392c3134332c342c33332c3136365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c31312c31332c31342c31352c31372c31382c31392c32302c32312c32322c32332c32352c32392c33312c33332c33342c33352c33362c33392c34312c34322c34342c34352c34362c34372c34392c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36322c36332c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37372c37392c38322c38332c38362c38372c38382c38392c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3133332c38322c32382c3235312c39342c3233392c3130392c32302c3131312c3137312c3232332c3136392c33352c3133362c33392c3134372c302c3232302c3232322c3134302c3131332c3233362c3136392c35312c3133382c33332c3132312c3132322c3132352c3231302c38372c39382c36302c3132372c3138362c35382c3230392c32332c3131312c34312c3134392c37322c3231332c3234372c3135312c32322c3139362c35382c332c3234372c38332c3130392c3132362c34362c31302c39332c36302c3134382c3136362c3139352c37362c39392c3232372c3135392c37352c3133322c3234392c3232352c3234342c31312c38332c37332c3231322c38312c3230352c37332c3234322c3232312c3133352c36342c3130312c3135332c3134392c33312c3138312c3230352c3130322c3132302c39342c32382c36322c31302c3137362c3137322c3134332c38345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135322c35372c3137342c3130302c3139352c3132352c34302c3134372c35392c38352c32352c3232362c3232372c3139392c3136302c3132332c33322c3234362c3132362c33362c3132332c3132342c3130362c3139362c3133302c3131302c35362c3132372c322c3136312c3130322c35335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "591d5e967158922d17a2f7e8b16be0f9bb9d695140dfca6ee3670592c5ac079e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c31362c33372c34392c3137362c3234352c3134392c31362c3137352c35302c33392c3235302c33312c3131312c3134312c3230332c3136372c36372c3130302c3138372c38342c3234392c3234362c3131392c3230342c34342c3135322c31302c3231352c3132342c3235302c3138322c3137342c31312c34312c332c3232342c3231342c35342c3235342c3133392c3134352c38302c3231362c3138352c34342c382c34325d2c22696e6465786573223a5b322c362c372c382c392c31302c31312c31332c31342c31352c31362c31372c31392c32302c32312c32322c32342c32352c32362c32372c32382c32392c33302c33332c33362c33372c33382c33392c34312c34322c34332c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35382c35392c36302c36322c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39302c39312c39322c39342c39352c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134302c3133322c39372c3231372c37342c38302c31352c3136332c3138362c312c36302c38352c31332c3230352c3137302c3139372c3135362c3234352c3131382c33322c37362c3133312c3139352c3230372c32362c3230352c33382c3231352c3139302c3130362c35342c3235302c3135392c3232322c3232392c38342c3139312c3230392c3137332c3230322c31302c35362c3133382c3134382c3134392c3232322c36382c3139392c382c3234302c3134372c39362c37332c3131372c3130322c3230362c3137302c31352c3139352c3137322c3138332c3136302c3135322c3234332c3231302c3137332c38372c36332c332c3234392c3231382c37312c3232302c3136322c3137352c39332c3138342c36382c3130332c3133362c3134372c35382c3138352c3233322c31322c3138322c31382c3232332c32342c31312c3136302c35362c32392c3137372c33342c3134325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135322c3132342c3139372c3131382c3133302c32302c3133302c33312c3134312c33312c31302c31392c3130332c33332c39302c3233312c32392c36342c3135322c3133352c3132392c352c3232342c302c3135332c3231322c3136382c32382c3131362c3134372c3136352c39325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "200ab2987880b3e983b1113be17fefb0f1f12a2baeec3c00bab24f41b9c88687": { - "hash": "200ab2987880b3e983b1113be17fefb0f1f12a2baeec3c00bab24f41b9c88687", - "previous_hash": "cc7fa14cbccc78ff1492430d391a20cb579ae1ffa85724060a27954360108068", - "epoch": 14, + "96c79d6fe626fb73aeb7e4c61083522cd23aa0b5cbfe54fcf5e7bd75ec2c066e": { + "hash": "96c79d6fe626fb73aeb7e4c61083522cd23aa0b5cbfe54fcf5e7bd75ec2c066e", + "previous_hash": "aa84c4ed03004982f9667958a701b223be8d452905a460a36f452be26bc81132", + "epoch": 42, "signed_entity_type": { - "MithrilStakeDistribution": 14 + "CardanoStakeDistribution": 41 }, "beacon": { "network": "devnet", - "epoch": 14, - "immutable_file_number": 3 + "epoch": 42, + "immutable_file_number": 13 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:50.441524972Z", + "sealed_at": "2024-09-09T12:58:50.703729157Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "41", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + } + }, + "signed_message": "1d6b2b475bd1310ccf1f74be18a23b3af71171d823b7f7e23fcd7cc537cf9a51", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134312c32392c34302c3231322c3133342c3136352c3132332c3230332c332c3138332c35392c3135352c37302c3134352c3233342c35322c32312c3130372c3134382c3133312c3139322c38382c3230342c31322c31362c39332c3133322c3131322c31362c39382c3233302c3233322c33352c31342c3233362c33342c3134382c3133372c3135382c36382c32312c322c3233302c38362c382c3133322c3139372c3233345d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31392c32302c32312c32322c32332c32352c32362c32382c32392c33302c33312c33322c33332c33352c33362c33372c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36322c36352c36362c36372c36392c37302c37332c37342c37352c37362c37372c37392c38302c38312c38322c38342c38352c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136392c3134302c3136362c32352c3136322c3231382c3139362c3235302c3137332c3136352c3230392c3131392c31312c3135322c3139362c3233312c32312c36332c3132372c3134362c3139392c38302c3131382c3133392c3230312c3137372c3231372c3234322c3135322c3231342c3235352c3230322c3130312c3133302c39352c3234342c3134372c3230372c3138352c37392c3138332c34382c3136372c3131372c3132382c3235342c3138302c34312c31352c32392c34352c3135382c3138362c3137342c382c3230392c3132332c3230382c3134312c39302c34342c3134372c3234392c3139332c3233322c3138372c3130302c3137392c3134362c3235312c352c3231332c36382c3137312c3231332c31342c3139362c3139322c3138332c3135372c32362c33332c38342c3131382c3133362c3131332c3234342c3138382c3138382c3231302c34352c3136372c31342c3131322c3131392c3231335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233332c3131342c3139392c33392c3131362c36302c3230382c3139322c35312c31392c39342c3130312c3132372c36352c34372c3138322c38332c39382c39372c35332c39322c3132362c34372c3137342c3132342c3137302c3135392c34372c3139362c36342c3233392c34385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "999060ce6efe54123b205e5fa74d312f9d1e9f3c9a4b8c12cc2747b0b6157486": { + "hash": "999060ce6efe54123b205e5fa74d312f9d1e9f3c9a4b8c12cc2747b0b6157486", + "previous_hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", + "epoch": 44, + "signed_entity_type": { + "CardanoStakeDistribution": 43 + }, + "beacon": { + "network": "devnet", + "epoch": 44, + "immutable_file_number": 14 }, "metadata": { "network": "devnet", @@ -327,44 +2088,124 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:58.528305Z", - "sealed_at": "2024-08-08T15:14:58.660947Z", + "initiated_at": "2024-09-09T12:58:55.176416401Z", + "sealed_at": "2024-09-09T12:58:55.700889152Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131372c3135382c3133392c3132362c3133322c3138392c3139342c3233312c3231342c3137382c3131342c3136322c33362c3130342c34342c3134372c33362c3135362c32332c3132352c3137322c3234352c38372c3133392c32352c3138302c3134342c3235302c3235302c322c35322c3139395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "43", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "939804f83abca39ef2a01bfb23aa35efcc4fec7d50f77a35ea069c4323292ab2", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136312c3231352c31302c34392c3137312c3232352c39342c3233362c3232382c32342c3235312c37392c3135372c34342c33332c39302c39372c3137392c38352c3132332c37382c33362c3134382c3234362c3137392c3132322c3234312c3131312c3131382c32332c3139342c3137375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c3232372c3135332c3137372c3130392c3231372c3231372c3138342c3234362c3235312c3138382c3135372c3133302c33342c3230372c3136392c3137312c32302c3133392c3230302c35342c3231372c38362c3234372c3134332c3139302c3138342c3136392c3133382c3233322c37392c3131372c33322c36332c34322c3130392c37302c392c3232352c3230392c32312c3231342c3137382c38332c3135362c39342c3132362c3234305d2c22696e6465786573223a5b302c322c342c352c362c372c392c31312c31332c31342c31372c31382c31392c32312c32322c32332c32342c32362c32372c32382c32392c33302c33312c33322c33332c33352c33362c33382c33392c34302c34312c34322c34342c34352c34372c34382c34392c35342c35372c35382c36302c36322c36332c36342c36372c36382c36392c37302c37312c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39322c39332c39342c39352c39362c39372c39382c39392c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133382c39312c32352c32322c362c3134342c3138312c3132342c3138392c3130332c3135362c3131372c3139312c3131342c3133312c35352c35372c33342c3138392c3132332c31372c3231362c39302c34372c37372c3131372c3232302c35352c3135392c32362c3130342c32342c392c3231372c362c3135332c38372c3230322c3138322c3231372c3230312c3135302c35372c3130372c3136392c3231372c3137392c3139342c342c3130372c3132302c33382c3132332c3230342c3233392c32332c36302c3137372c3136392c3233362c3132322c3136362c3133322c32332c3233392c35392c3133332c3135392c36342c3132352c3131352c3130342c3138372c33372c34342c3134392c3130342c36342c38362c36322c3139342c3133302c3139332c3233342c3230362c3230322c36362c3136352c3233382c3230322c3134382c39372c3136342c33382c3134362c39365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132372c31382c3230352c3234352c39342c3234332c3133322c3139372c3231302c37312c3130382c362c3131362c3233332c3139322c3138312c3234332c3134372c3134372c39312c3135342c3132312c32352c38382c3132362c3231322c3231302c37312c3135362c3232392c3134372c3134375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "badf9df0eed8f4f1f918843f5eeaae76e4cb55d3391e1b0cb248eeb2b233db19", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135312c3233362c34332c34352c3234342c3230332c32362c3136382c322c3137332c3233322c3130332c3235342c38312c3232382c37372c3231392c3133362c3134322c34342c3132382c3136342c3134332c33392c3136382c34322c3136342c3131382c3231322c3135332c3139342c35342c37332c39362c3235312c3133302c362c3138332c3139302c3235352c31322c36322c3134332c35312c32352c36362c3136332c3233395d2c22696e6465786573223a5b322c342c352c362c382c392c31302c31312c31332c31342c31352c31372c31382c32302c32312c32342c32372c32382c32392c33312c33322c33332c33342c33372c33382c33392c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35342c35352c35372c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37382c38302c38312c38322c38352c38372c38382c38392c39302c39332c39342c39352c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134392c33342c34362c3133352c34362c3136382c39382c31322c37312c3134302c3132372c33372c3235312c35372c3234352c36342c3135322c3139332c372c36362c31392c32372c3136302c3234322c38312c3131312c3136352c3131312c3134382c3230352c3235352c31322c3138342c3135342c3132362c3136312c3138332c38332c3231342c3132382c3139302c31362c3234302c35342c3232342c3134342c3231322c35372c32312c3235352c3232372c37312c36332c35342c3230352c32392c38382c39392c3132392c37332c3136382c3233322c31302c3231352c3134382c3136352c3231302c37302c3132392c3133302c3132382c33372c3232372c3135342c37382c38392c3231382c332c32362c36352c3137372c3130302c34352c3137312c3234392c3131342c31362c3138372c33392c3134312c3138312c3136302c3233302c3135352c3134382c3130385d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3138352c3130342c35392c31322c3130392c34352c3132342c39372c38312c3233372c31352c39362c3137312c3139392c34302c3139342c3134382c32312c35382c3134372c32352c3233322c32352c3137302c3138332c33352c3232362c37382c3133322c35392c34342c33302c3235332c3233342c32322c33322c36342c3130312c31372c32332c38382c3231362c3139332c36352c39322c3130392c39332c3132355d2c22696e6465786573223a5b302c332c372c31322c31362c31392c32322c32332c32352c32362c33352c33362c34302c34312c34362c35332c37372c37392c38332c38362c39312c39322c39362c39372c3130315d2c227369676e65725f696e646578223a317d2c5b5b3136362c3232322c3231392c3139362c38362c3138322c392c3231302c3134392c3134362c392c3132322c3136362c33382c332c31302c3231382c3132342c3134332c3234382c38382c3234322c392c3131382c31352c3130362c3134342c352c3135312c3231312c3231322c37372c3231322c3233392c31362c3233342c36372c3232302c39322c34392c3133322c34342c31322c3232362c3134302c3138382c3130392c3136382c31362c3232372c34392c3232302c3232322c3131352c3132362c3231312c31382c34332c3139392c3131322c31362c36322c3136302c3234392c3139312c3134372c38332c35322c39352c3230382c3139392c3131312c3234302c3139392c3135392c3139332c3232372c3230312c3134342c3137382c3232332c31372c3232362c3139342c33322c3133382c32382c39362c39352c3139332c3232322c31342c3131312c3235322c38342c3232355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "28954190408384ec332a56190cbb457bdb296096e077168dd7287378ab5a1085": { - "hash": "28954190408384ec332a56190cbb457bdb296096e077168dd7287378ab5a1085", - "previous_hash": "968118eff75386e71874bd2388e00c0c5d3cac7ece65cebf9f60f0754341a710", - "epoch": 12, + "a25e25fe1e22b13420b390233d763008a0ed390616a295c170a8fbb65202f0c7": { + "hash": "a25e25fe1e22b13420b390233d763008a0ed390616a295c170a8fbb65202f0c7", + "previous_hash": "ee9ff754e1ab8a1e6facf4f721abff6c688ac394eb0e2186dab3a8a9b034b0cb", + "epoch": 38, + "signed_entity_type": { + "MithrilStakeDistribution": 38 + }, + "beacon": { + "network": "devnet", + "epoch": 38, + "immutable_file_number": 12 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:37.941727395Z", + "sealed_at": "2024-09-09T12:58:38.720961176Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139322c3131372c3234382c342c3235302c3137302c3139352c31382c33342c33342c3230342c3132302c3235332c37352c3230392c34332c3232322c35392c3232332c3138312c3230342c3232382c3137322c31372c3231382c38332c3130392c36322c3235302c37382c352c35305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "2d5940316f900b4ef93986ff3b498f0fb1dd6e2e7fe25878915245ca326212ce", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37342c35382c352c3232322c3138352c39362c33302c3232322c3139372c3139302c39372c36312c3133392c3136362c32332c3138322c37322c3233362c3135372c3136352c32372c3135332c3138342c31312c3231382c37302c38352c3130392c312c3133372c3138342c3138325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134352c3135312c3139312c3233352c3133382c37342c37382c33322c33352c3134352c3132362c34322c32362c3130312c34372c302c3231332c33382c39332c32312c3133312c3131302c36302c3138322c3136382c3232332c3133372c392c33312c34352c31332c3132302c3232302c32382c3233352c3131322c3235312c39332c3134362c3234372c3131372c36362c33322c3234322c3135332c35352c38362c35325d2c22696e6465786573223a5b302c312c322c342c352c372c382c392c31302c31312c31322c31332c31342c31352c31362c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33392c34302c34312c34322c34342c34352c34362c34372c34382c35302c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36352c36362c36372c37302c37312c37322c37342c37362c37382c37392c38302c38332c38342c38352c38362c38382c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137382c3232322c3234322c3136322c3138392c34362c3136322c32342c38322c3133322c3137322c3134392c38302c3130372c322c3134372c3139332c39332c3138362c3233302c3234382c3137322c3136302c31332c3134382c3131392c3135332c3137362c35352c3138312c3234392c3234342c3136352c3234342c362c37312c3230382c3130382c3230312c37362c32342c3234342c3130362c3132302c3135332c3130352c3230392c35372c32352c3234372c3136312c34342c32302c36332c3233392c36392c3234322c3230302c37352c36372c39382c35382c3134372c35312c3137322c3137332c3233342c37342c3137322c322c342c3138392c3132302c362c3233312c3136302c3135382c3137302c3235322c3230392c36322c3134332c38372c382c3233352c3135362c3130352c3230382c34392c3133332c3137352c3230392c37382c3235342c3138342c3232375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33372c3230362c38352c3231302c3132372c3233382c3232312c3231332c39342c362c3231312c3139332c31352c33332c3137362c3136382c3231332c3234362c3133382c37332c3135322c3230382c3230332c3139352c3138392c3133342c3134312c3131362c3139332c3135322c38302c3133345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "a2aa3c28351b86b3516170e7e09c100ba88ab8af244038e036333d34c6cc98a2": { + "hash": "a2aa3c28351b86b3516170e7e09c100ba88ab8af244038e036333d34c6cc98a2", + "previous_hash": "0b751dba41d63a0771578176044df8634418c6ef06eff541c9d87b1ec5fc7e6b", + "epoch": 40, + "signed_entity_type": { + "MithrilStakeDistribution": 40 + }, + "beacon": { + "network": "devnet", + "epoch": 40, + "immutable_file_number": 12 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:43.447486949Z", + "sealed_at": "2024-09-09T12:58:43.706590188Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "44db64e31740de6871f66537a7b13989b1e57bda1442d25f8efe97f09a828a3e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233352c3133362c37322c37312c3234342c3130342c3130382c3137322c3138392c36302c37342c3132342c3235332c3230382c35312c3138302c342c3133352c382c3134362c3130312c3138312c3131362c3232382c3130342c3139372c3136392c3139312c3136362c35342c36332c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3132352c38332c3139362c3230362c31342c3137382c3234302c3139352c3234322c32372c312c3131322c3136312c3130332c36362c3130372c35352c3132352c33302c3139392c31322c38342c3130352c3133392c35302c3131322c32322c3231352c3132372c35392c32322c3134332c3233352c3131352c32302c3131342c3136332c3130392c3136372c3135392c31382c3130352c33302c3139352c3137332c37362c3136345d2c22696e6465786573223a5b322c332c342c352c382c392c31302c31312c31322c31332c31362c31372c31392c32312c32322c32332c32342c32352c32372c32382c32392c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34352c34362c34372c35302c35312c35332c35342c35352c35372c35382c35392c36322c36332c36342c36362c36372c36382c37302c37322c37332c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39302c39312c39322c39332c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136382c362c32392c3232332c3133332c3133332c3131392c3136312c3231362c3139302c3139382c3230342c35352c3134322c35332c3233302c32392c3137362c3133332c3135362c3135342c3235352c3230362c3130322c37392c3234322c35342c3230352c3231302c3137372c3135382c36302c3132362c38332c3133372c3134302c3231312c35382c3232322c3233372c3232342c31372c3138302c3130342c31322c37352c38342c3133372c322c3136312c3235332c3233372c31382c3135372c33342c3135392c3139302c3231382c3139342c37332c3138392c38372c39302c34372c36372c3235312c35352c3234342c3138352c3231392c3137322c3132302c36322c35352c39382c3133352c3234352c35322c3133342c3133332c32322c3137302c362c33352c3130372c3135382c33392c3135372c31322c33372c35362c362c32382c35352c31332c3134365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33332c35372c3135322c3135372c3135352c3231372c33362c34332c3131342c3138312c3231312c3130342c34332c33362c3139322c33312c3138332c3138372c34322c33382c3130372c3234312c3135382c3131382c3233382c3132302c32342c33382c31342c3134382c33332c35365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "a7f1202c8f8a07db6bd6de70c9a5e8031f268be1d3c20f91721edcf04c3e6a57": { + "hash": "a7f1202c8f8a07db6bd6de70c9a5e8031f268be1d3c20f91721edcf04c3e6a57", + "previous_hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", + "epoch": 43, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 12, - "immutable_file_number": 3 + "epoch": 43, + "immutable_file_number": 14 } }, "beacon": { "network": "devnet", - "epoch": 12, - "immutable_file_number": 3 + "epoch": 43, + "immutable_file_number": 14 }, "metadata": { "network": "devnet", @@ -374,45 +2215,164 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:53.639113Z", - "sealed_at": "2024-08-08T15:14:54.030069Z", + "initiated_at": "2024-09-09T12:58:52.931768175Z", + "sealed_at": "2024-09-09T12:58:53.193372670Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 - }, + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "8035c6f09d157b2587680344d25ddb0d4629cdf44aa3d54e86b59d71a7c341fd", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "43043df572349632fb9e8bc1d966acfa993b0099096075ffe616e7543b9b1071", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134352c35352c3231322c3135302c32332c3234332c3131352c38342c39332c3233362c3233342c3135362c31332c31392c3230392c3135332c392c34302c3137372c3132352c35372c39332c3235332c3231372c3231342c38372c32392c35372c39392c3130342c3231332c3231362c3130312c3139302c31352c3136312c3132382c33322c3130352c3234342c3131362c3131372c3136312c38362c3232302c3234362c3132352c3231395d2c22696e6465786573223a5b312c322c332c342c352c362c382c392c31302c31332c31342c31352c31382c31392c32302c32312c32332c32342c32362c32372c32382c32392c33302c33312c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c35312c35352c35372c35382c35392c36302c36312c36322c36332c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c38302c38312c38322c38342c38352c38372c38392c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136382c36332c3138352c3230312c31322c33302c37382c3230382c362c35382c3131392c3138382c3138332c3130372c3232312c36372c3139322c31312c39372c3138362c3131302c35332c39352c3134362c3134312c34332c3133382c35342c3234362c3234302c3136362c3232392c3233362c3234352c3132382c3139312c3133382c39312c34332c32362c3230332c3138302c3130342c3234352c3230372c33382c38352c3133312c372c3235352c3137322c35332c33392c33352c33382c3137352c32372c3133322c38312c38302c3235322c3232392c3230382c3130322c3233312c3235342c3132392c3231322c3230312c3232352c3230362c3132342c3231302c3138342c3132312c3135362c3131312c3134312c3132342c3137342c3132342c3132362c32332c39322c3136382c39352c3233342c3234372c3134332c3233352c3135362c38372c3234372c37342c3131302c3132385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137372c36322c3136372c3231352c38362c3131392c3231312c39322c33342c3131332c3137332c3234372c37382c3130352c3131322c342c3232332c3130332c3234372c3132332c37322c3131332c37382c35322c3132392c3231382c3134372c3135312c3135372c3235312c34302c3235345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "aa84c4ed03004982f9667958a701b223be8d452905a460a36f452be26bc81132": { + "hash": "aa84c4ed03004982f9667958a701b223be8d452905a460a36f452be26bc81132", + "previous_hash": "d402d98d38cadd400a4bc23af1d7a5a1ca86fdf9b6111d304315bda72d0b8ac8", + "epoch": 42, + "signed_entity_type": { + "MithrilStakeDistribution": 42 + }, + "beacon": { + "network": "devnet", + "epoch": 42, + "immutable_file_number": 13 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:49.129953279Z", + "sealed_at": "2024-09-09T12:58:50.296830339Z", + "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "5d9ba2d185d9a37979f5c0f64d97fb38e0d354148e6c649266de086c0bf687d7", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137322c3132342c36312c3130372c33372c312c3230352c33332c3230392c3233392c34302c3133382c3137322c3130352c37322c3132372c3139312c3234332c3234372c39312c362c342c3131372c3235312c33342c3135372c3234352c3234382c3137372c3135322c3130322c3131375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "7734e47cb32f874c3843c2cdce64cb2b1e9dd99ba2152868b37986d318e7adb6", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230382c3232352c3235332c32392c38372c3137372c3137312c3133392c3233322c37362c3138362c3137332c33372c35322c34352c3235342c3138382c3133332c3231332c39342c38392c3135302c3230372c3138322c3232332c3231362c3135342c3136362c3134342c34312c3133302c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134352c34392c33362c3230392c3233312c3230392c3135312c3139322c35372c33352c3232372c3131382c38352c36362c39322c3137322c35352c3136342c3235302c3137382c3232332c342c3131332c3136302c3234302c3233322c3136392c3138312c37362c33342c3235352c3234312c3130332c39392c3231302c35372c35392c3233302c3234332c35342c3133392c3232362c3131372c3233302c3139322c3230372c38352c31395d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31312c31322c31362c31382c31392c32302c32312c32322c32332c32342c32352c32382c33302c33322c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36362c36372c36382c37312c37342c37352c37362c37372c37382c38312c38322c38342c38352c38372c38392c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3133322c3136362c3137302c38312c3138382c37392c34312c3131352c3137322c3139342c3131382c37322c34392c38322c38382c37312c332c35382c34302c3132362c39392c3133302c3234392c3133372c36392c33372c3134372c3139352c3130332c37392c37322c3232372c35302c35372c3136302c33332c3232312c3232342c3135312c3137352c3139312c33322c38362c3230352c32312c3132332c3230312c3130352c392c312c32312c34332c3131372c31392c37362c3136312c3230352c33302c36382c3135392c38382c3138332c3131332c3233322c32382c3139302c3132302c33312c3133342c3230382c34392c39302c3233392c3136372c37392c3232302c34342c32352c3135352c3233342c37322c3234382c3130362c3135372c3233302c3233312c3130352c3136352c372c3133332c372c34362c3139362c36392c34382c37395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35342c3233382c3233362c33382c3130382c3233352c34372c36372c3232312c33382c3234382c3137382c37312c3136322c3139382c3232382c372c3135342c3136352c3130312c3139352c33322c3138312c3137372c38342c3231392c3137312c39382c3231382c35372c3138382c3232315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "96b088304f7cbbfab8ec65673305b2482e2aa871260790795cb665bf3ecff5c3", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c32392c3231362c3232362c3231312c3133392c38322c32322c3130392c3230342c3137382c3234312c33382c372c3132332c3231332c3137352c3132362c3134352c3136362c39322c31362c31352c3138342c3138372c38322c3234302c3132322c3233302c3131342c36382c3133322c3134312c3131302c3232342c3133382c3134372c3234362c34382c3136332c36372c3132302c3234382c39312c33392c3134382c37322c3134315d2c22696e6465786573223a5b302c312c322c332c342c352c372c382c392c31302c31312c31322c31332c31342c31352c31362c31392c32312c32332c32342c32362c32382c32392c33302c33312c33342c33352c33362c33372c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c36312c36322c36332c36342c36372c36382c36392c37312c37322c37332c37342c37352c37382c37392c38302c38322c38332c38342c38352c38362c38382c39302c39312c39322c39332c39342c39352c39362c39372c39392c3130302c3130312c3130335d2c227369676e65725f696e646578223a307d2c5b5b3132392c3233312c3134312c39332c39332c3235302c38372c37372c3235352c3235312c3234392c3231302c3135392c39362c3130322c3135322c3134372c3234352c3132372c3139362c3134322c3135392c32312c372c3138362c3134382c3231392c38302c392c3130332c3136332c34302c39392c3231342c3233332c3133332c3233302c3231372c352c39322c39332c3133302c3132342c3132322c3231352c3137322c3131362c3137322c32352c3231322c37352c3136342c3137332c33332c352c3234372c33362c3232392c39362c3137302c3135332c32372c362c352c3131332c3137362c38302c3131312c3138382c38382c3231322c35372c3139352c37372c38302c3235302c3230352c362c34382c35362c3138382c37362c3138312c3130362c3136382c38312c3137312c3139352c3134362c3231312c35302c3136362c3230392c3131332c3137332c32365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231322c3135302c3131372c3138382c3132342c3234332c31392c3132372c3134382c36312c3235322c3134312c37322c3131322c3131392c3133372c3230372c3133392c312c3138312c3132362c3139392c33392c3235322c3131382c3139352c3231312c3231352c3233362c3230382c3133382c375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "38eb044e2f9aa114f91e322346ae184651aba3f3811ccb17a6c6a55809e3b706": { - "hash": "38eb044e2f9aa114f91e322346ae184651aba3f3811ccb17a6c6a55809e3b706", - "previous_hash": "200ab2987880b3e983b1113be17fefb0f1f12a2baeec3c00bab24f41b9c88687", - "epoch": 14, + "abd22dc580ac6cfd94ccf1f4eb1bdf53056ff78fd8e243da886b3a0a1142d24c": { + "hash": "abd22dc580ac6cfd94ccf1f4eb1bdf53056ff78fd8e243da886b3a0a1142d24c", + "previous_hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", + "epoch": 44, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 14, - "immutable_file_number": 4 + "epoch": 44, + "immutable_file_number": 14 + } + }, + "beacon": { + "network": "devnet", + "epoch": 44, + "immutable_file_number": 14 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:55.852235919Z", + "sealed_at": "2024-09-09T12:58:56.247390578Z", + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + } + }, + "signed_message": "436887ab2688c43d484846b66cf59bdad54fb11570287e8caf764ec60f4ab727", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136322c3134392c3131342c34392c35372c3230342c3135372c31322c3233362c35312c3231322c3130372c3134312c33392c3130392c39392c35392c31372c35352c3230392c31382c31312c3234382c3138352c3136302c3234372c3134382c33322c352c3133362c3131332c32362c3133342c33342c39312c3130352c3133372c3131392c3230372c3230302c36382c392c3132372c34302c3136312c3135322c35382c3135325d2c22696e6465786573223a5b302c322c332c342c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31392c32302c32312c32322c32342c32352c32362c32372c32382c33302c33312c33322c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34392c35302c35322c35332c35352c35362c35382c35392c36302c36312c36322c36332c36362c36372c36392c37302c37312c37322c37342c37352c37362c37372c37382c37392c38302c38312c38332c38342c38362c38372c38382c38392c39322c39342c39352c39362c39382c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134392c33342c34362c3133352c34362c3136382c39382c31322c37312c3134302c3132372c33372c3235312c35372c3234352c36342c3135322c3139332c372c36362c31392c32372c3136302c3234322c38312c3131312c3136352c3131312c3134382c3230352c3235352c31322c3138342c3135342c3132362c3136312c3138332c38332c3231342c3132382c3139302c31362c3234302c35342c3232342c3134342c3231322c35372c32312c3235352c3232372c37312c36332c35342c3230352c32392c38382c39392c3132392c37332c3136382c3233322c31302c3231352c3134382c3136352c3231302c37302c3132392c3133302c3132382c33372c3232372c3135342c37382c38392c3231382c332c32362c36352c3137372c3130302c34352c3137312c3234392c3131342c31362c3138372c33392c3134312c3138312c3136302c3233302c3135352c3134382c3130385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234312c3131372c3132392c37312c3132312c392c3138382c35392c39302c3235322c3139352c35362c3139362c3133392c33372c32322c3130332c3136382c3132312c3232382c3135382c3130352c3131382c3135312c3131322c352c3234362c3232322c3131392c36312c3137352c3134315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163": { + "hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", + "previous_hash": "f1454af28e0468031c76f8c3423dec3a32c94932ea0a373926f1658a3c8f5be2", + "epoch": 32, + "signed_entity_type": { + "CardanoTransactions": [ + 32, + 1139 + ] + }, + "beacon": { + "network": "devnet", + "epoch": 32, + "immutable_file_number": 10 + }, + "metadata": { + "network": "devnet", + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-09-09T12:58:22.626948632Z", + "sealed_at": "2024-09-09T12:58:23.400102763Z", + "signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "stake": 13333333334 + } + ] + }, + "protocol_message": { + "message_parts": { + "cardano_transactions_merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c3135332c3132322c38372c39362c3233332c3133332c39362c3232332c39312c35342c31362c39302c3231352c3135312c38372c32352c3137322c3138312c362c31342c34382c3134322c362c3234302c3139392c3232352c3139382c3137352c3231332c37302c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "1139" } }, + "signed_message": "f40652d8e5fd4f574e7e8417d8b1c5d10487165c789aebb3e6202aa9123d9278", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138302c31342c31302c31342c3231362c3139342c3234332c3132362c35342c3132302c32352c332c3232312c35332c34362c31332c35312c3136312c372c3230302c3135312c36382c3136372c3230362c38352c3139342c34332c31312c37302c3133382c3137362c36355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134372c3232362c39392c3139302c332c3137322c3235352c3139362c3232302c3133322c3135382c31392c34312c39362c3131332c34392c302c3232332c3234352c39332c3136322c3133322c35352c34302c3135342c3232342c3235332c3133302c3133372c31372c3136332c32372c302c35382c3138302c36392c32302c3230302c33302c33352c3138342c3233332c3230352c3137392c3233322c362c3232322c3233385d2c22696e6465786573223a5b302c312c322c342c352c362c382c392c31302c31322c31332c31342c31352c31362c31372c32312c32322c32332c32342c32362c32372c32382c32392c33312c33332c33342c33382c33392c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36372c36382c36392c37312c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38382c38392c39312c39342c39352c39362c39372c39382c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137332c3133312c3230352c35332c34332c3132382c34342c3136302c3233342c3230382c31382c38312c3133312c3132362c31372c39342c3136352c35352c3137392c31332c34322c3139332c37352c3230302c36362c352c3230372c3234332c3135332c36362c36372c31332c3231312c3133302c3132312c3233352c3230332c352c31372c3131352c3233372c36312c33382c33362c3139312c3130362c35332c3138332c32322c3232362c37322c382c36342c3137352c35372c3133322c3130302c37352c3138382c3130392c3230302c32322c3137382c3139392c3232362c3230312c35342c3132342c3233342c3230372c3234382c34312c3137352c34392c3131362c32372c3130312c3134382c3234392c3231322c39362c3135312c3134382c3139352c3234372c3231322c312c37362c3235342c38392c32392c3131352c3234322c3235302c39372c3230395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3136302c33372c3136302c31342c35352c33322c3233322c35342c33372c3135302c3233322c3231352c38382c3137312c3139312c3230302c36302c3230362c3133352c3132312c31382c3132342c3133332c3131382c37372c3138362c3133372c34332c3234392c3133362c37372c36325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "genesis_signature": "" + }, + "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5": { + "hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", + "previous_hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", + "epoch": 53, + "signed_entity_type": { + "MithrilStakeDistribution": 53 + }, "beacon": { "network": "devnet", - "epoch": 14, - "immutable_file_number": 4 + "epoch": 53, + "immutable_file_number": 17 }, "metadata": { "network": "devnet", @@ -422,45 +2382,44 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:00.000243Z", - "sealed_at": "2024-08-08T15:15:00.261623Z", + "initiated_at": "2024-09-09T12:59:19.880251776Z", + "sealed_at": "2024-09-09T12:59:20.275177193Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "10f44fc59eb88f1844f52350ed9469526cc11df7d53a33663129421e1971c068", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131372c3135382c3133392c3132362c3133322c3138392c3139342c3233312c3231342c3137382c3131342c3136322c33362c3130342c34342c3134372c33362c3135362c32332c3132352c3137322c3234352c38372c3133392c32352c3138302c3134342c3235302c3235302c322c35322c3139395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b352c3232302c3139322c3234352c33342c37312c3130392c3131372c3138302c3231352c3138362c3135322c3137352c33302c31342c32342c3235332c3132382c3230302c34392c36312c32392c3136362c3133352c3133362c3233352c3232322c35312c3130302c39332c3135342c315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "d498d48348421b713b100cde987a04268d051f24616dad30b2d08af72c45dee9", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136312c3231352c31302c34392c3137312c3232352c39342c3233362c3232382c32342c3235312c37392c3135372c34342c33332c39302c39372c3137392c38352c3132332c37382c33362c3134382c3234362c3137392c3132322c3234312c3131312c3131382c32332c3139342c3137375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c39322c37322c31352c362c3133382c3136362c31322c3231302c36382c3132352c3131352c3230342c3233372c3232362c3234332c3134362c34322c37332c3133312c37372c37322c3133312c3137362c31372c3131312c3139352c3130382c33352c342c3136342c34392c3231332c3132322c36312c3130362c3230352c3138302c3134352c3234352c322c36342c34382c3133392c3136332c3138352c3230362c375d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c392c31302c31322c31332c31342c31352c31362c31382c31392c32302c32312c32322c32332c32342c32362c32372c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34362c34372c34382c35312c35322c35332c35342c35352c35362c35372c36302c36312c36322c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c38302c38322c38342c38352c38362c38372c38382c38392c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133382c39312c32352c32322c362c3134342c3138312c3132342c3138392c3130332c3135362c3131372c3139312c3131342c3133312c35352c35372c33342c3138392c3132332c31372c3231362c39302c34372c37372c3131372c3232302c35352c3135392c32362c3130342c32342c392c3231372c362c3135332c38372c3230322c3138322c3231372c3230312c3135302c35372c3130372c3136392c3231372c3137392c3139342c342c3130372c3132302c33382c3132332c3230342c3233392c32332c36302c3137372c3136392c3233362c3132322c3136362c3133322c32332c3233392c35392c3133332c3135392c36342c3132352c3131352c3130342c3138372c33372c34342c3134392c3130342c36342c38362c36322c3139342c3133302c3139332c3233342c3230362c3230322c36362c3136352c3233382c3230322c3134382c39372c3136342c33382c3134362c39365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132372c31382c3230352c3234352c39342c3234332c3133322c3139372c3231302c37312c3130382c362c3131362c3233332c3139322c3138312c3234332c3134372c3134372c39312c3135342c3132312c32352c38382c3132362c3231322c3231302c37312c3135362c3232392c3134372c3134375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "fed1bf1f3cffdc655f6ad57197cde692a803802f74f1b3d1ab821fd8e3fbd757", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138312c32382c3132372c3131302c3135332c3231302c36362c3139362c35362c3132322c35302c3137332c3230372c38392c36382c3139302c3135352c3135302c32312c39372c38302c33312c3136392c36342c32392c3230362c37372c35302c3135352c3139352c3139372c3232382c34322c362c3130302c39392c32302c302c35322c3232362c3230392c31332c3132352c3134312c31372c3136332c35382c36345d2c22696e6465786573223a5b302c362c392c31322c32302c32332c32382c33302c33352c34312c37322c37352c38322c39372c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134342c3234342c3233362c3230332c3130372c31362c3136312c36392c3131302c3230362c3137322c36322c342c31352c31392c3235332c33342c35312c3235322c39342c3138352c31392c3138352c3231372c3233322c3131372c3230342c3232302c36352c3233362c3134352c3234342c33362c3234392c3234312c34342c3138372c3133342c32312c3139372c33322c3234362c3230352c34332c36332c36372c3231322c3133352c31312c3134342c3235322c39342c39392c3139362c3230372c3135392c3137382c3132392c3138392c3130382c39302c302c3131322c342c3235302c3137362c3230312c39342c3233382c3230392c3138322c3230312c3233352c3130362c35312c362c3133372c39382c3136392c38322c3134342c34372c3130332c37312c3131312c35372c3134332c3139322c3231392c3136392c39312c3132362c3133392c3130362c36392c3233345d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3134382c35302c37382c3233312c33342c3138312c3230372c31372c3232352c3234312c39382c3133312c3234332c3130352c3232362c3132342c3133352c39342c38322c3231332c31392c3134352c3232302c35342c38342c35302c3131332c3133302c31322c3232332c3133372c35382c3130342c35392c3232332c3138322c34362c38322c3136392c3233322c3135362c34332c3133392c3130342c3234312c3232382c3136302c33395d2c22696e6465786573223a5b312c322c332c342c352c372c382c31302c31312c31332c31342c31352c31362c31372c31382c31392c32312c32322c32342c32352c32362c32372c32392c33312c33332c33342c33362c33372c33382c33392c34302c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37332c37342c37362c37372c37382c37392c38302c38312c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137372c3135312c3133332c3135352c3230372c3235312c3135382c34342c3234372c3134372c3139312c3233382c3134312c3230302c37312c39342c34372c38362c39312c39352c3232302c32322c36312c3232312c31392c3139392c34392c3231372c3137382c3133332c3132322c3135362c35322c35342c3230392c3138372c3137372c3136322c3131342c3135302c382c39332c31382c35392c3138342c3230352c37372c37372c342c3132312c31342c3230302c3234372c3134322c362c3137332c3134302c36332c3133382c3133382c37352c3230372c3232362c3131392c3231372c3233352c362c32392c37322c31392c3133352c3136362c332c38302c3133342c3234332c3136342c35392c362c3234312c3231382c3131392c3139372c3135392c3139342c3132302c3231332c3136352c3135312c3133362c3135332c33372c3234382c34312c3133332c315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "3f4710e4e33dbf5737f52bf2bfd1817d35492bf2e0c238e36b317e7938d20ace": { - "hash": "3f4710e4e33dbf5737f52bf2bfd1817d35492bf2e0c238e36b317e7938d20ace", - "previous_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "epoch": 19, + "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9": { + "hash": "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9", + "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "epoch": 56, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 56, + "immutable_file_number": 18 } }, "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 56, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -470,45 +2429,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:13.251756Z", - "sealed_at": "2024-08-08T15:15:13.511170Z", + "initiated_at": "2024-09-09T12:59:29.386268509Z", + "sealed_at": "2024-09-09T12:59:29.909816033Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "45ccdb65ee7b4090511eca72232566d33f8d2c3c1c0db73cca2667cda5621a92", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "3180d9eb8f57a4fc228952d1f39efe97de7f3d4884afc0d57e4e6e2cebc6063e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134372c3135382c35322c32322c3130312c3138332c3138312c3138362c3138392c3234372c322c3131362c3231392c322c38322c3233322c3131332c3234392c35312c3135312c33312c32332c3234332c36332c3137392c37382c36332c3132302c37332c36382c3131302c3134302c3137302c32332c3233362c3130312c33332c32362c3235342c3131332c3135312c3133342c32312c33312c3133302c3139332c3138342c3136315d2c22696e6465786573223a5b302c322c332c342c352c362c372c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33352c33372c33392c34302c34312c34322c34332c34342c34352c34362c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36322c36332c36342c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38382c38392c39312c39322c39342c39362c39372c39382c39392c3130302c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137372c3232382c35392c32392c3136302c3136392c3130382c3131342c3138312c3137362c31322c3135332c352c3235352c3233382c3232372c39302c3233322c3233312c3230342c3131352c38312c3137302c3139342c36322c35322c3232352c3230362c35342c3132302c3230322c3139362c3134342c3232382c3232312c35392c3130312c3135342c3232342c38362c3136302c3232392c37352c3233362c3133312c36302c3137302c35332c302c34372c3230352c392c3233302c3136382c3130342c3139362c3232332c3130342c3138352c3232332c3137352c3138302c37352c36352c3234392c37352c3130302c36342c3231352c3132382c3133312c3230322c3135362c36382c34312c3131392c3231372c3138322c3136392c3137312c31342c35312c3234342c3131342c3137392c3138382c3137332c3132362c36322c31322c35322c3232382c3137322c3134332c39352c35365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232382c3138372c3137372c3135382c35332c3139312c3137362c3130312c35322c34312c36382c38352c3230372c3136332c3232372c3133312c3139342c37382c35342c3137342c36322c3135332c3136342c3234312c36372c38392c3130312c3231332c34342c3136362c33332c3234345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "4b8f5d360e448ba376fab4563bd57d49c707617a382fc16f2fd5e30ea6a761de", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136362c38352c33332c31382c3132342c37392c3234392c3136352c3134302c3134362c3233382c34352c32332c34332c3137302c3133322c3235332c3137362c3130312c35342c3136312c3133342c38302c3136302c3234392c31312c3130372c3134312c3130312c3134302c37372c3233322c3133382c3138352c3132322c3132342c32372c3134342c37382c3136312c3130312c32392c39332c3136302c37382c34392c36392c3233375d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c32302c32322c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37332c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39302c39312c39332c39342c39352c39362c39372c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c3137312c36362c34332c3130332c3234332c3231302c332c3130392c3131392c3231372c33382c3230342c35392c31342c38322c3235332c3133312c37362c3234382c37342c35342c3234362c3136392c37352c3134342c3136312c34302c34332c3235312c37332c3131302c3235312c352c37372c31352c3131372c37332c3131302c35392c34372c3137302c31382c3133302c3130332c37372c3137372c39372c322c38332c3132332c3234372c35332c3139372c37362c3135392c3235322c36342c3139382c3232332c36362c32302c3138352c3234342c3231322c3233322c302c38372c39332c3130372c3134362c3233302c3235322c3139352c3135382c3232312c37312c3131382c3135342c3134332c37362c3233322c3136302c39392c39362c3136302c35302c3134362c37372c35372c3230312c3130302c35302c3133322c38322c3133325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3130362c3235332c322c3132322c35392c32302c3133392c35372c3139302c38372c3234332c3133352c31342c3232352c3134392c3234332c3231322c3137302c3232362c3132312c3133342c3234362c34392c3232302c39322c3130362c3133382c3134332c39372c31392c372c3139385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "43c2ada1189224af8d82fb901666eadf6915193146a136774469ff5b8109a288": { - "hash": "43c2ada1189224af8d82fb901666eadf6915193146a136774469ff5b8109a288", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 21, + "bb634f5aea5ceb4ece0a807375c17e6326d83102617a71267eb7eb6671041df0": { + "hash": "bb634f5aea5ceb4ece0a807375c17e6326d83102617a71267eb7eb6671041df0", + "previous_hash": "a2aa3c28351b86b3516170e7e09c100ba88ab8af244038e036333d34c6cc98a2", + "epoch": 40, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 - } + "CardanoStakeDistribution": 39 }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 40, + "immutable_file_number": 13 }, "metadata": { "network": "devnet", @@ -518,41 +2469,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:18.809985Z", - "sealed_at": "2024-08-08T15:15:19.074782Z", + "initiated_at": "2024-09-09T12:58:43.842655611Z", + "sealed_at": "2024-09-09T12:58:44.240202510Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "stake": 13333333334 - }, - { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "5dec5797333aa8227beb1278173d3014484d1b52b05df10cf47604ca2baa1631", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "39", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "d3044893d7280ea480dadd70dd6865488cb16ae719a136c10b2ab5730d795aa1", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134372c38392c3139372c3130312c3136332c3138342c3137392c3135362c32322c3131342c3131362c36352c3132372c3235322c35362c33392c3231372c31342c31322c3230392c3233372c3133322c332c36392c3233382c3230342c3136332c32302c3231362c32382c33372c38372c36302c322c38392c3232322c3139332c35322c32392c3134312c36312c32372c3139312c39302c3132342c3137342c3138392c3136345d2c22696e6465786573223a5b302c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32392c33322c33342c33352c33362c33372c33382c34302c34312c34322c34342c34352c34362c34372c34392c35302c35312c35322c35332c35342c35362c35372c35392c36312c36322c36332c36342c36352c36372c36382c36392c37302c37322c37332c37352c37362c37382c37392c38302c38312c38322c38332c38342c38362c38372c38382c38392c39302c39322c39332c39352c39362c39372c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3136382c3135342c32382c3232312c35372c3137342c36372c32342c3134382c35362c3139392c3132382c3137352c38392c382c3233352c3139392c3232302c3235332c3133362c33342c3234352c3131382c3139382c3139322c3132302c302c3138332c3136332c3138382c3233302c32382c39342c34322c3139392c3232362c3130332c3135392c3235342c3233392c38342c3232362c31322c3135382c34382c31322c33352c3234302c372c32322c39382c3132352c3130362c3132302c3230322c3231322c3231312c3233302c3232392c3136352c3231372c3133392c3136342c37382c3136332c3234372c31372c37322c3130332c3133342c3137352c3139322c3136372c3231352c34392c3230382c3136342c32372c3133312c34382c3232362c34372c3138382c3232362c3233362c32382c35362c3232312c3131322c3135382c3133322c3138372c35372c3233312c35372c3133375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b302c372c32382c3132332c332c37372c3136392c3138392c3134362c39382c36372c31302c35342c37312c37302c3132302c3233312c3234332c3234382c3131302c31392c34372c37342c37312c31302c35312c34322c3131392c3231342c39322c3231342c3139365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "8845afdc3d9bfa3b91fdddee09e5ba72232b0f2894393b371b128b260050b003", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233352c3133362c37322c37312c3234342c3130342c3130382c3137322c3138392c36302c37342c3132342c3235332c3230382c35312c3138302c342c3133352c382c3134362c3130312c3138312c3131362c3232382c3130342c3139372c3136392c3139312c3136362c35342c36332c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137362c3232392c3230372c3138392c34382c3134302c3131362c3135362c3132392c3137312c3135382c3135302c3233362c3139352c3134372c3135352c3136392c352c33352c3135382c3131312c3234372c35382c3230332c35382c36332c3138302c3137362c34372c3138342c3133362c35352c3234302c3134362c3132362c39352c3233342c3137352c3231302c37372c3137382c36342c312c3130392c3135342c3235342c3235322c3131305d2c22696e6465786573223a5b302c312c322c332c342c352c372c392c31312c31322c31332c31342c31352c31362c31382c31392c32352c32362c32392c33302c33312c33322c33332c33352c33372c33392c34302c34312c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35372c35382c35392c36312c36322c36332c36342c36362c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38362c38372c38382c38392c39312c39322c39332c39342c39352c39362c39372c39382c3130302c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136382c362c32392c3232332c3133332c3133332c3131392c3136312c3231362c3139302c3139382c3230342c35352c3134322c35332c3233302c32392c3137362c3133332c3135362c3135342c3235352c3230362c3130322c37392c3234322c35342c3230352c3231302c3137372c3135382c36302c3132362c38332c3133372c3134302c3231312c35382c3232322c3233372c3232342c31372c3138302c3130342c31322c37352c38342c3133372c322c3136312c3235332c3233372c31382c3135372c33342c3135392c3139302c3231382c3139342c37332c3138392c38372c39302c34372c36372c3235312c35352c3234342c3138352c3231392c3137322c3132302c36322c35352c39382c3133352c3234352c35322c3133342c3133332c32322c3137302c362c33352c3130372c3135382c33392c3135372c31322c33372c35362c362c32382c35352c31332c3134365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33332c35372c3135322c3135372c3135352c3231372c33362c34332c3131342c3138312c3231312c3130342c34332c33362c3139322c33312c3138332c3138372c34322c33382c3130372c3234312c3135382c3131382c3233382c3132302c32342c33382c31342c3134382c33332c35365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "4797988828cd13a13b340eeaf218a629a99190f24f8a9bed8e28dc9ce25b0b5a": { - "hash": "4797988828cd13a13b340eeaf218a629a99190f24f8a9bed8e28dc9ce25b0b5a", - "previous_hash": "a11139300a460087942144f7ffb3242e496da504dfad3884e8c7fefa02bff8ce", - "epoch": 23, + "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f": { + "hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", + "previous_hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", + "epoch": 52, "signed_entity_type": { - "CardanoStakeDistribution": 22 + "MithrilStakeDistribution": 52 }, "beacon": { "network": "devnet", - "epoch": 23, - "immutable_file_number": 7 + "epoch": 52, + "immutable_file_number": 17 }, "metadata": { "network": "devnet", @@ -562,38 +2510,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:24.101289Z", - "sealed_at": "2024-08-08T15:15:24.357903Z", + "initiated_at": "2024-09-09T12:59:17.077738439Z", + "sealed_at": "2024-09-09T12:59:18.116281180Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31322c3133352c3234332c3139382c34362c3132302c38342c3130302c35362c3233352c3135382c3231382c3131322c3136332c3230372c31342c3139332c37322c3230372c36362c34352c3135302c3138382c3134352c3234362c3232302c34352c3135382c35372c3230392c3137362c36305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "22", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "1f823747854462ce6bf76b3bd11658f341ec5e3c3e487d548e81e05e1fd82aa0", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136372c33322c3136332c3138352c322c3136322c3131312c3134362c3133372c31332c39302c31342c3234372c3235332c3137332c34302c33382c3132352c3231372c3134322c3234362c3234342c32332c3232372c3132342c38342c35302c3132372c34382c3139302c3234342c36352c3230382c3136302c3133312c3234342c34362c302c3231372c3137372c332c39362c3138322c33372c3139322c35332c3137392c37385d2c22696e6465786573223a5b302c312c322c332c342c362c372c382c392c31332c31352c31362c31372c31382c31392c32302c32312c32322c32342c32352c32362c32382c32392c33302c33322c33332c33342c33352c33372c33382c33392c34302c34312c34332c34342c34352c34362c34372c34382c34392c35302c35322c35342c35352c35362c35372c35382c35392c36322c36342c36352c36362c36382c37312c37342c37352c37362c37392c38302c38312c38322c38332c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133322c3234382c3136322c36392c3132302c31312c35322c3234382c312c3231312c39392c35392c36342c3136312c3136352c3133382c3230352c3138322c3139342c34352c31382c3138392c3230312c3130342c3137392c35302c39362c3133362c36372c3138302c37332c34342c36342c34332c3136362c3135302c3232332c302c32312c3230362c332c362c3138362c3134302c3130352c3131342c3130322c3235352c362c34302c3139312c3235352c35382c3136362c36302c34392c3138382c3139312c34372c31302c3230392c3232352c37372c32362c34312c3137362c3232372c3139332c342c3232302c34342c3135382c35332c3235312c3139352c3134352c39312c3232392c31302c33392c39372c33302c3139362c3231322c3139342c3132302c31302c32332c3133362c3131342c3136302c3134382c38392c35312c38332c3134355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232362c3134362c3235342c3132322c3131342c32342c3130302c3231322c3138372c3133342c3233372c3131322c3134342c352c3131302c3230322c3233382c35382c35322c31362c3133302c3133312c3134342c36362c35302c3139332c3230392c3134312c36362c3131382c3131382c3139395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "fd91a6f1d2292cb457ad4f2c3df4e69c8dbed6fdd463fe50558bb6bfe61b027e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138322c3133302c3234372c3234342c3134312c3235332c3233392c3130352c39382c382c3130322c3135392c38392c33312c3130362c39382c3235332c3130392c3231352c3135322c3233302c3131382c35312c362c3132362c382c37352c3134382c3136392c3230352c3131332c3133332c34372c3137302c37342c31302c3137312c35302c35382c3130312c34322c32302c37372c38312c312c36392c36302c3134345d2c22696e6465786573223a5b302c312c322c332c342c352c372c382c392c31302c31332c31352c31372c31392c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35322c35342c35352c35362c35372c35382c36302c36312c36322c36332c36352c36362c36382c36392c37302c37312c37322c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38362c38372c38382c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137382c322c32322c3136312c32372c37362c3231372c3234382c3138362c32362c3138392c3137362c3139352c3232342c36312c3134312c35352c3234352c32322c3231392c31362c39352c39392c39372c3233372c3135362c3133332c37352c35352c3130302c3136342c3232372c3230352c37372c3134342c3132352c33362c33352c3134392c322c3139362c302c382c3234392c3134312c3131352c3137342c3131322c322c38372c3137342c34362c35372c3134342c3233362c3132302c3139382c3230312c39362c3130382c3131362c38352c362c3231342c3134342c382c34302c3138302c3231382c3138372c3232342c3135392c3130362c3131302c3230352c33312c34312c3235322c32372c392c3133382c3232392c3137392c37362c3132362c37302c3133332c3133302c3233302c332c3139322c35302c36392c3132392c32362c3233345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32392c3136392c3137382c3133382c362c3136372c3231372c37362c3131372c33332c3139382c3139382c3138362c3232332c3137352c35322c36312c39342c39392c3131322c35372c3231332c3132312c3132382c36342c34322c3131332c3134382c3136372c3230332c38382c34335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "4d40317ddb07cb64e644f3fd982b5e04c076bcdc70eb11c757bc56d045a96145": { - "hash": "4d40317ddb07cb64e644f3fd982b5e04c076bcdc70eb11c757bc56d045a96145", - "previous_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "epoch": 22, + "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba": { + "hash": "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba", + "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "epoch": 57, "signed_entity_type": { - "CardanoStakeDistribution": 21 + "CardanoStakeDistribution": 56 }, "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 57, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -603,42 +2549,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:21.257979Z", - "sealed_at": "2024-08-08T15:15:21.651873Z", + "initiated_at": "2024-09-09T12:59:31.617098551Z", + "sealed_at": "2024-09-09T12:59:32.008270516Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "stake": 13333333334 - }, - { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "21", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "56", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "46de0025ccd195f3c6fba70d8b6487c5d94ee711eecbdacfb4d710e29b66030d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133332c36342c3230392c3231372c3135382c36362c3135352c33322c3234362c37382c38302c3139342c3133382c392c3234362c3233362c33302c3130332c3139372c37322c382c3235352c3131332c3234342c3234342c3234302c3138342c3235322c3138382c3131302c3133332c3137372c3131352c3137382c34362c34322c3133312c34382c3235332c3132382c31332c3231332c37322c3137392c38342c38382c3139352c3133335d2c22696e6465786573223a5b302c332c342c352c362c382c392c31302c31312c31322c31332c31352c31372c31382c32312c32322c32332c32342c32362c32372c32382c32392c33302c33322c33332c33362c33372c33382c33392c34302c34312c34322c34342c34352c34372c34382c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36312c36322c36342c36352c36362c36372c37302c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38392c39302c39312c39322c39332c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135302c3137392c3136362c3133352c3133352c3132312c3130362c3132342c3232322c33342c3139332c36392c38372c36312c39372c3233372c3230312c3233332c3138382c3234302c3135302c3232312c38352c3132382c3230372c3234362c36342c3137352c3136362c3133332c3232342c3230332c36342c35332c3234312c3231302c3130342c3139352c3230322c33362c3136342c37392c34312c3231362c3230352c302c3232322c34332c362c31372c33322c35302c3232312c3135392c3136362c32372c3234372c35382c35392c3231382c3234372c37322c3138302c32382c3136362c32392c3135352c3232392c302c3135362c3134312c3131372c3230352c3130322c3133362c3233342c3139372c3131342c3232372c32382c35372c3233342c3233342c3134392c32352c34342c3232322c36382c31332c362c3234362c3230302c38392c3131332c38302c33365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3133322c3135342c3231392c3134312c3134332c37392c3132382c3139312c36302c31352c39302c3231352c38342c35332c38362c3232322c37342c3231382c37342c31342c3230302c36342c3233322c3132382c3135372c3234302c32362c3138362c3131322c32362c35302c36345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "1f3dcf4c57bf79e291f21af4413e399e1a5fc108ecee3ac6526ea020e9279171", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137352c3138312c3139312c39382c3136302c3234392c34322c3230302c3134382c3134382c3138362c3130322c3231372c3136312c3134382c35352c3136302c31332c33362c3131332c3139322c3234382c3134372c3234332c332c3138382c3132332c37302c3139322c3131362c3131352c3231372c3134382c35342c3137302c3232342c3138312c3234322c33352c31342c39382c3234392c33372c3139362c32322c3233372c3134352c3139345d2c22696e6465786573223a5b302c332c342c352c372c382c392c31312c31322c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c33302c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35382c35392c36302c36312c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38322c38332c38342c38352c38372c38392c39302c39312c39332c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135312c3130322c3132352c3133382c3138362c3138372c31342c3235302c3131342c3235322c3133322c3133382c3132312c36372c312c3130392c32342c39332c332c3231352c31362c3231332c3230362c3132382c36332c3139302c3233332c3135372c3138302c3134382c3135352c3138392c3231322c3139322c34332c3131362c34302c34332c3134332c31352c3133302c38382c35332c3131302c35332c3230342c3231312c38322c322c3139362c3232372c3137312c3135342c31392c3139332c3233332c3139392c3234302c3130362c37342c3137352c3131352c3131382c3134302c3135352c3234342c39342c32322c3234352c3135332c3232302c3233312c3139372c39392c3136362c3133332c3130372c3130352c34332c38302c34362c39312c35362c34302c3232312c3132342c3136302c3134302c3135362c3232322c31302c3232382c3234392c302c3230302c3234305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231302c3135352c37352c3234312c38332c3132342c3232352c3138332c35362c3138342c38322c3139332c3231332c39332c35312c3132342c3139382c37312c3133302c39322c3231322c32352c31312c3130302c3134362c3138312c3132352c3234322c39322c3134372c3132382c34355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "5185d40099ae179282ec0c77a04d0678898272d238e44e4430a6abf1cbe507af": { - "hash": "5185d40099ae179282ec0c77a04d0678898272d238e44e4430a6abf1cbe507af", - "previous_hash": "0292a8f2fd15a1e63036c2f37ca6b51e56f428c6fd53067601da70adbd7c6510", - "epoch": 11, + "c7d868cee0669eebf64df13b1ac8e82109488dddf653f940c8801a2a57af874e": { + "hash": "c7d868cee0669eebf64df13b1ac8e82109488dddf653f940c8801a2a57af874e", + "previous_hash": "f1454af28e0468031c76f8c3423dec3a32c94932ea0a373926f1658a3c8f5be2", + "epoch": 33, "signed_entity_type": { - "MithrilStakeDistribution": 11 + "MithrilStakeDistribution": 33 }, "beacon": { "network": "devnet", - "epoch": 11, - "immutable_file_number": 2 + "epoch": 33, + "immutable_file_number": 10 }, "metadata": { "network": "devnet", @@ -648,40 +2590,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:50.146314Z", - "sealed_at": "2024-08-08T15:14:50.276898Z", + "initiated_at": "2024-09-09T12:58:23.932387886Z", + "sealed_at": "2024-09-09T12:58:24.194057582Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230382c3232352c3235332c32392c38372c3137372c3137312c3133392c3233322c37362c3138362c3137332c33372c35322c34352c3235342c3138382c3133332c3231332c39342c38392c3135302c3230372c3138322c3232332c3231362c3135342c3136362c3134342c34312c3133302c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34382c31392c3234382c3139302c38352c332c3135352c3133342c3139312c3230342c3235342c3130362c3231362c3137372c33342c3136332c39372c31342c3135322c3233362c3230322c33392c39352c3139352c33372c36352c39332c36342c332c39312c3136332c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "7765d250cb81fee5554748448bd5ecd9d077d7b66e3c0ec2f67ffc09d3942b91", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3234342c3139342c3232392c3233342c36312c3130362c3132382c3234342c3234372c3232362c3138372c3132342c3130352c3235352c3233342c39322c3139372c3134332c31322c3131332c3131342c352c3134372c39312c3231372c34382c35332c3232362c37312c362c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137362c3231392c39342c3133302c35362c35322c3130372c3232372c3132352c3136342c3235302c3133312c3130392c32302c3131322c3134342c38342c3137382c3131362c3136392c34332c35322c3232372c38352c302c32312c3132352c3139342c37342c3134362c3233372c3132302c3133302c3234302c3134312c38392c3136382c36312c3231382c39362c3235332c3230352c3137392c39322c3131332c3136352c39372c3234305d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c31302c31312c31322c31332c31352c31362c31372c31382c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33332c33342c33352c33392c34302c34352c34362c34382c34392c35332c35342c35372c35392c36302c36312c36322c36342c36362c36372c36382c36392c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136342c36332c3232352c35362c3132322c33332c3135342c39322c3234322c33372c3231382c31332c3136342c31302c31382c3139322c3138382c3138312c3134312c3132392c39362c3132332c38322c3139312c34332c3130362c3230352c35362c3136342c37332c32372c38332c3131392c35382c3232382c3135302c3137302c3133332c36362c31382c32392c36352c31352c3135382c37302c32342c3134362c31372c32302c3130332c36352c3233312c312c3130362c3232372c3234322c3234312c3138342c34342c3232312c3232372c3132342c3232382c3133332c322c37312c34382c3135312c3234312c332c3133392c37322c33312c36312c31302c34382c3133312c37322c3131322c32362c3231372c3232322c3138302c3231302c37322c31312c38392c3134342c3230342c3134362c3134382c3231302c3136342c3134382c3137312c3131305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135372c3131302c39312c3139342c3135372c3230312c38302c342c33302c3139322c35352c34372c3230372c3234312c3233332c38382c39382c372c3231332c3134302c3233342c39362c3232342c36392c37382c3133362c3135392c3233322c3235342c39382c3130372c36305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "517a045f5f75a63231614430ae68731feb22d25b57834128bff928371cb091c1", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c3135332c3132322c38372c39362c3233332c3133332c39362c3232332c39312c35342c31362c39302c3231352c3135312c38372c32352c3137322c3138312c362c31342c34382c3134322c362c3234302c3139392c3232352c3139382c3137352c3231332c37302c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137352c342c3132352c3137302c3232392c33342c3231342c3138352c3138322c3134392c3139392c37322c3136382c33372c35322c3230372c34352c3231312c37312c392c3130352c3230332c3231342c3131342c39362c3136342c3134322c3234362c3133342c3136382c392c3134352c34352c38382c3132382c3136392c3133392c37342c35372c3133322c3139342c3135382c37342c33392c3132352c33342c39382c3137365d2c22696e6465786573223a5b302c312c332c342c362c382c392c31302c31312c31332c31352c31362c31372c31382c32302c32312c32322c32342c32362c32372c32382c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34362c34372c34382c35312c35322c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c37312c37322c37332c37372c37382c37392c38302c38312c38322c38332c38342c38352c38372c38382c38392c39302c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134342c3139332c33302c3235342c34352c38392c3130352c36392c3230302c3231382c352c3134342c3133332c35312c3230322c3232352c33362c3133312c33362c3139342c3233342c3231382c352c3132392c36372c35312c38372c39382c3235312c35372c36332c3134352c3131312c33382c3234322c3136342c3233382c3137322c33342c332c34362c3138352c3234352c3135392c3134382c3136332c3230392c34352c31312c34392c3139322c31372c3134362c3234312c31332c3131322c3130372c3230352c3134302c3139362c33372c3131342c392c34392c35372c35332c37392c3136322c3139312c3130362c32382c3130322c38382c34382c36352c3231322c3133322c3131322c3139332c3133322c372c3130342c3139372c31382c3132372c34312c33302c3138382c3135342c31312c33372c33362c36362c3234342c3135302c38355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35322c3137302c3138302c3130312c3233382c3232302c3138392c3231392c3232372c3135392c35352c3234332c3134302c3131352c3134362c35342c3133312c3231352c3131342c3131352c38322c38382c3130392c3130392c3230302c39382c3130382c332c3233322c3136332c33312c3131335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb": { - "hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "previous_hash": "55c9d1616a06a38cb274629f3de576b10b57d696da7494b4d7a2b425831e0772", - "epoch": 19, + "c8e8ea2892e9dfebf0862905874abcc7b12bb674559f448e9455ef5d30219dbd": { + "hash": "c8e8ea2892e9dfebf0862905874abcc7b12bb674559f448e9455ef5d30219dbd", + "previous_hash": "05d19d2376a82b913641d4b7fe833934f8a63cb7f99625901c3f32cf3d4c45f4", + "epoch": 26, "signed_entity_type": { - "MithrilStakeDistribution": 19 + "MithrilStakeDistribution": 26 }, "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 26, + "immutable_file_number": 8 }, "metadata": { "network": "devnet", @@ -691,40 +2629,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:12.587392Z", - "sealed_at": "2024-08-08T15:15:12.720140Z", + "initiated_at": "2024-09-09T12:58:04.334547809Z", + "sealed_at": "2024-09-09T12:58:05.115689352Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3235312c3130342c3134352c39382c3235322c3233322c3234312c3138382c35392c312c33302c382c39392c3132352c3234302c3132332c3231382c39382c3231352c3130342c36352c3130342c3235322c3138332c3131302c3132382c3230362c3233322c3134362c362c3131322c34345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "93cf55438e7059b402896b17e441b65edfede7f6b2ce47afdcd6af73ace57547", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134352c31372c3138312c3232302c3137322c3131362c33372c39382c32302c32302c37372c3231372c3232392c3138302c35372c3138352c3130372c35322c3235352c33332c3230382c3233352c3137312c3137392c39302c3132302c3133342c3233352c3139302c3133332c3136392c37332c33362c3134322c3134342c3134302c39382c3230392c3232382c3132342c3230352c3138372c3131302c3134382c3230312c3133332c3132392c3135365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c32302c32312c32322c32332c32342c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34352c34362c34372c34382c35312c35322c35332c35342c35352c35372c35382c35392c36302c36332c36342c36352c36362c36392c37312c37322c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38362c38382c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c3131312c3134322c3233332c3235352c3137362c33312c38372c3234382c3233392c31392c3134342c3233362c36312c3138302c31362c3136392c3232362c35352c32322c37322c3231352c32382c3234342c3132322c3230302c3233362c31392c3230382c3233312c36372c3233342c3137352c3230382c34352c3235302c3232322c302c3233362c31332c382c3134342c3135312c3135382c32392c3136352c34352c33352c322c3135382c3130372c3233352c372c37332c3138322c3230382c38342c39372c3231332c3137392c3234342c3230372c3234322c3138302c36342c3138302c39382c3233392c3131372c3138332c3231392c35342c3130302c3136382c3233362c31362c342c3233372c3130352c3135342c3233322c35392c31312c37392c3139372c3132372c3139342c352c32342c3235342c392c382c3233352c3130302c3232322c3137345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31302c35362c3139332c37392c39362c35392c36382c34352c392c3133312c3135312c34302c3135382c3130302c3136392c342c35372c37342c3234382c36382c382c33312c3234362c3230342c32362c3132322c38362c36382c3136332c35302c38322c3233385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "b7aab2737aa6117120a1a17c81c292d5a309f0f197f2547e5d251997054daee9", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c36382c39352c39382c3134362c3132362c3131372c3139332c3132352c3131342c34322c3135372c36322c332c3135322c32372c38362c3230372c3132342c382c3130372c312c39312c32322c33382c3130352c33352c3233372c3136372c3138372c3234392c3130325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135322c36302c3233302c352c3133322c3137342c3134372c3139322c3131362c3132332c34362c3138352c32302c3233352c3132382c3137392c3235352c3138392c37332c33312c3139352c3235352c3135392c34352c352c3138382c3134302c3234332c34322c3133302c38312c31362c3232322c352c3132372c3233362c36372c38392c33382c3130392c39302c36302c39372c39332c3235312c32372c3135382c3131345d2c22696e6465786573223a5b302c322c332c342c352c362c372c382c392c31312c31342c31352c31362c31382c31392c32302c32322c32342c32352c32362c32372c32382c33302c33312c33332c33342c33352c33362c33392c34302c34312c34342c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37322c37342c37362c37382c37392c38302c38322c38332c38342c38352c38362c38392c39302c39332c39352c39362c39372c39382c39392c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136342c38312c3231302c3137352c38362c3139392c3138322c3230332c31342c35302c3231312c33322c3137342c34332c3135392c3133362c33392c3137302c39332c3139322c3234362c36362c3138352c3232312c3232382c3135352c342c3135342c3139312c3135362c39332c34352c38332c3135332c35312c3231392c34352c31392c3133302c3139382c36302c3231362c31392c3233332c3235352c3131372c37312c3130382c31382c3131302c31392c332c3132322c31372c3136392c3135322c39312c3231322c3235332c36352c36342c3230372c37362c3132322c32312c3130372c3137342c3235312c31392c3136392c3233362c3136322c3232382c3133352c36392c3233332c35342c3135362c3135322c3136342c39332c33342c3134362c35362c3231382c3134352c38332c37312c322c39362c3234392c3130322c35382c3135382c31362c3137335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37382c3234352c34372c3130342c3137312c3131372c362c3135362c3138362c31372c3230332c3235352c3137372c34382c3138382c3235312c35332c32372c3132322c3232332c3231382c38392c3232322c3131332c3131362c38392c35392c3233352c3138352c3132372c3230352c3133365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "55c9d1616a06a38cb274629f3de576b10b57d696da7494b4d7a2b425831e0772": { - "hash": "55c9d1616a06a38cb274629f3de576b10b57d696da7494b4d7a2b425831e0772", - "previous_hash": "b7466128456915070b1a65cff4ae86243b3fa194daef7b2c7978060dd8daf8ed", - "epoch": 18, + "c91269c75bd83e852f7fcb66496edab6e3e048933d14273c013d4d5b8585a250": { + "hash": "c91269c75bd83e852f7fcb66496edab6e3e048933d14273c013d4d5b8585a250", + "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "epoch": 60, "signed_entity_type": { - "MithrilStakeDistribution": 18 + "CardanoStakeDistribution": 59 }, "beacon": { "network": "devnet", - "epoch": 18, - "immutable_file_number": 5 + "epoch": 60, + "immutable_file_number": 20 }, "metadata": { "network": "devnet", @@ -734,40 +2672,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:09.751374Z", - "sealed_at": "2024-08-08T15:15:09.883678Z", + "initiated_at": "2024-09-09T12:59:39.826587150Z", + "sealed_at": "2024-09-09T12:59:40.089570533Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "59", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "9532286bc78cf35c4206a31ac93efc83ddced5e09a6dcade48af5c9830b0b854", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135352c3234332c3232302c3136342c39382c3137342c39342c3133372c36322c39392c3138352c3139392c312c3231302c36352c3132382c3232392c352c362c38312c3134342c3230352c3231362c3233372c31312c3134352c3131382c38322c3139352c3131362c39322c3232335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137372c39312c302c3230372c3233302c37332c3130352c3138302c32302c3135362c37352c3233382c3138392c3133382c3138312c35382c3230392c3130342c3132322c352c3235342c35332c3132372c3131332c3132332c3131312c36302c3230322c3132352c3232342c3233352c3233332c3136302c3231392c39382c392c3234342c3139342c3130312c3233332c3235322c3133392c32372c32332c35332c3231312c3133322c36355d2c22696e6465786573223a5b302c322c332c342c362c372c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32322c32332c32342c32352c32372c32382c32392c33312c33332c33342c33362c33372c33382c33392c34302c34312c34322c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35382c36322c36332c36342c36352c36372c36382c36392c37302c37312c37332c37352c37362c37372c37382c37392c38302c38312c38342c38352c38362c38372c38392c39302c39312c39322c39332c39342c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3137312c3233332c3137362c3235352c3133342c3139312c36362c38372c3136312c39322c3137372c3230332c372c34302c3138312c3139342c3231362c37342c35312c3130392c3132392c3235322c3231302c35392c3135312c33322c3139372c3233382c3132312c39332c382c3133392c3137302c3138312c3137362c37392c36382c3131352c32302c32382c3135382c32322c322c35392c38312c33372c36382c35362c31342c3230312c34332c37312c3230352c3235322c382c35332c3232332c3230352c31332c39342c3137392c36322c3234332c3133322c35322c34382c36382c3133372c3131372c3235302c3130312c3132342c3133362c382c33352c362c33362c3139322c33372c33352c3133392c3234302c38362c31302c3137332c3233352c3230372c3234392c3135332c3139322c38322c3133362c34382c3136362c3230322c3233335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135322c3138352c3138302c35302c3131352c3234352c3234362c3231362c3231372c36322c352c3230332c3233302c3139382c32312c3230362c3130312c33352c37312c3233392c3135362c3136342c3136332c322c3132302c3136322c3139382c3139302c34302c34362c3133362c36375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "45c85f91d536390a50baeea352f745e174b3ec43403252d9ffad1a924b6ec525", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137392c3139372c3133352c38302c37332c3233332c39332c3131372c3137352c32382c32392c3131382c3231302c39372c3136352c3139312c332c37392c3135392c3132302c312c3231302c3234312c3132332c3137382c31332c3235302c3230302c3232382c32382c32312c31392c3138312c3138312c39322c38392c38312c33392c3135392c33382c33302c31312c3132382c37372c3234392c3133382c3230332c3233305d2c22696e6465786573223a5b302c312c332c342c352c362c382c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32372c32382c33312c33322c33332c33342c33362c33372c33382c33392c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35322c35332c35342c35352c35372c35382c35392c36302c36312c36322c36342c36352c36362c36372c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38342c38352c38362c38382c39302c39322c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136322c3139322c3130322c3232352c3133312c3231352c3136382c3234342c3232362c3231382c3130302c31332c37312c39362c39382c3130342c3233382c38392c35382c3132332c3130352c31322c382c3136342c3138382c3136342c312c3233352c34382c3138362c31322c3233372c34382c3139322c3139362c34392c35312c3134322c362c35362c3131302c3231362c3232322c3132352c33382c39302c37372c3231312c31372c3134392c322c3132382c3231382c32322c3131352c37302c34352c36342c3138312c3135382c32372c3131352c3131362c3136302c3134332c3132322c3232312c37302c3133382c3232332c3132352c36392c3133362c36312c3232392c31362c35302c34302c3138312c3132382c39372c3130332c39362c3232322c3138322c3132342c3230372c3230302c3138352c32362c3234372c3136352c3231372c35322c39392c3130325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37362c38332c35392c3134342c31392c3136382c312c38372c37312c3134342c38352c3131342c3234322c3133352c3233352c35372c3131302c3231322c3233342c38342c33312c3139382c31302c3134322c3136372c31312c33392c35392c3130332c38352c35332c3130355d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "66bfa5f7ff507a686c88dc86737ac87540d4233ff180d9009d4f39e7f234034e": { - "hash": "66bfa5f7ff507a686c88dc86737ac87540d4233ff180d9009d4f39e7f234034e", - "previous_hash": "5185d40099ae179282ec0c77a04d0678898272d238e44e4430a6abf1cbe507af", - "epoch": 11, + "c94228c6f70dd5d50e5514091c431613cfd2e6a116f3cc1a45c0cda23e9d7e11": { + "hash": "c94228c6f70dd5d50e5514091c431613cfd2e6a116f3cc1a45c0cda23e9d7e11", + "previous_hash": "c8e8ea2892e9dfebf0862905874abcc7b12bb674559f448e9455ef5d30219dbd", + "epoch": 27, "signed_entity_type": { - "CardanoStakeDistribution": 10 + "MithrilStakeDistribution": 27 }, "beacon": { "network": "devnet", - "epoch": 11, - "immutable_file_number": 2 + "epoch": 27, + "immutable_file_number": 8 }, "metadata": { "network": "devnet", @@ -777,42 +2713,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:50.408805Z", - "sealed_at": "2024-08-08T15:14:50.672083Z", + "initiated_at": "2024-09-09T12:58:06.953525468Z", + "sealed_at": "2024-09-09T12:58:07.484040356Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230382c3232352c3235332c32392c38372c3137372c3137312c3133392c3233322c37362c3138362c3137332c33372c35322c34352c3235342c3138382c3133332c3231332c39342c38392c3135302c3230372c3138322c3232332c3231362c3135342c3136362c3134342c34312c3133302c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "10", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232302c3231372c3131302c332c38362c31372c33342c3131362c37382c35372c38342c3137322c352c3230352c3235322c33332c3131372c36342c34382c32392c38352c3134372c3230342c39322c3235322c3234362c3231332c3231362c3234382c33362c3230372c3133395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "7c129982573b9284317167fbec674a586e7c374487463b700a79d82b2320446b", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3234342c3139342c3232392c3233342c36312c3130362c3132382c3234342c3234372c3232362c3138372c3132342c3130352c3235352c3233342c39322c3139372c3134332c31322c3131332c3131342c352c3134372c39312c3231372c34382c35332c3232362c37312c362c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137322c3135302c332c3130392c35302c3132372c3232382c33322c3232352c3130392c3132362c34312c3139372c3134342c34332c35332c372c3139392c31352c36382c3139372c38382c39342c38352c38302c3138302c3230362c3234302c39322c3234362c3134322c3135352c33302c32382c36352c33332c34362c3131362c3231372c39332c3139302c32372c39362c3133302c3231302c32322c3138342c3136325d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32322c32332c32342c32352c32362c32372c32382c33302c33312c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34352c34372c34392c35302c35312c35322c35342c35362c35382c35392c36312c36332c36342c36352c36362c36372c36392c37302c37312c37322c37332c37342c37352c37362c37372c38302c38312c38322c38332c38342c38362c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3136342c36332c3232352c35362c3132322c33332c3135342c39322c3234322c33372c3231382c31332c3136342c31302c31382c3139322c3138382c3138312c3134312c3132392c39362c3132332c38322c3139312c34332c3130362c3230352c35362c3136342c37332c32372c38332c3131392c35382c3232382c3135302c3137302c3133332c36362c31382c32392c36352c31352c3135382c37302c32342c3134362c31372c32302c3130332c36352c3233312c312c3130362c3232372c3234322c3234312c3138342c34342c3232312c3232372c3132342c3232382c3133332c322c37312c34382c3135312c3234312c332c3133392c37322c33312c36312c31302c34382c3133312c37322c3131322c32362c3231372c3232322c3138302c3231302c37322c31312c38392c3134342c3230342c3134362c3134382c3231302c3136342c3134382c3137312c3131305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135372c3131302c39312c3139342c3135372c3230312c38302c342c33302c3139322c35352c34372c3230372c3234312c3233332c38382c39382c372c3231332c3134302c3233342c39362c3232342c36392c37382c3133362c3135392c3233322c3235342c39382c3130372c36305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "2fc6210db083d532022bd5737ae15153383b43ba826c8f33cab07769db889420", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3235312c3130342c3134352c39382c3235322c3233322c3234312c3138382c35392c312c33302c382c39392c3132352c3234302c3132332c3231382c39382c3231352c3130342c36352c3130342c3235322c3138332c3131302c3132382c3230362c3233322c3134362c362c3131322c34345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134332c3233352c3132322c3132332c37302c3233332c3133352c33352c3137372c31382c3134342c3136302c3132332c3139372c39392c3234302c32372c3134332c3133322c35362c35342c3134302c3130302c31352c3133372c37342c3230322c31352c3234332c3134342c39352c33312c3232302c3231352c3234312c3132392c37392c39342c342c33362c39322c31332c37342c3230322c37352c38382c3131382c39365d2c22696e6465786573223a5b322c332c342c372c382c392c31302c31322c31332c31342c31362c31392c32302c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34342c34362c34372c34382c34392c35302c35322c35332c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36362c36372c36382c37302c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39322c39332c39342c39362c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137382c352c3235302c3232352c33362c39392c3137332c35332c37322c322c35342c39312c3234302c3230332c3137372c322c3230382c37352c36302c39352c33322c32312c32382c36302c3137392c3134362c36332c35372c3136362c3139362c3135372c3137302c3138382c3133342c3137332c38382c3233342c32392c3132372c3135342c35382c36312c3138322c3234302c33352c3135372c3130352c3134362c31362c33352c3132302c3235352c3234342c3131362c3230302c3132372c39382c3135352c3134392c3233362c3234332c372c38372c3133302c3231362c38382c36302c3136312c3139312c3134302c3130302c37322c3233342c38312c31372c33332c36392c31372c38352c3234372c3233382c352c3135332c35372c3131352c3137312c3134342c3138352c3234382c3138322c33382c31362c38332c312c3137362c3137355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231372c3133372c32372c3136362c3232332c3134332c3230382c37392c31362c3231372c3135362c3133382c3130322c3138322c322c3137322c382c36372c35382c39392c39342c39302c31312c3130352c32322c33382c3235322c31302c3139382c36352c3131362c3233345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "6ccc77db1c6d3a3ca3b28aa1f84930e250642c8408580d09aab1d16562249d7c": { - "hash": "6ccc77db1c6d3a3ca3b28aa1f84930e250642c8408580d09aab1d16562249d7c", - "previous_hash": "b7466128456915070b1a65cff4ae86243b3fa194daef7b2c7978060dd8daf8ed", - "epoch": 17, + "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230": { + "hash": "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230", + "previous_hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", + "epoch": 50, "signed_entity_type": { - "CardanoStakeDistribution": 16 + "MithrilStakeDistribution": 50 }, "beacon": { "network": "devnet", - "epoch": 17, - "immutable_file_number": 4 + "epoch": 50, + "immutable_file_number": 16 }, "metadata": { "network": "devnet", @@ -822,46 +2752,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:07.202140Z", - "sealed_at": "2024-08-08T15:15:07.462430Z", + "initiated_at": "2024-09-09T12:59:11.583654329Z", + "sealed_at": "2024-09-09T12:59:12.883214384Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135352c3234332c3232302c3136342c39382c3137342c39342c3133372c36322c39392c3138352c3139392c312c3231302c36352c3132382c3232392c352c362c38312c3134342c3230352c3231362c3233372c31312c3134352c3131382c38322c3139352c3131362c39322c3232335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "16", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "ff7b75fdc932d95a5ac384bc640022aa830267ac8ebb32685da7991e4dd261b8", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b342c3134332c3139302c39342c3234382c3137392c3130382c33392c3133342c3131342c3235342c35362c3235342c3130382c3234392c3136302c39392c32362c3134382c3235302c3130352c3139352c39382c37392c3232322c3130312c31352c3233392c3138312c3136302c3130372c34395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134332c3134332c38322c3137342c3134302c33382c3137322c3234332c32342c38382c362c3133382c3231342c3234392c3232382c34302c32322c3139372c34322c32382c38332c3130382c35352c3139392c3235332c32332c3138312c38322c3139362c36362c3135312c3133352c3139312c3234302c3136312c392c3137342c39382c3135322c3133382c3231382c39382c3231302c35312c33312c34322c31332c3131335d2c22696e6465786573223a5b302c332c342c352c362c372c382c31302c31322c31342c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35342c35352c35362c35372c35382c35392c36322c36332c36342c36352c36362c36372c36382c36392c37302c37322c37332c37352c37372c37382c37392c38302c38312c38332c38342c38362c38372c38392c39302c39322c39332c39342c39352c39362c39372c3130302c3130312c3130335d2c227369676e65725f696e646578223a317d2c5b5b3134312c3132382c31332c31372c3137302c3138342c3139362c36352c36342c3131352c35302c3133332c3135362c3133322c31302c35352c3130322c33312c3136322c3137302c39342c31332c3139342c3130302c3132372c37322c372c3138362c37332c3139372c342c39342c34352c3231362c3234372c3230322c38372c35342c3232342c3230372c36352c3234372c31392c3133322c38352c3134362c3134332c3138372c31342c37302c36392c3134342c372c32392c3234302c3137372c34382c3133362c3233372c3135332c3235332c34382c3137312c3231392c34382c38302c3136382c38322c35332c3132392c3139352c35352c36342c3232372c3231362c3133392c3135372c32302c3230322c3138372c3130382c3133362c3139302c3230372c3138302c39362c3135392c31322c332c33362c3232342c3134322c38312c38372c36362c3230385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33312c35332c38322c3134362c3131392c3135352c32372c3137322c35392c3235332c31342c3137362c35302c3138392c3138362c3130342c3232382c3138382c3132352c3232322c3132372c35372c36302c38352c392c3138392c35302c3232322c3135372c3231392c3235312c32385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "cc354811ff4da53ed61ca806a86ac2101af6c472b6251909f0ccdc15e1c05998", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136382c37332c3135302c3133322c3138342c3138372c38352c31322c3135322c3135392c34332c3139322c3137302c38382c3130362c34312c3139322c3139332c3130332c3137352c3233332c37342c3139382c3234302c3134352c37352c3137362c3137342c3138332c3232362c3135352c322c37372c34372c37382c3136372c3130372c35372c3138322c3230302c3134302c38382c37382c3137302c38382c3132352c3135362c31365d2c22696e6465786573223a5b302c322c332c342c362c372c382c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32362c32372c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34372c34382c34392c35302c35322c35332c35342c35362c35372c35382c36312c36332c36342c36362c36372c37302c37312c37322c37332c37352c37362c37372c37392c38312c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133362c3136382c3139362c3137392c35392c39342c36312c32382c3131352c33392c3130362c3135302c3134312c32312c3132362c3234392c3234302c33382c3135362c3136362c3235332c32322c35352c36302c3135342c3135312c3233332c33312c312c37322c372c3233372c3134312c34382c35312c38362c3134392c3233392c38392c34372c3232332c3230302c3231372c33312c39302c3136362c3137302c3131332c382c3134352c3132312c31332c36342c3137382c34332c31392c3130352c31382c32382c3137332c3230392c32392c3138342c3230332c31322c3136342c3130372c3133342c33302c31332c3139372c3130302c3138372c3133382c37302c32372c3231312c39382c36372c33392c3132372c3130322c38382c3232332c382c35392c31342c372c3139302c37312c3133322c38302c3131302c37332c38322c3135365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231372c34302c3137322c33372c3138322c3230372c3137372c3130362c3235332c33352c37322c3138302c31352c3137372c34352c35362c36392c3131352c3134322c3132342c37312c37312c3232352c3232392c3138382c31302c3130302c3138342c32352c38322c3131322c3134315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "6e24087cfd5b13ea2acfd711d2bba02d1e3cbfd01fd3fbd751b8cd89d00c481e": { - "hash": "6e24087cfd5b13ea2acfd711d2bba02d1e3cbfd01fd3fbd751b8cd89d00c481e", - "previous_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "epoch": 22, + "c98c0c706f10f62c99bb7ef93bcbdeec62359a3d9fcb9f7efc5dc6e11c0da0b9": { + "hash": "c98c0c706f10f62c99bb7ef93bcbdeec62359a3d9fcb9f7efc5dc6e11c0da0b9", + "previous_hash": "a25e25fe1e22b13420b390233d763008a0ed390616a295c170a8fbb65202f0c7", + "epoch": 38, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 38, + "immutable_file_number": 12 } }, "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 38, + "immutable_file_number": 12 }, "metadata": { "network": "devnet", @@ -871,44 +2795,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:21.786117Z", - "sealed_at": "2024-08-08T15:15:22.180063Z", + "initiated_at": "2024-09-09T12:58:39.136115979Z", + "sealed_at": "2024-09-09T12:58:39.402736859Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "stake": 13333333334 - }, - { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "8f89bd27b3eed107188b1442a4a9d269f997de45e5c4cb1486847a2e145b8b7c", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139322c3131372c3234382c342c3235302c3137302c3139352c31382c33342c33342c3230342c3132302c3235332c37352c3230392c34332c3232322c35392c3232332c3138312c3230342c3232382c3137322c31372c3231382c38332c3130392c36322c3235302c37382c352c35305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "444d2822b50777c891cde4a52469d991e11a0a656bd49f1e7f3ccac2bd0ef0a6", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134382c3133352c3136342c3235352c36382c3137312c3232302c3138342c3233322c3131382c36302c32382c3135322c3134332c3233312c322c37302c38302c3139342c3232312c33302c35332c3130362c31392c3137342c37312c39372c31332c38352c3130342c32362c3139392c3138362c3134392c35392c3134312c3133352c39342c31332c3231392c3138362c3230382c39352c3234382c31342c3132352c3137362c35385d2c22696e6465786573223a5b302c312c322c332c352c372c392c31302c31312c31322c31332c31342c31352c31372c31382c31392c32302c32312c32322c32332c32342c32352c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34382c34392c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36342c36372c36392c37312c37332c37342c37352c37362c37372c37382c37392c38312c38322c38332c38352c38362c38392c39312c39342c39352c39372c39382c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133392c3232322c3233312c3130332c37392c3133332c37372c3230302c3230322c3235322c3232382c3132372c3132322c3135382c3231342c3131312c3233352c3133342c37342c35352c3139372c3230382c32332c33302c3232322c39302c372c36332c3134352c3139372c39312c3137302c3230362c33372c3136322c31352c3232392c3137372c3135342c3133352c36352c36362c3139362c3231332c3135322c3130332c3233382c3132342c392c3131392c39312c3234302c3234332c3231332c3138312c3135322c31362c3137322c35382c3230352c392c3131312c352c3230342c3233352c342c32302c34322c3233362c32302c32312c33302c36332c35352c35382c3235322c3136352c3139342c3130382c36302c3134322c34352c36332c3234362c3230362c3230352c32312c39382c36352c31362c3136342c3134382c3138392c3134312c3138302c38355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31312c32362c3232372c3136382c3235342c3233352c35322c3133332c3136332c3131362c31392c3132322c37362c36352c3130342c39302c3230302c3137392c32322c3235312c3137312c3232342c39302c3139332c3233312c33342c3232372c3231372c3131372c3133382c3233322c3138325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "ab7612c56417e7c771e8aebf1a845b37248ae81001e7c0c2bacfd490be666b50", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37342c35382c352c3232322c3138352c39362c33302c3232322c3139372c3139302c39372c36312c3133392c3136362c32332c3138322c37322c3233362c3135372c3136352c32372c3135332c3138342c31312c3231382c37302c38352c3130392c312c3133372c3138342c3138325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133342c3139322c3139312c35332c3134382c33342c37352c3135312c36352c31392c332c3136362c3235352c37382c3135322c32342c3130302c3135352c3232322c32342c362c3230322c3235312c37312c32352c3230332c3130382c332c3136392c35362c3130382c3131322c3132362c3233332c35382c37362c3230392c3139362c3230302c3130382c3231372c3133382c34342c31312c35312c38302c3231342c3234335d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c392c31302c31312c31322c31342c31352c31362c31372c31382c31392c32312c32322c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33352c33362c33372c33382c34302c34312c34322c34332c34352c34362c34372c34382c34392c35312c35322c35342c35352c35362c35372c35382c35392c36302c36332c36342c36352c36372c36382c37302c37312c37322c37342c37352c37372c37382c37392c38302c38312c38332c38342c38352c38372c38392c39302c39312c39322c39332c39342c39352c39362c39372c39392c3130302c3130312c3130325d2c227369676e65725f696e646578223a317d2c5b5b3137382c3232322c3234322c3136322c3138392c34362c3136322c32342c38322c3133322c3137322c3134392c38302c3130372c322c3134372c3139332c39332c3138362c3233302c3234382c3137322c3136302c31332c3134382c3131392c3135332c3137362c35352c3138312c3234392c3234342c3136352c3234342c362c37312c3230382c3130382c3230312c37362c32342c3234342c3130362c3132302c3135332c3130352c3230392c35372c32352c3234372c3136312c34342c32302c36332c3233392c36392c3234322c3230302c37352c36372c39382c35382c3134372c35312c3137322c3137332c3233342c37342c3137322c322c342c3138392c3132302c362c3233312c3136302c3135382c3137302c3235322c3230392c36322c3134332c38372c382c3233352c3135362c3130352c3230382c34392c3133332c3137352c3230392c37382c3235342c3138342c3232375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33372c3230362c38352c3231302c3132372c3233382c3232312c3231332c39342c362c3231312c3139332c31352c33332c3137362c3136382c3231332c3234362c3133382c37332c3135322c3230382c3230332c3139352c3138392c3133342c3134312c3131362c3139332c3135322c38302c3133345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "7a38eaf129a96f49f215647632404fbaa8b8e9702635d6c6db04eb27c948fe5f": { - "hash": "7a38eaf129a96f49f215647632404fbaa8b8e9702635d6c6db04eb27c948fe5f", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 21, + "cc4765b54dcf37ac05024486215ed0aed871f88ce7c63e4de31087d39a3078bd": { + "hash": "cc4765b54dcf37ac05024486215ed0aed871f88ce7c63e4de31087d39a3078bd", + "previous_hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", + "epoch": 43, "signed_entity_type": { - "CardanoTransactions": [ - 21, - 734 - ] + "CardanoStakeDistribution": 42 }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 43, + "immutable_file_number": 14 }, "metadata": { "network": "devnet", @@ -918,45 +2835,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:19.231603Z", - "sealed_at": "2024-08-08T15:15:19.496288Z", + "initiated_at": "2024-09-09T12:58:52.521441647Z", + "sealed_at": "2024-09-09T12:58:52.786148420Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "stake": 13333333334 - }, - { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "734" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "42", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "9d285d8bd852296806dd20af7743fdfc5e3a60fab5c37f650488a8f081f7faa3", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137342c3137382c3137302c3232312c32322c32342c3136302c3233352c39342c3131392c36382c3137362c37352c3233332c39382c37322c3133322c3136352c32322c3139342c3230372c35332c32392c3131352c3131372c3230362c31352c3134362c3131312c31342c3235332c3232372c3230362c3131342c3139322c3136362c32332c3231352c39382c33352c34322c3137322c3135342c3136382c33372c3135382c3234362c3138335d2c22696e6465786573223a5b302c322c352c362c31322c32392c33362c34302c34362c35342c36382c37312c37372c38342c39322c39385d2c227369676e65725f696e646578223a307d2c5b5b3136362c3231362c362c3233352c3139332c34342c3138332c35312c3133352c3131302c3131362c34322c3138342c3231332c3134372c3139332c35382c3231312c31342c3135352c3131342c3133332c3230382c3231352c31302c3235332c3135382c342c3137312c3231312c3132352c37322c3136332c3135302c36392c38342c32392c32302c362c36322c32342c3230342c32332c3133352c3136322c3232342c3135392c312c31312c3139372c3231312c3136392c35342c37342c3137322c31312c31302c3137352c3132332c3232372c37342c35372c3130352c3131322c3132362c35312c39312c3135352c322c382c3132312c3139372c32382c3233322c3136322c3137382c38322c3138312c3132382c3135302c3137382c39392c3135362c3136382c35372c372c31322c3130362c31342c3130382c33302c36372c3230392c36392c3230382c33335d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3136312c32322c39382c3132322c31312c3132342c3131372c3234392c36362c3133312c3231342c32322c352c38362c36392c31322c3131352c3132352c35392c3231362c3231322c36302c372c3134382c3130382c36312c3230372c3135312c332c34302c312c3137312c3138312c3135312c3133332c3136372c38392c3138382c3135322c38392c3139362c3136342c34392c3131312c3235302c31342c33302c3234305d2c22696e6465786573223a5b312c332c342c372c382c392c31302c31312c31332c31342c31352c31362c31372c31382c32302c32312c32322c32342c32352c32362c32372c32382c33302c33312c33322c33332c33342c33352c33372c33382c33392c34322c34332c34342c34352c34372c34382c35302c35312c35322c35332c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37302c37322c37332c37342c37352c37362c37382c37392c38302c38312c38322c38332c38352c38362c38372c38392c39302c39312c39332c39342c39352c39362c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136382c3135342c32382c3232312c35372c3137342c36372c32342c3134382c35362c3139392c3132382c3137352c38392c382c3233352c3139392c3232302c3235332c3133362c33342c3234352c3131382c3139382c3139322c3132302c302c3138332c3136332c3138382c3233302c32382c39342c34322c3139392c3232362c3130332c3135392c3235342c3233392c38342c3232362c31322c3135382c34382c31322c33352c3234302c372c32322c39382c3132352c3130362c3132302c3230322c3231322c3231312c3233302c3232392c3136352c3231372c3133392c3136342c37382c3136332c3234372c31372c37322c3130332c3133342c3137352c3139322c3136372c3231352c34392c3230382c3136342c32372c3133312c34382c3232362c34372c3138382c3232362c3233362c32382c35362c3232312c3131322c3135382c3133322c3138372c35372c3233312c35372c3133375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "e12dd74d22e2103f0e96393178ee90ce92d50e13af3c1defd8a0e36e3b6a3664", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138312c3233352c342c31332c3130372c332c3135322c3132322c35302c3139322c3234322c3131312c332c3134302c3130312c34342c3230322c33332c37372c33332c3137382c3130372c3232302c32352c34352c39342c35342c35362c37362c3133312c32372c3138362c3134312c36352c32352c3137362c3133352c3137362c38312c34342c3136322c36372c39372c3234332c3137322c36312c31312c39335d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32382c33302c33322c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35322c35332c35342c35352c35362c35372c35382c35392c36312c36322c36332c36342c36352c36362c36382c37312c37322c37332c37342c37352c37362c37372c37382c38312c38322c38332c38352c38362c38382c38392c39302c39322c39332c39342c39352c39362c39372c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134352c34392c3138392c39352c3133392c35312c3139312c35332c3137392c32332c3233312c3134312c3137362c3131312c3230372c31392c3235312c3133362c37372c3131322c3133322c36362c3131392c38302c3132302c3134342c31372c31302c3131372c3233312c35352c3133342c38382c31362c3133382c3233362c3234332c3134322c37322c3137342c3138372c32392c3134332c3234382c332c39342c34352c3233332c342c3134392c3232312c3231332c3135302c34322c31302c33372c3139392c3132312c3138342c39392c32372c3139302c3231382c3230382c39302c3138302c3138312c36392c3231332c3137392c3234362c38332c3230302c32302c32352c3231352c3234382c31392c302c31302c3133312c34392c3232372c39332c3135312c3234332c342c34372c322c3234392c3130312c3232342c3232362c39302c35302c3132335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32352c33392c3136302c39392c31342c39382c3136342c3232362c3134322c33382c37372c32312c3234382c36372c3134382c3231322c3231372c3135372c3232382c35392c38362c3132302c31362c33332c33312c3136312c3230332c3234362c3139352c32362c3137302c3230345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "7c35f66f5ba83c7208763a29027919aca6ceef1e4c4e93f9eb57b6fffeae646f": { - "hash": "7c35f66f5ba83c7208763a29027919aca6ceef1e4c4e93f9eb57b6fffeae646f", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 21, + "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38": { + "hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", + "previous_hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", + "epoch": 49, "signed_entity_type": { - "CardanoTransactions": [ - 21, - 749 - ] + "MithrilStakeDistribution": 49 }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 49, + "immutable_file_number": 16 }, "metadata": { "network": "devnet", @@ -966,42 +2876,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:19.784366Z", - "sealed_at": "2024-08-08T15:15:20.044548Z", + "initiated_at": "2024-09-09T12:59:08.720023844Z", + "sealed_at": "2024-09-09T12:59:09.109426386Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "stake": 13333333334 - }, - { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "749" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0a30bfc24775a2d9a065f1471e37be60471653cf1897a1eba81edc049456feae", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136332c32332c35382c3232322c39312c38372c3137362c3232362c34332c39312c32342c3234372c39352c38312c3132322c31342c3135342c32382c35392c3133312c3137332c35322c3139352c35372c3135372c37342c37362c3130332c33342c3132342c3136352c3235302c35382c3130312c3138392c38352c31372c3131352c3134312c3134382c3136302c36382c31372c3135382c3230362c3133392c38302c3235315d2c22696e6465786573223a5b302c312c322c332c342c352c362c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32352c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34322c34332c34342c34352c34362c35302c35312c35352c35362c35382c35392c36302c36312c36322c36342c36352c36362c36382c37302c37312c37322c37332c37342c37362c37382c37392c38302c38312c38322c38332c38342c38362c38372c38382c38392c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136362c3231362c362c3233352c3139332c34342c3138332c35312c3133352c3131302c3131362c34322c3138342c3231332c3134372c3139332c35382c3231312c31342c3135352c3131342c3133332c3230382c3231352c31302c3235332c3135382c342c3137312c3231312c3132352c37322c3136332c3135302c36392c38342c32392c32302c362c36322c32342c3230342c32332c3133352c3136322c3232342c3135392c312c31312c3139372c3231312c3136392c35342c37342c3137322c31312c31302c3137352c3132332c3232372c37342c35372c3130352c3131322c3132362c35312c39312c3135352c322c382c3132312c3139372c32382c3233322c3136322c3137382c38322c3138312c3132382c3135302c3137382c39392c3135362c3136382c35372c372c31322c3130362c31342c3130382c33302c36372c3230392c36392c3230382c33335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b38342c37302c3132342c37382c34332c31362c32342c392c3231382c3131302c3130372c352c3133342c3231382c3233332c37352c3233302c3234312c3234362c3233302c37312c3130372c3139312c3132382c3231372c34362c3131352c3233332c312c39382c36392c3134335d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "9b9420b19a599014e4164ccfc9031aed738b8b5e334c9e3394837b9be929e50f", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3131322c31342c3132372c3231382c35312c312c32302c33392c3231322c3138352c3137332c3134382c3233302c3231382c3135372c3137392c302c38302c34312c3234332c37362c3232312c33382c3233332c3131332c3231372c3132342c3231342c3132322c3233342c352c392c362c392c39372c33392c3136392c38382c3131392c3139352c31302c3231322c33352c3230332c3135382c3137302c3135305d2c22696e6465786573223a5b302c312c322c332c362c372c382c31302c31312c31322c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32392c33302c33312c33322c33332c33342c33352c33382c33392c34302c34312c34332c34342c34352c34362c34372c34382c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36312c36322c36332c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38332c38342c38352c38362c38382c38392c39312c39322c39332c39342c39392c3130302c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135302c3137322c3136382c39312c34392c3135342c34362c3134372c312c3137342c3136312c3233332c3138332c37312c3234332c36382c3139312c34332c3133342c37302c332c3139332c3135372c3132302c34362c3231332c3138392c3134332c322c3137382c33362c33372c36362c3139362c3230392c3234322c3235332c3134332c3137302c39392c3132312c3232342c3235302c32382c35322c34362c35362c34392c302c31382c31312c3231312c3139362c32352c3138332c35392c3137382c3136352c35352c3233322c3231302c3130302c32382c3130372c34392c3131312c3131302c3232302c35322c3132352c3235342c36302c3233312c3232332c32382c3138372c31332c37312c3139312c3133352c34382c3235312c3130342c3131322c35332c3139352c3136352c3234352c34302c3235352c3130352c3235332c3139322c3130332c35312c37395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234322c3233392c3136332c35392c3135342c3138312c3235312c33392c3132312c3233312c3133302c3130352c34302c3131332c36332c3135312c35342c3137372c3231352c3136362c3131302c3130322c3138332c3136342c3133332c31322c3130312c362c31352c3135382c312c3136365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "87490bc637ba9af3e45dac7a8c86959bb983087a393475a14a4e9067338bfc4b": { - "hash": "87490bc637ba9af3e45dac7a8c86959bb983087a393475a14a4e9067338bfc4b", - "previous_hash": "166055f65bda0742ea2324c70b6c529fc33cd7973b5deae8275360acd3dcd68d", - "epoch": 16, + "d10068a231936c1994e9451ecd5f6dfde399869181ee392361bccaa43af9a066": { + "hash": "d10068a231936c1994e9451ecd5f6dfde399869181ee392361bccaa43af9a066", + "previous_hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", + "epoch": 48, "signed_entity_type": { - "MithrilStakeDistribution": 16 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 48, + "immutable_file_number": 15 + } }, "beacon": { "network": "devnet", - "epoch": 16, - "immutable_file_number": 4 + "epoch": 48, + "immutable_file_number": 15 }, "metadata": { "network": "devnet", @@ -1011,44 +2919,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:04.129001Z", - "sealed_at": "2024-08-08T15:15:04.262789Z", + "initiated_at": "2024-09-09T12:59:07.093603912Z", + "sealed_at": "2024-09-09T12:59:07.497475696Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b342c3134332c3139302c39342c3234382c3137392c3130382c33392c3133342c3131342c3235342c35362c3235342c3130382c3234392c3136302c39392c32362c3134382c3235302c3130352c3139352c39382c37392c3232322c3130312c31352c3233392c3138312c3136302c3130372c34395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "8c3b311270c86218a3602122df74867dd68b55838480495219ba75421a9012b6", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c3134312c3232302c3231352c3232332c37342c3230382c3132312c34312c38312c3132382c3235322c3232372c37382c332c3139322c3232382c3135382c3136302c3233342c3131372c36302c3136342c3232322c3230312c3130382c34362c3134362c31392c3130302c3232302c39355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136362c3132312c332c3135372c3232342c3131392c3231382c36382c3137332c39302c3134372c3234392c3131332c33302c3235342c3233352c3130372c3137302c3231362c3232302c31392c33392c3130362c31372c3231312c31382c3231302c36322c38362c3139302c3233322c32312c3139382c3138362c3234382c3235302c3233362c34392c3132392c3233372c3134302c31342c35352c32382c3139332c37362c3139392c3134375d2c22696e6465786573223a5b302c312c332c342c352c362c372c392c31302c31322c31332c31342c31352c31362c31382c31392c32322c32332c32342c32352c32372c32382c33322c33332c33342c33362c33372c33392c34332c34352c34362c34372c35312c35322c35342c35352c35362c35372c35382c36302c36312c36322c36332c36342c36352c36372c36392c37312c37322c37332c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38382c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133342c3130342c352c3136362c3131372c32332c36302c39362c3234332c34382c3137372c35342c32352c3134362c3136382c3134362c34372c372c31342c34322c3139312c3232392c37352c34362c392c3130342c35352c3137372c3233352c3139362c3135312c34332c352c3130372c3134302c33372c3131382c32382c3135382c32382c36372c3234342c34382c35382c3231352c3134302c3231392c3133312c31342c3234352c38352c37332c3137332c3138302c35382c3131372c3139342c39392c3133382c392c3234382c3231362c39382c3135332c3231372c3136342c3232382c3133322c3135322c3130352c3132342c3232312c31362c31392c34362c3233332c3135362c3230352c3137392c34322c3138342c3130382c31312c3137392c3136372c3139302c3136382c3131372c35382c3232372c33382c35312c3230382c3136392c3131342c32325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34372c362c3233382c3133392c3235352c3132392c35352c3130332c3137332c38302c3131352c3134372c332c3134302c35352c38352c3234372c34372c382c35392c3233342c3139352c34372c3231322c3235302c34352c3134362c38382c36342c33362c36352c31375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "f0c5b3660bad42fbb56c8756921d81ead507f771c8ad1771e8d214789dfcb3ba", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c33332c31352c3230392c34332c3137352c3136362c36302c37362c3136382c3233392c39362c3233372c392c32372c31382c3235322c3134332c3231322c3136312c34372c33352c392c3132352c36352c342c3232322c302c33312c39322c37362c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136352c3230372c33372c3230332c34302c34342c3134342c3233352c3137332c3139372c3233352c37332c35322c3131332c3130392c3133332c3133302c3130332c3132382c37382c35392c3134362c31312c342c3138352c3139312c3231332c3233332c3133362c3130332c342c3131392c3136352c36342c3133392c3136342c3137312c332c3136342c3138322c3131352c3234382c3136362c3231372c3231392c3230362c3234322c3231335d2c22696e6465786573223a5b302c312c332c342c352c372c382c392c31302c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34312c34332c34342c34352c34372c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37332c37352c37362c37372c37382c37392c38302c38312c38332c38352c38362c38372c38382c38392c39302c39332c39342c39352c39372c39382c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137372c382c3136322c3138392c31392c312c362c36302c39302c3133322c3235342c3131332c322c3230372c3136352c3137352c3230362c35302c35342c3235322c3134322c3136392c3231392c39352c3130332c3133352c3137312c35342c3138392c3134302c3234302c37342c35312c3136392c3136372c3136312c31342c3139362c3138392c3139342c34382c3235322c37362c3134302c3233362c3137382c37302c33372c362c36322c3134332c3131372c3137302c3230392c3135302c3138312c33372c37362c31392c35342c3233352c33392c3130312c37302c39342c32362c332c37312c3235332c36362c3136392c3231302c3133322c352c3133342c32362c31372c3230382c3130372c3135362c3131372c3235322c3130392c35342c3230322c3138322c38332c3135312c352c3134332c32392c3137342c302c3233372c37392c35355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32382c38312c36382c3132362c39382c31332c3139372c3232302c3131382c3234342c36352c39372c34342c3134362c3139322c31342c3132332c39312c32392c3138352c39392c3131382c3137392c31382c31302c302c37342c34342c3235312c3138332c3137362c3231345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "8bcb51cee1c1c7371607e00a1941841741a3866a9c657263b07978a08d86ed80": { - "hash": "8bcb51cee1c1c7371607e00a1941841741a3866a9c657263b07978a08d86ed80", - "previous_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "epoch": 20, + "d3ab661818d6c7109bc5a557118e3987aaccb964d2199ef04650d3504fe67740": { + "hash": "d3ab661818d6c7109bc5a557118e3987aaccb964d2199ef04650d3504fe67740", + "previous_hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", + "epoch": 46, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 - } + "CardanoStakeDistribution": 45 }, "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 + "epoch": 46, + "immutable_file_number": 15 }, "metadata": { "network": "devnet", @@ -1058,45 +2963,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:16.111484Z", - "sealed_at": "2024-08-08T15:15:16.370934Z", + "initiated_at": "2024-09-09T12:59:00.783692065Z", + "sealed_at": "2024-09-09T12:59:01.300865476Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "7f9dc438897683a9fb64343f5102a38d05ceba9fa857721eb1ef0cd051231fe1", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c35362c3233332c3134382c39392c36352c31372c37352c33352c3134322c3232392c3134312c3135312c3136392c3234322c3134352c35382c3138332c3136382c3136342c3134302c3136312c35332c36322c3231332c3135372c39382c3139362c3234382c3136332c3136382c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "45", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "fceb38058bb6e5a163b1665f521f91c8a422d6f6868d68660adc02da2055ee2c", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134332c3133392c34352c3230332c39312c39332c31332c3131342c302c3131312c39312c3234312c3130302c3231342c35392c3233302c3139352c37302c3234342c3230372c3131382c3235302c39332c3231302c31322c3130322c3132342c3138322c3231392c3132362c32322c352c3130352c39312c3131322c37322c3137312c3230312c3139332c3235332c3233332c3138312c3130332c3232352c31352c3230382c35332c38385d2c22696e6465786573223a5b302c312c332c342c362c372c382c392c31302c31322c31332c31342c31352c31362c31372c31382c32302c32322c32332c32342c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33372c33392c34302c34322c34332c34342c34352c34372c35312c35342c35352c35362c35372c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c37302c37312c37322c37332c37362c37372c37382c37392c38322c38332c38342c38352c38362c38382c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133342c36332c3235352c39312c3131332c3235332c352c3230332c31372c3233342c3234382c3134352c3138322c3132342c3130322c36302c35372c36392c3233392c3136332c38362c3136302c3139392c3137352c3134302c3130382c31382c36372c31302c3137392c33312c3139302c3235322c3235302c3131312c3131352c32342c3131302c31372c3231392c3233382c38312c3230382c3132322c3139352c33352c3233372c34372c392c31362c33382c3135332c3136392c34342c38382c3233352c3135352c3233372c3234302c3133342c3135312c33352c31332c3137312c38332c3232352c3132342c3230322c3232332c37322c33302c3132352c3134322c3136352c3138352c31332c3232372c3231352c33342c3137382c3136352c3132302c39312c3230392c3136322c3136392c31302c3130382c31392c31392c34392c3136342c3235322c3133312c3232362c3130325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39332c352c3233312c3233382c38392c3135372c36382c3234362c3136362c3139332c3138362c3138392c3232372c3139372c38312c32362c3230342c3133382c3132372c3138322c3134362c3134352c3231372c33312c3234322c3137332c3131392c3135342c32302c3230332c3139362c3134325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "67e15ffd8b6c418062da53de6029589cef3ec0d78f1ab06c08da02da9d065549", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c3231382c31322c3134362c38382c36322c3137382c35382c36362c3231372c38332c31302c3234392c3131332c31312c31302c3136302c38392c3133372c36312c3139322c3233332c37352c3135362c3235342c31332c34332c31342c3232332c3234352c3230302c3137352c34322c31302c3134392c3139382c3138392c3230352c3137382c36342c3230332c3232352c31372c34332c3137392c3234392c3131322c32395d2c22696e6465786573223a5b332c342c352c362c372c382c392c31302c31312c31332c31342c31362c31372c31382c32302c32312c32322c32352c32362c32372c32392c33302c33322c33342c33352c33362c33372c34302c34312c34332c34342c34352c34372c35302c35312c35322c35332c35342c35352c35362c35372c35382c36302c36312c36332c36342c36352c36372c37302c37322c37332c37342c37352c37362c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136392c39302c3131322c34362c3139342c3130372c32392c3137382c37382c342c39312c3136372c3231382c36342c3230372c33392c38332c3131382c3231322c32382c32312c3139332c3134382c3130392c32352c3135342c3135362c3137352c32362c36372c39392c38312c37302c3234312c3233342c32322c39322c3131362c3139312c3230392c3131312c32332c3230322c36302c3231392c38392c35322c3132382c352c3234352c3138362c32322c362c3139332c34332c3133362c34382c32362c34372c3136342c3233342c3135332c3134392c3139392c3139362c3135362c3137312c3132322c39372c3136372c37382c36312c33352c3134362c39342c34342c39382c36352c3132372c3139322c3139312c3232312c372c3136372c3134312c3235322c312c3230352c3232362c36342c3137372c37302c3138382c3136362c34322c3131345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131362c3233302c3130392c34312c3131342c3133382c3137302c3234302c362c3133362c37342c3136352c3136382c3132362c35342c3133392c37302c3139372c3131332c3138302c32362c3232312c3130352c3136392c3135312c32372c3131322c3131382c33372c3135352c37322c3231315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "8eeb903354d9a98ed0758c165a179ff58478a0f2084f95cd2989c44a692a044d": { - "hash": "8eeb903354d9a98ed0758c165a179ff58478a0f2084f95cd2989c44a692a044d", - "previous_hash": "5185d40099ae179282ec0c77a04d0678898272d238e44e4430a6abf1cbe507af", - "epoch": 11, + "d402d98d38cadd400a4bc23af1d7a5a1ca86fdf9b6111d304315bda72d0b8ac8": { + "hash": "d402d98d38cadd400a4bc23af1d7a5a1ca86fdf9b6111d304315bda72d0b8ac8", + "previous_hash": "a2aa3c28351b86b3516170e7e09c100ba88ab8af244038e036333d34c6cc98a2", + "epoch": 41, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 11, - "immutable_file_number": 2 - } + "MithrilStakeDistribution": 41 }, "beacon": { "network": "devnet", - "epoch": 11, - "immutable_file_number": 2 + "epoch": 41, + "immutable_file_number": 13 }, "metadata": { "network": "devnet", @@ -1106,41 +3004,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:50.812785Z", - "sealed_at": "2024-08-08T15:14:51.075356Z", + "initiated_at": "2024-09-09T12:58:46.265287297Z", + "sealed_at": "2024-09-09T12:58:46.798851214Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "ccac13f3d318647925ab45f6ea9a7cd340439aa1df5b6a0e0b8adced65b7c5bb", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230382c3232352c3235332c32392c38372c3137372c3137312c3133392c3233322c37362c3138362c3137332c33372c35322c34352c3235342c3138382c3133332c3231332c39342c38392c3135302c3230372c3138322c3232332c3231362c3135342c3136362c3134342c34312c3133302c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "17d068eada9f1644e3262ad16ef7662d5afc96e14bb076000faf42340a90bd17", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3234342c3139342c3232392c3233342c36312c3130362c3132382c3234342c3234372c3232362c3138372c3132342c3130352c3235352c3233342c39322c3139372c3134332c31322c3131332c3131342c352c3134372c39312c3231372c34382c35332c3232362c37312c362c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136372c35332c31332c3137322c3131372c32312c31342c31332c3230332c35392c302c3136332c3133362c3133352c3139322c3131372c39362c3135302c3133362c3136362c3137372c3231362c38352c3132332c31302c3138332c3133362c3138382c33362c3135352c39302c302c3234372c32312c3131392c3132322c31332c3135382c3235352c3132372c38322c3231312c3135352c3232362c3130312c3233332c3232392c37355d2c22696e6465786573223a5b302c322c332c352c362c372c382c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32322c32332c32342c32352c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35312c35322c35332c35342c35362c35372c35392c36302c36312c36322c36332c36342c36362c36372c36382c37302c37322c37332c37342c37362c37382c38302c38312c38332c38342c38352c38362c38372c38382c38392c39312c39332c39352c39372c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136342c36332c3232352c35362c3132322c33332c3135342c39322c3234322c33372c3231382c31332c3136342c31302c31382c3139322c3138382c3138312c3134312c3132392c39362c3132332c38322c3139312c34332c3130362c3230352c35362c3136342c37332c32372c38332c3131392c35382c3232382c3135302c3137302c3133332c36362c31382c32392c36352c31352c3135382c37302c32342c3134362c31372c32302c3130332c36352c3233312c312c3130362c3232372c3234322c3234312c3138342c34342c3232312c3232372c3132342c3232382c3133332c322c37312c34382c3135312c3234312c332c3133392c37322c33312c36312c31302c34382c3133312c37322c3131322c32362c3231372c3232322c3138302c3231302c37322c31312c38392c3134342c3230342c3134362c3134382c3231302c3136342c3134382c3137312c3131305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135372c3131302c39312c3139342c3135372c3230312c38302c342c33302c3139322c35352c34372c3230372c3234312c3233332c38382c39382c372c3231332c3134302c3233342c39362c3232342c36392c37382c3133362c3135392c3233322c3235342c39382c3130372c36305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "bfa1705bbcc29558366d945d4020f5c67e5a37717fe2681473f84fb6f9a116d4", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138302c3234382c31302c33312c3131302c36302c3136332c382c3138302c3234342c3135362c37302c3233392c31302c34312c3233382c3135382c3235342c3135312c32342c33302c3134312c36372c38302c392c3138332c3231302c31332c3130322c3139382c32362c3139302c3130352c31332c34362c31392c3135312c3130382c3230332c3235332c3234392c33332c3231322c39312c3137342c3235302c37392c3133395d2c22696e6465786573223a5b302c312c322c332c342c362c372c382c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32352c32382c33302c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34352c34362c34372c34382c34392c35302c35322c35352c35372c35382c36302c36332c36342c36362c36372c36382c36392c37302c37322c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134302c3133322c39372c3231372c37342c38302c31352c3136332c3138362c312c36302c38352c31332c3230352c3137302c3139372c3135362c3234352c3131382c33322c37362c3133312c3139352c3230372c32362c3230352c33382c3231352c3139302c3130362c35342c3235302c3135392c3232322c3232392c38342c3139312c3230392c3137332c3230322c31302c35362c3133382c3134382c3134392c3232322c36382c3139392c382c3234302c3134372c39362c37332c3131372c3130322c3230362c3137302c31352c3139352c3137322c3138332c3136302c3135322c3234332c3231302c3137332c38372c36332c332c3234392c3231382c37312c3232302c3136322c3137352c39332c3138342c36382c3130332c3133362c3134372c35382c3138352c3233322c31322c3138322c31382c3232332c32342c31312c3136302c35362c32392c3137372c33342c3134325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135322c3132342c3139372c3131382c3133302c32302c3133302c33312c3134312c33312c31302c31392c3130332c33332c39302c3233312c32392c36342c3135322c3133352c3132392c352c3232342c302c3135332c3231322c3136382c32382c3131362c3134372c3136352c39325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "968118eff75386e71874bd2388e00c0c5d3cac7ece65cebf9f60f0754341a710": { - "hash": "968118eff75386e71874bd2388e00c0c5d3cac7ece65cebf9f60f0754341a710", - "previous_hash": "5185d40099ae179282ec0c77a04d0678898272d238e44e4430a6abf1cbe507af", - "epoch": 12, + "d7e1b05877169e5b12f35ad217e74190e4e435d53c353803fb7a6053c09b5e85": { + "hash": "d7e1b05877169e5b12f35ad217e74190e4e435d53c353803fb7a6053c09b5e85", + "previous_hash": "27a2171a4e6eb4a80bc36d71f1d11cf9e1640fae490dfd038235c5ffd1e789d8", + "epoch": 18, "signed_entity_type": { - "MithrilStakeDistribution": 12 + "MithrilStakeDistribution": 18 }, "beacon": { "network": "devnet", - "epoch": 12, - "immutable_file_number": 3 + "epoch": 18, + "immutable_file_number": 5 }, "metadata": { "network": "devnet", @@ -1150,44 +3043,44 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:52.975631Z", - "sealed_at": "2024-08-08T15:14:53.107686Z", + "initiated_at": "2024-09-09T12:57:41.780111125Z", + "sealed_at": "2024-09-09T12:57:42.169800158Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137322c3132342c36312c3130372c33372c312c3230352c33332c3230392c3233392c34302c3133382c3137322c3130352c37322c3132372c3139312c3234332c3234372c39312c362c342c3131372c3235312c33342c3135372c3234352c3234382c3137372c3135322c3130322c3131375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133302c3133332c3230382c35372c3130372c3130312c3232312c3233312c3139322c3234332c3131312c32372c352c31392c36372c33342c32362c3232332c3234322c3231342c39332c36332c3135312c3132382c3137392c36342c34382c33362c3137362c3135322c3234312c3134325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "e014d92998c9ed588bcf025e4422ad77eda878e327d18390d222f919d77abf35", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230382c3232352c3235332c32392c38372c3137372c3137312c3133392c3233322c37362c3138362c3137332c33372c35322c34352c3235342c3138382c3133332c3231332c39342c38392c3135302c3230372c3138322c3232332c3231362c3135342c3136362c3134342c34312c3133302c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134302c35372c36352c3130362c39372c3233362c3130352c3137392c33392c3136322c3133322c3137342c3234342c32302c3232342c3131342c3132382c36362c3235342c3230372c32332c3135392c3233352c3234332c3231372c36322c38362c31382c36382c3135362c3233372c3235312c34352c3135352c3139362c3137332c32332c3139312c3131312c3137362c3137302c3132302c3137332c34382c362c33352c3137352c36325d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c392c31302c31312c31322c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32362c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35342c35362c35382c36312c36322c36342c36352c36362c36372c36382c37302c37312c37332c37342c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39302c39312c39322c39362c39372c39382c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3133322c3136362c3137302c38312c3138382c37392c34312c3131352c3137322c3139342c3131382c37322c34392c38322c38382c37312c332c35382c34302c3132362c39392c3133302c3234392c3133372c36392c33372c3134372c3139352c3130332c37392c37322c3232372c35302c35372c3136302c33332c3232312c3232342c3135312c3137352c3139312c33322c38362c3230352c32312c3132332c3230312c3130352c392c312c32312c34332c3131372c31392c37362c3136312c3230352c33302c36382c3135392c38382c3138332c3131332c3233322c32382c3139302c3132302c33312c3133342c3230382c34392c39302c3233392c3136372c37392c3232302c34342c32352c3135352c3233342c37322c3234382c3130362c3135372c3233302c3233312c3130352c3136352c372c3133332c372c34362c3139362c36392c34382c37395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35342c3233382c3233362c33382c3130382c3233352c34372c36372c3232312c33382c3234382c3137382c37312c3136322c3139382c3232382c372c3135342c3136352c3130312c3139352c33322c3138312c3137372c38342c3231392c3137312c39382c3231382c35372c3138382c3232315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "5a0c8223f22233a65d68f0cace545c763401a4b8154f86f7e8e026853725a607", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234342c35302c36332c32352c38392c3131342c31372c3233302c3135332c37332c3138322c3231302c3135372c3133372c3133322c322c32372c3138362c32392c3231332c3230372c3231352c3231312c3136312c3138352c3132322c39342c32392c39312c3130332c32322c3231325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134362c3138382c38382c3131332c3235342c3131302c3134342c36312c3139342c3235312c3134332c3134342c34342c3137382c3234392c3132332c32372c3134332c38332c3138352c3231332c3132302c32392c3232342c37332c37322c3130322c3135372c32322c33342c3132322c34382c32382c34312c31302c3136332c33342c31312c3231322c39332c3234372c3136312c32362c3235332c3234372c3232352c3135322c3232305d2c22696e6465786573223a5b302c312c322c342c352c372c382c31302c31312c31322c31342c31372c32302c32312c32322c32332c32342c32352c32392c33302c33312c33322c33342c33372c33382c33392c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35332c35352c35362c35372c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38382c38392c39302c39312c39332c39342c39352c39362c39372c39382c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136352c3135382c3132392c36352c38342c39322c31302c3131372c3130302c34392c33392c3233352c362c34382c35332c3232372c3130372c3138382c3135392c31382c3132392c3230392c3132392c3136372c39322c3139372c35342c3132342c3134302c3138352c3231382c3139302c38352c3138332c3139392c3139312c3130352c35312c372c38372c3235312c3131372c36312c3232392c3133332c3137352c3136392c34372c31342c302c38362c3232382c3230352c37372c3234362c39392c3131352c35362c3231352c3230352c34322c3136352c34352c38342c31322c3232302c31382c3232332c3139352c3133392c3135332c39322c3133372c34372c332c3230342c32392c3232352c37302c3233362c37332c3133312c3138392c33322c3131392c3234392c3137312c3233342c3234312c3132372c34382c3137392c3131302c3133372c3134382c3130365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131302c32332c36362c3231362c3234332c3138332c35312c31352c35322c3234322c37392c3133392c3137352c36332c35352c3134332c3235302c3231332c38382c37372c3230362c3138302c35342c3131362c34362c32332c3135322c32362c3235322c3233362c3136352c3234355d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "9a3bdec5364463be7bc25cdf29a9a7ea652df1b57e5a2f2685908d6637037409": { - "hash": "9a3bdec5364463be7bc25cdf29a9a7ea652df1b57e5a2f2685908d6637037409", - "previous_hash": "b7466128456915070b1a65cff4ae86243b3fa194daef7b2c7978060dd8daf8ed", - "epoch": 17, + "d8378c77f18a605cec435443274014dffff5723b683ad7f8e71cf2c3ac37e1ce": { + "hash": "d8378c77f18a605cec435443274014dffff5723b683ad7f8e71cf2c3ac37e1ce", + "previous_hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", + "epoch": 51, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 17, - "immutable_file_number": 5 + "epoch": 51, + "immutable_file_number": 16 } }, "beacon": { "network": "devnet", - "epoch": 17, - "immutable_file_number": 5 + "epoch": 51, + "immutable_file_number": 16 }, "metadata": { "network": "devnet", @@ -1197,45 +3090,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:07.986254Z", - "sealed_at": "2024-08-08T15:15:08.247589Z", + "initiated_at": "2024-09-09T12:59:15.051082341Z", + "sealed_at": "2024-09-09T12:59:15.310597676Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "f872e1a000f92e29c77f7a407f7f228cd35e1fa5ffd42081ae951cd858fc6a0c", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135352c3234332c3232302c3136342c39382c3137342c39342c3133372c36322c39392c3138352c3139392c312c3231302c36352c3132382c3232392c352c362c38312c3134342c3230352c3231362c3233372c31312c3134352c3131382c38322c3139352c3131362c39322c3232335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "d3bae6df21ff157b79ec4ab2ed864b48d06271d103a2cd54ccec9357d27d622c", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "5569c4707fd88cada1bd379aec14265de5f21d54d87bcb843993fe7c7a23e724", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b342c3134332c3139302c39342c3234382c3137392c3130382c33392c3133342c3131342c3235342c35362c3235342c3130382c3234392c3136302c39392c32362c3134382c3235302c3130352c3139352c39382c37392c3232322c3130312c31352c3233392c3138312c3136302c3130372c34395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c3232302c382c3131342c3232312c35362c3137332c3136302c3134322c3234392c3232342c3132332c3230382c39352c3132392c34302c3234372c3133382c35352c3233352c3233332c3139362c33372c3139302c3232312c3135312c3133312c36352c3233392c34332c32332c3137322c3235332c3135342c35312c3138372c3135392c35372c362c3135322c38352c3133312c3133382c37302c3138392c3130352c38342c32345d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32312c32322c32342c32362c32382c32392c33302c33312c33332c33342c33352c33362c33372c33392c34302c34312c34332c34342c34372c34382c34392c35312c35322c35342c35352c35362c35392c36302c36312c36322c36332c36342c36352c36362c36372c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39362c39372c3130302c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133352c3231332c3138332c3132342c3133362c33342c3131332c3231362c3135372c3233392c3132392c3134382c3138312c392c3234382c34302c3139372c3232352c36382c3235312c3136332c362c3234332c36302c3136302c3138382c3131342c39352c372c3139332c3130392c36382c3234382c35342c38302c3130332c34342c37322c34362c32302c3233362c3130382c3130342c3131392c31342c35362c3139302c31352c31362c3233302c3138372c352c3136342c3134322c3130392c3234332c39382c3138362c3234322c3137342c3139342c3135372c34302c31362c3233322c382c3135362c3132392c3233352c34332c3135352c34392c382c3230352c3232342c34392c3130392c38312c3135322c38352c36342c3231302c3138392c3232352c3230302c3134382c3133302c3131392c3231332c38392c3234302c3137352c3136302c35302c34352c3130305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37362c3131352c39342c3130352c3233352c3133312c3233352c39392c38332c302c34312c3132352c38302c3134352c36342c3139312c31362c302c36372c3232312c31312c3235332c3232382c3139342c39392c36382c37302c31322c37372c302c3233382c3132325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "d838cfa674be68f766ae9dee3746c94eafaffd3d3ed137cfaa59b1ed6b0501ec", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136322c3139362c37332c3135382c3135372c3139372c37302c302c3132372c36342c3131382c372c3230372c3232302c3133342c36392c3131392c3233392c3133382c3138332c38382c38312c382c3230362c3138322c3235342c3137342c3231362c3232382c37352c3135382c3233332c3137392c31312c38322c3138352c33302c31332c322c39382c3133302c39342c3135332c3230382c3235312c38352c3139372c3235355d2c22696e6465786573223a5b302c342c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32352c32382c32392c33302c33312c33332c33342c33352c33362c33372c33382c33392c34322c34332c34342c34362c34372c34392c35312c35322c35332c35342c35352c35362c35372c35392c36302c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37342c37352c37362c37372c37392c38302c38312c38322c38332c38352c38362c38372c38392c39302c39312c39322c39332c39342c39362c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3137322c3231352c37322c33342c37342c34342c3139372c39302c38352c3231302c3139372c3139302c37342c3231342c38392c332c3132382c3138392c33362c3135392c38312c3135322c3135352c3139382c3133362c36372c3133312c342c3134322c3139352c3133322c3133392c34372c3132382c36372c3137352c3234352c31342c3136302c3130312c3132332c3138322c3138382c3233362c3137362c3133302c3138332c3138302c392c34362c3135392c3131352c39392c34352c3234322c3234342c3137382c3231372c38312c3139372c3138382c38322c3233302c3135382c3136322c3130332c332c3134362c3139352c3232362c38352c3138322c32322c3134322c3231392c3130332c3234322c382c32322c3231352c39302c3130342c33372c38392c342c302c3136322c36332c31312c3232352c3130372c322c3133312c37352c3233382c3137345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230382c32392c31352c37382c3131312c37302c37362c3131372c3230352c3230392c3132372c3137302c3136372c3233322c3138312c38372c3231322c37362c39382c39342c3130352c3132322c3230382c302c3134392c3130342c3138372c3137382c3233342c3136302c38382c34395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "a01077829baeec7971f115f3f84eaedb2c9ecf7aef856b1f0a4f2b3e7e3c8316": { - "hash": "a01077829baeec7971f115f3f84eaedb2c9ecf7aef856b1f0a4f2b3e7e3c8316", - "previous_hash": "5185d40099ae179282ec0c77a04d0678898272d238e44e4430a6abf1cbe507af", - "epoch": 11, + "df2d6cefa95e2f90671555f2c5d611f3aa21c71ebd57cf47a66397dc4ee49ea8": { + "hash": "df2d6cefa95e2f90671555f2c5d611f3aa21c71ebd57cf47a66397dc4ee49ea8", + "previous_hash": "a2aa3c28351b86b3516170e7e09c100ba88ab8af244038e036333d34c6cc98a2", + "epoch": 40, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 11, - "immutable_file_number": 3 + "epoch": 40, + "immutable_file_number": 13 } }, "beacon": { "network": "devnet", - "epoch": 11, - "immutable_file_number": 3 + "epoch": 40, + "immutable_file_number": 13 }, "metadata": { "network": "devnet", @@ -1245,41 +3134,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:51.902458Z", - "sealed_at": "2024-08-08T15:14:52.163787Z", + "initiated_at": "2024-09-09T12:58:44.378614563Z", + "sealed_at": "2024-09-09T12:58:44.639317845Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "1b8b0f1a1cdadd7a9600fe0a546ca19ef39b4488899b1974bd0a6bb58009ed0d", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230382c3232352c3235332c32392c38372c3137372c3137312c3133392c3233322c37362c3138362c3137332c33372c35322c34352c3235342c3138382c3133332c3231332c39342c38392c3135302c3230372c3138322c3232332c3231362c3135342c3136362c3134342c34312c3133302c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "35d08bd4ebc7599413a000a069a4a7182c6cb313083b7b62f8b8681c9198e4c7", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3234342c3139342c3232392c3233342c36312c3130362c3132382c3234342c3234372c3232362c3138372c3132342c3130352c3235352c3233342c39322c3139372c3134332c31322c3131332c3131342c352c3134372c39312c3231372c34382c35332c3232362c37312c362c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137332c3230322c3132302c31352c37342c39312c37322c3138312c3135302c3130332c332c3136342c3135322c3233362c39312c3234352c3134312c36322c3234312c3137382c32332c3134342c3234302c3133372c39302c3135382c3233322c3136362c3139312c3134352c3132382c3134372c38322c38332c39362c3230372c38312c3230322c38322c3233322c35352c3136322c36392c3233372c3131332c3136352c3132322c3132305d2c22696e6465786573223a5b302c312c322c332c362c382c392c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33302c33332c33342c33352c33362c33382c33392c34302c34312c34332c34342c34352c34382c34392c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c37302c37312c37322c37332c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39302c39322c39342c39352c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136342c36332c3232352c35362c3132322c33332c3135342c39322c3234322c33372c3231382c31332c3136342c31302c31382c3139322c3138382c3138312c3134312c3132392c39362c3132332c38322c3139312c34332c3130362c3230352c35362c3136342c37332c32372c38332c3131392c35382c3232382c3135302c3137302c3133332c36362c31382c32392c36352c31352c3135382c37302c32342c3134362c31372c32302c3130332c36352c3233312c312c3130362c3232372c3234322c3234312c3138342c34342c3232312c3232372c3132342c3232382c3133332c322c37312c34382c3135312c3234312c332c3133392c37322c33312c36312c31302c34382c3133312c37322c3131322c32362c3231372c3232322c3138302c3231302c37322c31312c38392c3134342c3230342c3134362c3134382c3231302c3136342c3134382c3137312c3131305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135372c3131302c39312c3139342c3135372c3230312c38302c342c33302c3139322c35352c34372c3230372c3234312c3233332c38382c39382c372c3231332c3134302c3233342c39362c3232342c36392c37382c3133362c3135392c3233322c3235342c39382c3130372c36305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "fbf80fde22a064b7b5586dcb74c9920e11aefd5907c8c16ea1bedf0f5806e331", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233352c3133362c37322c37312c3234342c3130342c3130382c3137322c3138392c36302c37342c3132342c3235332c3230382c35312c3138302c342c3133352c382c3134362c3130312c3138312c3131362c3232382c3130342c3139372c3136392c3139312c3136362c35342c36332c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137372c34372c3132332c37312c37392c38392c3136322c3132342c32302c39322c3231302c33372c3135312c38372c3131342c3230332c3133332c3135392c39332c3139332c382c37312c36322c3235342c32342c3136322c3133382c38312c38382c3230302c38332c37312c3134302c3139352c36352c33332c38352c3135352c33342c3135382c302c3137332c3134372c3135382c31302c39352c3132362c3135385d2c22696e6465786573223a5b302c312c342c362c372c31302c31312c31322c31332c31342c31352c31382c31392c32302c32312c32322c32332c32342c32362c32372c32382c32392c33302c33342c33362c33382c33392c34302c34312c34342c34352c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c37302c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39372c39382c3130302c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3135322c3130382c3137392c3138332c3230342c3133352c3230322c3133372c3133352c34342c39382c3134322c31302c38322c3134382c37352c3135392c3230312c36332c32322c3136392c3233312c3136382c35372c37302c3137372c31332c38372c3134362c3130322c3137332c3134372c3232342c36382c39392c3130382c3233302c37312c34342c39352c3132302c3132352c3233322c3133312c3137352c3137392c3230362c37312c31352c3131362c39332c35302c34302c3138332c3134342c3233302c36382c302c38362c37362c3232392c37332c3234392c3136392c372c38392c3135352c3136362c3136382c37382c34392c32392c372c31322c33332c3133312c3232332c3138312c33372c3133392c322c3131322c3233332c3231312c3130322c3132382c39392c3130392c3131362c3137312c38302c3139372c3133352c3230332c3232372c35325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35372c3233372c37312c34322c38342c3232372c32352c38392c3132382c3231342c35302c3230382c3131382c32382c37372c3134362c39322c3233382c3138352c3132362c33392c3134392c3136302c35302c39322c33352c3133322c37352c3232352c3136382c3137342c3136345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "a11139300a460087942144f7ffb3242e496da504dfad3884e8c7fefa02bff8ce": { - "hash": "a11139300a460087942144f7ffb3242e496da504dfad3884e8c7fefa02bff8ce", - "previous_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "epoch": 23, + "e08c33b16ffd90a63bf9a90ca81e76c483f7d0e219ecb4f36772f0e835aed89e": { + "hash": "e08c33b16ffd90a63bf9a90ca81e76c483f7d0e219ecb4f36772f0e835aed89e", + "previous_hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", + "epoch": 53, "signed_entity_type": { - "MithrilStakeDistribution": 23 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 53, + "immutable_file_number": 17 + } }, "beacon": { "network": "devnet", - "epoch": 23, - "immutable_file_number": 7 + "epoch": 53, + "immutable_file_number": 17 }, "metadata": { "network": "devnet", @@ -1289,36 +3178,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:23.836885Z", - "sealed_at": "2024-08-08T15:15:23.969512Z", + "initiated_at": "2024-09-09T12:59:20.944241081Z", + "sealed_at": "2024-09-09T12:59:21.204200334Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31322c3133352c3234332c3139382c34362c3132302c38342c3130302c35362c3233352c3135382c3231382c3131322c3136332c3230372c31342c3139332c37322c3230372c36362c34352c3135302c3138382c3134352c3234362c3232302c34352c3135382c35372c3230392c3137362c36305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "de3515f6f9ef0f2ad0a09e0acd4fa63113cf3f29f42a49a454e7c74cb943c005", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b352c3232302c3139322c3234352c33342c37312c3130392c3131372c3138302c3231352c3138362c3135322c3137352c33302c31342c32342c3235332c3132382c3230302c34392c36312c32392c3136362c3133352c3133362c3233352c3232322c35312c3130302c39332c3135342c315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0140de055e84df9155ac8e556e6d69052fd8d5b6d9679e291c0b7713aaf78487", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134382c3230372c35392c32302c32312c3133382c3133322c37372c322c39312c3131372c3234302c322c31372c3233372c34352c3230392c37382c3132372c3234312c3131352c32392c37372c332c3130312c37352c3136312c3131342c3230302c3139382c3231322c3230372c3232372c3230382c3133312c3131332c31332c38332c32392c3130312c37362c35322c34352c3133372c3133382c3234332c3130372c3137395d2c22696e6465786573223a5b302c312c322c332c342c362c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32322c32352c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34352c34362c34372c34382c34392c35302c35322c35332c35342c35352c35362c35392c36312c36322c36332c36352c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133322c3234382c3136322c36392c3132302c31312c35322c3234382c312c3231312c39392c35392c36342c3136312c3136352c3133382c3230352c3138322c3139342c34352c31382c3138392c3230312c3130342c3137392c35302c39362c3133362c36372c3138302c37332c34342c36342c34332c3136362c3135302c3232332c302c32312c3230362c332c362c3138362c3134302c3130352c3131342c3130322c3235352c362c34302c3139312c3235352c35382c3136362c36302c34392c3138382c3139312c34372c31302c3230392c3232352c37372c32362c34312c3137362c3232372c3139332c342c3232302c34342c3135382c35332c3235312c3139352c3134352c39312c3232392c31302c33392c39372c33302c3139362c3231322c3139342c3132302c31302c32332c3133362c3131342c3136302c3134382c38392c35312c38332c3134355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232362c3134362c3235342c3132322c3131342c32342c3130302c3231322c3138372c3133342c3233372c3131322c3134342c352c3131302c3230322c3233382c35382c35322c31362c3133302c3133312c3134342c36362c35302c3139332c3230392c3134312c36362c3131382c3131382c3139395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "0624ca348ecffbf56ff706cf8b592bb139217d2b44e03b32e65846864f4c4e0e", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138332c3139302c3230322c36392c39332c362c3232332c3135352c3130322c36312c3137322c3233372c3137382c38362c3136322c302c33352c37332c3234342c3230302c35362c33382c3137312c3231392c39362c3132312c38312c32302c3130372c3134332c3233312c34362c3139352c3132322c3234312c36382c36372c3131312c3133332c39372c3133382c372c3232332c3234322c3135342c3137342c3132342c345d2c22696e6465786573223a5b302c312c332c342c352c372c382c392c31302c31312c31322c31332c31342c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34322c34332c34352c34362c34372c34382c34392c35312c35322c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37312c37352c37362c37382c37392c38302c38322c38342c38362c38372c38382c38392c39302c39312c39322c39342c39382c39392c3130302c3130312c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134342c3234342c3233362c3230332c3130372c31362c3136312c36392c3131302c3230362c3137322c36322c342c31352c31392c3235332c33342c35312c3235322c39342c3138352c31392c3138352c3231372c3233322c3131372c3230342c3232302c36352c3233362c3134352c3234342c33362c3234392c3234312c34342c3138372c3133342c32312c3139372c33322c3234362c3230352c34332c36332c36372c3231322c3133352c31312c3134342c3235322c39342c39392c3139362c3230372c3135392c3137382c3132392c3138392c3130382c39302c302c3131322c342c3235302c3137362c3230312c39342c3233382c3230392c3138322c3230312c3233352c3130362c35312c362c3133372c39382c3136392c38322c3134342c34372c3130332c37312c3131312c35372c3134332c3139322c3231392c3136392c39312c3132362c3133392c3130362c36392c3233345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3133382c3131322c3234372c3133332c3133352c34332c3233372c342c3231322c39392c3232332c3234302c3133332c32392c3233392c3133322c3138342c3231322c39302c3132302c3138342c3132342c37322c3139382c35392c3233352c3235312c33372c34312c3132392c3231342c32395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "a79ca5e2305c2bf7cb270f647bf769db7c24d9468e2824efc22cc38247e6471b": { - "hash": "a79ca5e2305c2bf7cb270f647bf769db7c24d9468e2824efc22cc38247e6471b", - "previous_hash": "55c9d1616a06a38cb274629f3de576b10b57d696da7494b4d7a2b425831e0772", - "epoch": 18, + "e1bddee89293b9d7b73c7b07a2ae3d131a6b8c3aa0ac5354e02a6679bcca7353": { + "hash": "e1bddee89293b9d7b73c7b07a2ae3d131a6b8c3aa0ac5354e02a6679bcca7353", + "previous_hash": "2bebf6af48aa75fda8b21c19dad6201b4513e8bccbf0650531400abdca0d8593", + "epoch": 23, "signed_entity_type": { - "CardanoStakeDistribution": 17 + "MithrilStakeDistribution": 23 }, "beacon": { "network": "devnet", - "epoch": 18, - "immutable_file_number": 5 + "epoch": 23, + "immutable_file_number": 7 }, "metadata": { "network": "devnet", @@ -1328,45 +3218,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:10.021820Z", - "sealed_at": "2024-08-08T15:15:10.285099Z", + "initiated_at": "2024-09-09T12:57:55.795237564Z", + "sealed_at": "2024-09-09T12:57:56.314561602Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "17", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3136392c34302c32362c32372c3139352c3139332c3138312c36352c37322c3234392c3139362c36392c34362c3233382c31312c3233302c3230302c302c38312c34372c3233392c3232332c35312c35372c34372c3130362c32392c3131312c3134372c3131322c3135335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "b6a60470aa698d45b2d3623f2b1c6d914ab0d7f5faa0aa95c7712c5f8cb64389", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135352c3234332c3232302c3136342c39382c3137342c39342c3133372c36322c39392c3138352c3139392c312c3231302c36352c3132382c3232392c352c362c38312c3134342c3230352c3231362c3233372c31312c3134352c3131382c38322c3139352c3131362c39322c3232335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3135352c3135352c3133352c37352c35352c33382c39322c31342c3235312c3231302c34352c31362c3136312c3230372c38392c3131392c34382c38392c3230392c32362c3135392c3136382c3233352c32302c34372c31302c32302c39372c332c36382c392c3132372c3134352c38322c3230312c3133312c32362c3139352c32312c3134342c31302c3134342c3131362c3231352c312c3132382c3136325d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c392c31302c31312c31322c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32362c32372c32382c33302c33312c33322c33332c33342c33362c33382c33392c34302c34312c34342c34352c34382c34392c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37362c37372c37392c38302c38312c38322c38342c38372c38382c38392c39302c39312c39322c39332c39342c39352c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3137312c3233332c3137362c3235352c3133342c3139312c36362c38372c3136312c39322c3137372c3230332c372c34302c3138312c3139342c3231362c37342c35312c3130392c3132392c3235322c3231302c35392c3135312c33322c3139372c3233382c3132312c39332c382c3133392c3137302c3138312c3137362c37392c36382c3131352c32302c32382c3135382c32322c322c35392c38312c33372c36382c35362c31342c3230312c34332c37312c3230352c3235322c382c35332c3232332c3230352c31332c39342c3137392c36322c3234332c3133322c35322c34382c36382c3133372c3131372c3235302c3130312c3132342c3133362c382c33352c362c33362c3139322c33372c33352c3133392c3234302c38362c31302c3137332c3233352c3230372c3234392c3135332c3139322c38322c3133362c34382c3136362c3230322c3233335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135322c3138352c3138302c35302c3131352c3234352c3234362c3231362c3231372c36322c352c3230332c3233302c3139382c32312c3230362c3130312c33352c37312c3233392c3135362c3136342c3136332c322c3132302c3136322c3139382c3139302c34302c34362c3133362c36375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "e8e54610eb03c95bad36e24b5429dd5760587f775c2e377de97efd10cf17ce3b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37392c3139372c3137322c3233362c372c35302c3139302c3136362c3234332c3138342c3134322c31372c342c3137322c3139312c34332c3138352c3131312c35342c3133392c37322c3137302c3231302c37322c3230392c3230322c36322c3134392c3130302c3134332c3135312c3137395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c31372c31352c36382c3136302c3139302c36332c3133302c3137312c3232382c32352c3235312c33312c3136372c3130322c3139362c3137392c38312c37392c33392c3230372c3132322c36392c35312c38392c3131302c3131392c3131392c3235332c3134352c3134362c3131392c35362c35352c3232302c3230302c35302c34382c38352c3133312c36312c3131362c3234332c3134342c3232362c3134322c3139362c3130305d2c22696e6465786573223a5b302c312c322c342c352c372c382c392c31302c31312c31332c31352c31372c31382c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35322c35332c35342c35352c35382c36302c36312c36322c36332c36342c36372c36382c36392c37302c37312c37322c37342c37352c37362c37372c37382c37392c38302c38322c38332c38342c38382c38392c39302c39322c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133302c3132302c3137372c35322c3136392c3136332c35352c3130312c31362c3138392c38322c39362c3235312c31302c32382c3136342c37372c3134312c3231382c3135372c3135322c31302c3133372c382c32382c38302c3139362c3232362c3138342c33362c34392c3235322c3139382c3138392c33392c3230342c31372c3232302c3138342c3139372c3135312c3232332c3133332c39372c35392c3233322c3139372c34352c31392c38342c3136382c3133302c34382c37312c3231372c3137372c3135302c3138342c3131392c36302c3133332c33382c3135302c3135392c3132372c3137372c3134332c3233352c38372c33392c33322c3131352c3232392c31332c3232322c3138352c3230392c3231392c3230362c39342c3130372c3233372c39322c3136362c3231302c3131342c37332c33352c38312c3138332c3135392c3232352c37302c3137342c3231342c3131365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138332c3135352c312c3234362c33352c3232302c3235332c3132352c31312c342c3136362c3133372c35392c3139392c3139312c34332c3131332c3231342c3138362c3139382c382c3136302c3134302c3132392c3135362c3135312c3138382c3235342c3133332c312c3133352c3233315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "af6b5e6d3d9b494ee91f28eac406a905092f1cc499c5fea080bb58bb5ba374fa": { - "hash": "af6b5e6d3d9b494ee91f28eac406a905092f1cc499c5fea080bb58bb5ba374fa", - "previous_hash": "200ab2987880b3e983b1113be17fefb0f1f12a2baeec3c00bab24f41b9c88687", - "epoch": 14, + "e1deb3c58329743012c1e944a5f6931af79a4fd9eef212e00b1a4a0e48466736": { + "hash": "e1deb3c58329743012c1e944a5f6931af79a4fd9eef212e00b1a4a0e48466736", + "previous_hash": "3453ad777b6cf1ac7076850d3a5a9b97cb1988c277a3569e7defee4fd524b63b", + "epoch": 12, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 14, - "immutable_file_number": 3 - } + "MithrilStakeDistribution": 12 }, "beacon": { "network": "devnet", - "epoch": 14, + "epoch": 12, "immutable_file_number": 3 }, "metadata": { @@ -1377,41 +3261,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:59.193512Z", - "sealed_at": "2024-08-08T15:14:59.459636Z", + "initiated_at": "2024-09-09T12:57:24.947563162Z", + "sealed_at": "2024-09-09T12:57:25.339340835Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "stake": 13333333334 - }, - { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "cedce9825749007233c5e66512a41ca3fccc1cee02d3026013908d5d18183291", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131372c3135382c3133392c3132362c3133322c3138392c3139342c3233312c3231342c3137382c3131342c3136322c33362c3130342c34342c3134372c33362c3135362c32332c3132352c3137322c3234352c38372c3133392c32352c3138302c3134342c3235302c3235302c322c35322c3139395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3235312c3138332c39302c34322c3130362c3134322c3232382c3232392c34332c3135382c34312c36322c39362c3230392c3231372c3139332c3231352c36342c3234312c39382c3134362c3131352c31332c3233352c37392c3233332c3234312c3136362c3138342c3134332c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "cdb8230b23b847b0401d0935852160b478185f0d20aca0af73b94639078e2079", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136312c3231352c31302c34392c3137312c3232352c39342c3233362c3232382c32342c3235312c37392c3135372c34342c33332c39302c39372c3137392c38352c3132332c37382c33362c3134382c3234362c3137392c3132322c3234312c3131312c3131382c32332c3139342c3137375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135332c3230312c35342c3231342c38372c39302c3135322c302c36382c3233362c36352c38352c3130312c3232382c31302c3230312c36392c3234322c3232332c3136372c32332c31382c3130362c3131302c3139392c32312c3139352c36332c3231362c3233362c3136312c39392c3234352c3233322c3230372c33362c3234352c352c3137302c39302c38302c36302c39312c3233362c38382c38322c3136312c39385d2c22696e6465786573223a5b302c312c332c352c362c372c382c392c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c34302c34312c34322c34332c34352c34362c34372c34382c35302c35312c35322c35332c35342c35352c35362c35372c36302c36322c36332c36342c36352c36362c36372c36382c36392c37312c37322c37332c37352c37382c37392c38302c38322c38342c38362c38372c38382c39302c39322c39332c39342c39352c39362c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133382c39312c32352c32322c362c3134342c3138312c3132342c3138392c3130332c3135362c3131372c3139312c3131342c3133312c35352c35372c33342c3138392c3132332c31372c3231362c39302c34372c37372c3131372c3232302c35352c3135392c32362c3130342c32342c392c3231372c362c3135332c38372c3230322c3138322c3231372c3230312c3135302c35372c3130372c3136392c3231372c3137392c3139342c342c3130372c3132302c33382c3132332c3230342c3233392c32332c36302c3137372c3136392c3233362c3132322c3136362c3133322c32332c3233392c35392c3133332c3135392c36342c3132352c3131352c3130342c3138372c33372c34342c3134392c3130342c36342c38362c36322c3139342c3133302c3139332c3233342c3230362c3230322c36362c3136352c3233382c3230322c3134382c39372c3136342c33382c3134362c39365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132372c31382c3230352c3234352c39342c3234332c3133322c3139372c3231302c37312c3130382c362c3131362c3233332c3139322c3138312c3234332c3134372c3134372c39312c3135342c3132312c32352c38382c3132362c3231322c3231302c37312c3135362c3232392c3134372c3134375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "413ad6ff36ef4c0848bd0d2252e1163c9dc51d61cfce90f530ebf2c190503422", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131322c3133302c3136342c34352c3234382c3136322c36352c3133302c3138302c39362c3133392c36362c3233302c3131372c33312c3134392c3137372c3134302c32392c3136382c3235352c33302c33312c3130392c3136322c3134332c33372c3230372c3130312c3134382c3138302c36385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3131392c36362c38392c3234302c3234362c3135302c3232342c3135332c37322c31302c32322c3133332c3135372c39372c3131332c3233372c3230342c38332c3234322c3131312c342c3234332c39392c3132352c3136332c3232372c3231322c3131302c34342c3130352c34392c34382c3134312c3233352c3230382c3233382c3233372c3230332c3134342c3232332c33302c3139342c3130302c32362c3131372c3132362c3136365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c31302c31312c31322c31332c31342c31352c31372c31382c32302c32322c32332c32342c32352c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34352c34362c34372c34382c35302c35322c35352c35362c35382c35392c36302c36312c36322c36342c36352c36362c36392c37312c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38352c38362c39302c39322c39342c39352c39372c39382c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133392c3135362c3139372c3136332c3132382c3130322c3131312c3135312c3137352c31312c3139332c39342c352c38392c31302c3232362c3231342c3134372c3132372c3135392c34332c3230352c33392c3132372c3133322c3131302c3130362c39362c3133312c3134372c32382c3230362c33322c3131352c37312c34332c36352c3134362c3233372c3137372c352c39372c3231372c37362c39372c35372c39322c36312c31382c38362c3137362c39362c3139372c3136302c37382c3130312c3134392c3132352c3231312c39392c31372c3139342c3134312c3138372c3137372c3234392c3137352c36322c3133372c38342c31372c3131372c39312c34352c3230332c3138342c3132392c3138352c3233312c3233322c3230322c3133332c3130392c3138362c3138302c35312c3137362c3139362c35342c3130332c33342c34392c37362c3134322c3133322c3231355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39302c35302c3233392c3231312c36382c392c312c3134392c3232362c312c3130362c32372c39322c3132312c3136362c3130302c3132322c3132332c38322c3232302c3235342c35392c3235332c3133342c35372c38372c3137342c3134302c33362c31362c3138302c31325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "af99d0b5b4952f5635027c8b8402d8f0cf9a934a2afc14095e74a408399cae3f": { - "hash": "af99d0b5b4952f5635027c8b8402d8f0cf9a934a2afc14095e74a408399cae3f", - "previous_hash": "968118eff75386e71874bd2388e00c0c5d3cac7ece65cebf9f60f0754341a710", - "epoch": 12, + "e339157f5c81d34c325de0205a8a59dec30bc502978c8b4fb3c658ccedcbfae1": { + "hash": "e339157f5c81d34c325de0205a8a59dec30bc502978c8b4fb3c658ccedcbfae1", + "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "epoch": 58, "signed_entity_type": { - "CardanoStakeDistribution": 11 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 58, + "immutable_file_number": 19 + } }, "beacon": { "network": "devnet", - "epoch": 12, - "immutable_file_number": 3 + "epoch": 58, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -1421,46 +3304,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:53.243472Z", - "sealed_at": "2024-08-08T15:14:53.504030Z", + "initiated_at": "2024-09-09T12:59:35.252443732Z", + "sealed_at": "2024-09-09T12:59:35.770979814Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137322c3132342c36312c3130372c33372c312c3230352c33332c3230392c3233392c34302c3133382c3137322c3130352c37322c3132372c3139312c3234332c3234372c39312c362c342c3131372c3235312c33342c3135372c3234352c3234382c3137372c3135322c3130322c3131375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "11", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "snapshot_digest": "cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "088d13f15b424caabdf32ef8188e357c6c1f0d82fbdb3cab45102aea64f0850f", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230382c3232352c3235332c32392c38372c3137372c3137312c3133392c3233322c37362c3138362c3137332c33372c35322c34352c3235342c3138382c3133332c3231332c39342c38392c3135302c3230372c3138322c3232332c3231362c3135342c3136362c3134342c34312c3133302c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134362c3132342c3231382c32332c3231332c38322c3131382c3138372c36392c39342c3135322c3135372c3130372c3231332c3131322c33322c3137372c34382c372c3232302c3138312c3137322c322c3133332c3134302c3235322c32392c37322c3130302c3232322c31322c3135322c3231302c372c3132322c3230392c34352c3132312c31342c3136322c3135302c32342c3139332c3136322c3139362c3131332c3230392c3139345d2c22696e6465786573223a5b302c312c322c332c342c352c372c392c31302c31312c31322c31332c31352c31372c31382c31392c32302c32312c32322c32332c32342c32352c32372c32382c32392c33302c33312c33322c33342c33382c33392c34302c34322c34332c34342c34352c34362c34392c35302c35312c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38382c39302c39312c39332c39352c39372c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3132392c3130342c32372c3132372c3134302c3232312c38362c3234342c3130332c34342c3134392c32342c3138382c3138392c3138372c3234312c39382c3137342c3135352c3230352c302c3130392c3138352c3135332c34372c3135302c3134312c3134392c3234302c35302c39372c38332c35352c36332c3138322c37302c38332c3232302c3233342c3137312c3139392c3132372c3134322c35302c34382c3234342c3134332c3232352c31332c38342c3136372c3136382c3232312c31362c3136302c3136322c3136352c33302c35302c39372c32382c35382c3234302c34382c38392c3130392c3132372c37322c35302c3234372c3132302c32322c3130382c36352c37352c3132382c33362c3230302c3136372c3136392c3139392c3231302c3235322c35362c3136332c3233342c3232332c3130372c34312c3130312c3230332c36372c3138302c3230372c322c3139335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b312c3131352c34372c31312c3137332c3130302c3137352c39332c372c38382c3235322c3138392c3132372c3231302c3139322c3131392c3234362c3231322c3133372c3232332c3137342c37312c3133392c33362c35372c38372c34302c3139322c372c3132392c3234302c3135315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "fdfa5ebd1cf0394d0e923ae8a5b323525b287ed0f35044953004c33bd3b8ad32", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133312c3136312c31322c34362c3138372c35362c3130342c37342c3134302c3135312c38322c3137352c3139312c3136342c3133342c3130372c3139322c33352c32332c3139322c3135342c3232372c3132372c31342c3134342c3137372c36382c3137322c3233362c39392c3136302c3130322c36342c37382c37342c3139312c332c3233322c39392c322c34332c3133392c33362c3230322c35362c39382c3233372c38385d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c32322c32332c32342c32352c32362c32382c32392c33302c33312c33322c33332c33352c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35312c35322c35332c35342c35372c35392c36302c36312c36322c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38382c38392c39302c39312c39322c39332c39342c39362c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136372c32382c3231342c3134322c3135322c3234362c3234362c3133372c3132352c3130382c3138392c32392c3132352c3137302c37362c3234392c3139362c3233312c3135372c3135392c32312c3234362c38352c38362c32342c3132322c3132302c3235342c31312c3234352c3132392c31382c3137352c3234322c3137352c3131332c3234382c31382c3137302c3134352c39382c3137382c3234332c3131322c3133342c3136322c31332c3138332c32332c31302c3133322c33332c3230352c3136342c3234352c3136382c39352c3231372c362c3134322c3136322c3134332c3133342c33332c3132382c39332c3131362c302c31352c372c3138342c3138342c3137352c3232322c3139352c35342c32312c3230342c38392c38342c3136352c3135382c3231352c3230362c3234392c3139322c3234312c3135382c33382c3134332c31382c33312c3133372c3138332c3130342c3233325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134392c39312c37382c3134322c31332c38362c3234382c33362c3139352c302c3134342c36302c3231342c37352c39392c362c36382c31302c3136392c37342c3131392c3136382c3137322c33382c3130382c3133322c38392c3231372c3132362c3230302c36302c33355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "b6afe575e03e028b0a8b9154dae61a0e8235aaadd23960d03ca445434864a3de": { - "hash": "b6afe575e03e028b0a8b9154dae61a0e8235aaadd23960d03ca445434864a3de", - "previous_hash": "55c9d1616a06a38cb274629f3de576b10b57d696da7494b4d7a2b425831e0772", - "epoch": 18, + "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3": { + "hash": "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3", + "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "epoch": 56, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 18, - "immutable_file_number": 5 - } + "CardanoStakeDistribution": 55 }, "beacon": { "network": "devnet", - "epoch": 18, - "immutable_file_number": 5 + "epoch": 56, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -1470,41 +3344,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:10.422296Z", - "sealed_at": "2024-08-08T15:15:10.683995Z", + "initiated_at": "2024-09-09T12:59:28.854422087Z", + "sealed_at": "2024-09-09T12:59:29.244804372Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "50dc8a22ea0cbac7b7bb1a2d9c88ef8ec91f9968ff152eb29a70b969ac974c05", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "55", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "a66cdd8bb7b58bfd32e15ec7d99574bb292455e8850e26932cef879640b1cb99", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135352c3234332c3232302c3136342c39382c3137342c39342c3133372c36322c39392c3138352c3139392c312c3231302c36352c3132382c3232392c352c362c38312c3134342c3230352c3231362c3233372c31312c3134352c3131382c38322c3139352c3131362c39322c3232335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136362c33372c3135332c39392c3132352c39372c39322c3231332c37302c3232312c3231382c3234322c3233332c3230392c3139372c3131362c33302c3233302c3132362c3137352c35382c3133372c34362c3232372c3135392c3138312c3233302c3138382c31302c3231392c3234332c3134352c38352c33322c3130332c3233392c3132372c3130342c3135342c3138362c3134332c3231342c3131372c3139312c33362c37342c32322c37385d2c22696e6465786573223a5b302c342c31322c31332c31342c31352c31372c31382c31392c32322c32372c32392c33332c33392c34302c34332c35312c35362c36362c37342c39315d2c227369676e65725f696e646578223a307d2c5b5b3137312c3233332c3137362c3235352c3133342c3139312c36362c38372c3136312c39322c3137372c3230332c372c34302c3138312c3139342c3231362c37342c35312c3130392c3132392c3235322c3231302c35392c3135312c33322c3139372c3233382c3132312c39332c382c3133392c3137302c3138312c3137362c37392c36382c3131352c32302c32382c3135382c32322c322c35392c38312c33372c36382c35362c31342c3230312c34332c37312c3230352c3235322c382c35332c3232332c3230352c31332c39342c3137392c36322c3234332c3133322c35322c34382c36382c3133372c3131372c3235302c3130312c3132342c3133362c382c33352c362c33362c3139322c33372c33352c3133392c3234302c38362c31302c3137332c3233352c3230372c3234392c3135332c3139322c38322c3133362c34382c3136362c3230322c3233335d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133362c3136302c36342c3231362c3135332c3138302c36352c3134392c39332c3138342c39392c362c33372c3139312c3138322c33392c3137362c36322c36302c39332c3139322c31342c36332c3137352c3232322c34312c342c33312c342c32342c35322c3130362c38302c392c35392c3134392c3134392c3131392c33322c32312c3135372c3131392c39372c3233312c32392c38352c38372c3132365d2c22696e6465786573223a5b312c322c332c352c362c372c382c392c31302c31312c31362c32302c32312c32332c32342c32352c32362c32382c33302c33312c33322c33342c33352c33362c33372c33382c34312c34322c34352c34362c34372c34382c34392c35302c35322c35352c35372c35382c35392c36302c36322c36332c36342c36352c36372c36382c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39302c39322c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137392c3131382c37362c35372c3232372c3231302c3135372c3132372c33392c3232382c3139302c3135332c3230332c38342c3130332c3138342c3139312c3137382c3234362c3132382c3233302c3133342c36302c3233372c34322c3134342c3231332c31342c3230322c37372c3133342c3139312c3137332c3234322c3139322c34372c34342c3233362c3233332c32392c3130302c33382c3139332c3130302c33372c302c3230302c3131342c31312c39362c3135382c3132342c3232382c36362c3133342c32342c37392c3233392c3133342c3138362c3136392c38332c33322c31342c3235332c34342c32372c32322c312c3130372c3233392c3134342c3133362c37312c33332c37312c3135312c3136352c3130342c3232322c3134382c31302c3135312c3232362c3230322c352c3231372c38322c3138372c3136382c3136342c3137312c3132392c3131322c3235352c33325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "926d1ad43ec2151d7954d1eac9590143f741a60d1e721aee550d53310d699d33", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134302c36382c3231372c3231382c3130372c32382c3139302c3232352c3134382c32312c3230362c39332c302c3133362c3138302c32372c3232362c332c3232332c3138362c3233322c35322c37342c3136342c31362c3137342c3137312c3136382c3139312c3132342c3133342c3130312c32322c3131332c3137302c3232352c3131372c362c3132302c3231342c35372c3130332c3233312c37382c3131382c3232332c3232322c31335d2c22696e6465786573223a5b312c322c332c342c352c362c372c382c31312c31322c31332c31342c31372c31382c31392c32302c32312c32322c32332c32342c32352c32372c32382c32392c33312c33332c33342c33352c33362c33372c33382c33392c34302c34322c34332c34362c34382c34392c35302c35332c35352c35362c35372c35392c36302c36322c36332c36362c36372c36382c37302c37312c37332c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39332c39352c39362c39372c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c3137312c36362c34332c3130332c3234332c3231302c332c3130392c3131392c3231372c33382c3230342c35392c31342c38322c3235332c3133312c37362c3234382c37342c35342c3234362c3136392c37352c3134342c3136312c34302c34332c3235312c37332c3131302c3235312c352c37372c31352c3131372c37332c3131302c35392c34372c3137302c31382c3133302c3130332c37372c3137372c39372c322c38332c3132332c3234372c35332c3139372c37362c3135392c3235322c36342c3139382c3232332c36362c32302c3138352c3234342c3231322c3233322c302c38372c39332c3130372c3134362c3233302c3235322c3139352c3135382c3232312c37312c3131382c3135342c3134332c37362c3233322c3136302c39392c39362c3136302c35302c3134362c37372c35372c3230312c3130302c35302c3133322c38322c3133325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3130362c3235332c322c3132322c35392c32302c3133392c35372c3139302c38372c3234332c3133352c31342c3232352c3134392c3234332c3231322c3137302c3232362c3132312c3133342c3234362c34392c3232302c39322c3130362c3133382c3134332c39372c31392c372c3139385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "b7466128456915070b1a65cff4ae86243b3fa194daef7b2c7978060dd8daf8ed": { - "hash": "b7466128456915070b1a65cff4ae86243b3fa194daef7b2c7978060dd8daf8ed", - "previous_hash": "87490bc637ba9af3e45dac7a8c86959bb983087a393475a14a4e9067338bfc4b", - "epoch": 17, + "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75": { + "hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", + "previous_hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", + "epoch": 44, "signed_entity_type": { - "MithrilStakeDistribution": 17 + "MithrilStakeDistribution": 44 }, "beacon": { "network": "devnet", - "epoch": 17, - "immutable_file_number": 4 + "epoch": 44, + "immutable_file_number": 14 }, "metadata": { "network": "devnet", @@ -1514,43 +3385,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:06.935789Z", - "sealed_at": "2024-08-08T15:15:07.067881Z", + "initiated_at": "2024-09-09T12:58:54.779152163Z", + "sealed_at": "2024-09-09T12:58:55.039194631Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135352c3234332c3232302c3136342c39382c3137342c39342c3133372c36322c39392c3138352c3139392c312c3231302c36352c3132382c3232392c352c362c38312c3134342c3230352c3231362c3233372c31312c3134352c3131382c38322c3139352c3131362c39322c3232335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "7b786bc375207045652d4358a20622f9ad2feb0adee49fa1e771f97dc483ef52", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b342c3134332c3139302c39342c3234382c3137392c3130382c33392c3133342c3131342c3235342c35362c3235342c3130382c3234392c3136302c39392c32362c3134382c3235302c3130352c3139352c39382c37392c3232322c3130312c31352c3233392c3138312c3136302c3130372c34395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135312c39382c3138382c37392c31322c3232302c3138382c3133342c39322c38362c3232312c3134392c382c3134352c3139382c3133352c3132312c3138392c36302c3131322c31382c3139342c3137392c3138352c3130332c3133392c3132352c31392c3233372c3130362c3235352c33312c3136302c33332c31362c3137342c39332c3134342c31332c35382c372c3230302c33322c35372c372c352c3232382c39355d2c22696e6465786573223a5b312c322c332c352c362c372c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32382c32392c33302c33312c33362c33382c34302c34312c34322c34342c34352c34362c34372c34382c34392c35302c35322c35342c35352c35372c35382c35392c36302c36312c36342c36352c36362c36372c36392c37302c37312c37322c37332c37342c37352c37362c37372c37392c38302c38322c38332c38342c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134312c3132382c31332c31372c3137302c3138342c3139362c36352c36342c3131352c35302c3133332c3135362c3133322c31302c35352c3130322c33312c3136322c3137302c39342c31332c3139342c3130302c3132372c37322c372c3138362c37332c3139372c342c39342c34352c3231362c3234372c3230322c38372c35342c3232342c3230372c36352c3234372c31392c3133322c38352c3134362c3134332c3138372c31342c37302c36392c3134342c372c32392c3234302c3137372c34382c3133362c3233372c3135332c3235332c34382c3137312c3231392c34382c38302c3136382c38322c35332c3132392c3139352c35352c36342c3232372c3231362c3133392c3135372c32302c3230322c3138372c3130382c3133362c3139302c3230372c3138302c39362c3135392c31322c332c33362c3232342c3134322c38312c38372c36362c3230385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33312c35332c38322c3134362c3131392c3135352c32372c3137322c35392c3235332c31342c3137362c35302c3138392c3138362c3130342c3232382c3138382c3132352c3232322c3132372c35372c36302c38352c392c3138392c35302c3232322c3135372c3231392c3235312c32385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "82ed81b61a96c54b7adc25ba48d0cfb2b327eecae14223ea1b6511ff90dde83f", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137302c31382c3230372c37322c36322c3134312c3231352c3130372c3234312c32332c3130372c3134332c302c3232382c3137302c32302c37352c3139312c3234342c3234362c3230322c382c31352c3138392c3139352c38352c34362c3137332c32372c3138362c3133322c3138382c3132322c36322c3134332c332c39312c3234332c3230382c3234392c36302c3132322c3230332c36362c3234302c3232342c3137342c3235345d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c31322c31332c31342c31352c31362c31372c31382c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34322c34332c34342c34352c34362c34372c34382c35302c35312c35332c35352c35372c36302c36312c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37372c37382c37392c38302c38342c38352c38362c38372c38382c38392c39302c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134392c33342c34362c3133352c34362c3136382c39382c31322c37312c3134302c3132372c33372c3235312c35372c3234352c36342c3135322c3139332c372c36362c31392c32372c3136302c3234322c38312c3131312c3136352c3131312c3134382c3230352c3235352c31322c3138342c3135342c3132362c3136312c3138332c38332c3231342c3132382c3139302c31362c3234302c35342c3232342c3134342c3231322c35372c32312c3235352c3232372c37312c36332c35342c3230352c32392c38382c39392c3132392c37332c3136382c3233322c31302c3231352c3134382c3136352c3231302c37302c3132392c3133302c3132382c33372c3232372c3135342c37382c38392c3231382c332c32362c36352c3137372c3130302c34352c3137312c3234392c3131342c31362c3138372c33392c3134312c3138312c3136302c3233302c3135352c3134382c3130385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234312c3131372c3132392c37312c3132312c392c3138382c35392c39302c3235322c3139352c35362c3139362c3133392c33372c32322c3130332c3136382c3132312c3232382c3135382c3130352c3131382c3135312c3131322c352c3234362c3232322c3131392c36312c3137352c3134315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70": { - "hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", - "previous_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "epoch": 22, + "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49": { + "hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", + "previous_hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", + "epoch": 46, "signed_entity_type": { - "CardanoTransactions": [ - 22, - 779 - ] + "MithrilStakeDistribution": 46 }, "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 46, + "immutable_file_number": 15 }, "metadata": { "network": "devnet", @@ -1560,42 +3424,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:22.340545Z", - "sealed_at": "2024-08-08T15:15:22.730114Z", + "initiated_at": "2024-09-09T12:59:00.382487635Z", + "sealed_at": "2024-09-09T12:59:00.648101415Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "stake": 13333333334 - }, - { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "779" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c35362c3233332c3134382c39392c36352c31372c37352c33352c3134322c3232392c3134312c3135312c3136392c3234322c3134352c35382c3138332c3136382c3136342c3134302c3136312c35332c36322c3231332c3135372c39382c3139362c3234382c3136332c3136382c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "3621ddadfeb4e8f300e17363b2aff91148d74441392b63062eb4b241e791c699", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138342c3232352c3230372c3235342c37362c3132342c3232362c31392c36362c3133372c3132332c3131332c302c3234342c33332c3233382c39352c3231322c3133302c3138302c33392c32372c3137342c3232392c36392c3130342c38352c37312c31382c372c3131362c3136362c3138362c3138312c3132322c38322c36392c32332c36382c31322c37342c33342c3138382c3132302c3131392c3234332c3234302c3230325d2c22696e6465786573223a5b302c31332c31342c32302c32352c32392c33302c34342c34382c35332c35362c36302c36382c37312c37362c37392c38352c38362c39372c39392c3130315d2c227369676e65725f696e646578223a307d2c5b5b3133392c3232322c3233312c3130332c37392c3133332c37372c3230302c3230322c3235322c3232382c3132372c3132322c3135382c3231342c3131312c3233352c3133342c37342c35352c3139372c3230382c32332c33302c3232322c39302c372c36332c3134352c3139372c39312c3137302c3230362c33372c3136322c31352c3232392c3137372c3135342c3133352c36352c36362c3139362c3231332c3135322c3130332c3233382c3132342c392c3131392c39312c3234302c3234332c3231332c3138312c3135322c31362c3137322c35382c3230352c392c3131312c352c3230342c3233352c342c32302c34322c3233362c32302c32312c33302c36332c35352c35382c3235322c3136352c3139342c3130382c36302c3134322c34352c36332c3234362c3230362c3230352c32312c39382c36352c31362c3136342c3134382c3138392c3134312c3138302c38355d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133322c3233342c38382c39312c35312c35382c3136322c3136392c34372c3136332c37322c38382c35362c3232342c38352c3230342c3232322c3132322c3138342c3135342c31382c3233372c33322c3132392c3230322c37342c302c3139332c3231302c33322c36342c352c3235332c3138392c3136312c39382c36312c34342c39382c352c31312c3135382c3233372c31362c38382c3137362c3139382c35395d2c22696e6465786573223a5b312c322c332c342c352c362c372c382c392c31302c31312c31322c31352c31362c31372c31382c31392c32312c32322c32332c32342c32362c32372c32382c33312c33322c33332c33342c33352c33362c33372c33382c33392c34312c34322c34332c34352c34362c34372c34392c35302c35312c35322c35342c35352c35372c35382c35392c36312c36322c36332c36342c36352c36362c36372c36392c37302c37322c37332c37342c37352c37372c37382c38302c38312c38322c38332c38342c38372c38382c38392c39302c39322c39332c39342c39352c39362c39382c3130302c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3135302c3137392c3136362c3133352c3133352c3132312c3130362c3132342c3232322c33342c3139332c36392c38372c36312c39372c3233372c3230312c3233332c3138382c3234302c3135302c3232312c38352c3132382c3230372c3234362c36342c3137352c3136362c3133332c3232342c3230332c36342c35332c3234312c3231302c3130342c3139352c3230322c33362c3136342c37392c34312c3231362c3230352c302c3232322c34332c362c31372c33322c35302c3232312c3135392c3136362c32372c3234372c35382c35392c3231382c3234372c37322c3138302c32382c3136362c32392c3135352c3232392c302c3135362c3134312c3131372c3230352c3130322c3133362c3233342c3139372c3131342c3232372c32382c35372c3233342c3233342c3134392c32352c34342c3232322c36382c31332c362c3234362c3230302c38392c3131332c38302c33365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "1ae535f6d1d661bee6460b40c32c5ad2f938b8d6e3eefc35e8e07b4a6ad4c50c", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c3135352c3232372c3230312c3139312c3230392c3231352c3234342c3137352c37382c3131312c33312c3136332c3137332c3232332c31342c3138312c32352c3138302c3133352c3230312c33372c31302c35352c3133322c3230322c3132382c3231312c35312c3231322c3231342c3234332c3136312c3234362c34342c3139372c3132392c39332c38382c36342c38352c3133392c332c37372c3234342c36332c3130392c37395d2c22696e6465786573223a5b302c312c322c332c342c362c372c382c392c31312c31332c31342c31352c31362c31372c31392c32302c32322c32352c32362c32372c32382c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35342c35352c35362c35372c35382c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136392c39302c3131322c34362c3139342c3130372c32392c3137382c37382c342c39312c3136372c3231382c36342c3230372c33392c38332c3131382c3231322c32382c32312c3139332c3134382c3130392c32352c3135342c3135362c3137352c32362c36372c39392c38312c37302c3234312c3233342c32322c39322c3131362c3139312c3230392c3131312c32332c3230322c36302c3231392c38392c35322c3132382c352c3234352c3138362c32322c362c3139332c34332c3133362c34382c32362c34372c3136342c3233342c3135332c3134392c3139392c3139362c3135362c3137312c3132322c39372c3136372c37382c36312c33352c3134362c39342c34342c39382c36352c3132372c3139322c3139312c3232312c372c3136372c3134312c3235322c312c3230352c3232362c36342c3137372c37302c3138382c3136362c34322c3131345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131362c3233302c3130392c34312c3131342c3133382c3137302c3234302c362c3133362c37342c3136352c3136382c3132362c35342c3133392c37302c3139372c3131332c3138302c32362c3232312c3130352c3136392c3135312c32372c3131322c3131382c33372c3135352c37322c3231315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "bc11a4855d7f927a39132741f543fb988e1e317f5e463b5122ee423a8349180e": { - "hash": "bc11a4855d7f927a39132741f543fb988e1e317f5e463b5122ee423a8349180e", - "previous_hash": "87490bc637ba9af3e45dac7a8c86959bb983087a393475a14a4e9067338bfc4b", - "epoch": 16, + "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4": { + "hash": "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4", + "previous_hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", + "epoch": 54, "signed_entity_type": { - "CardanoStakeDistribution": 15 + "MithrilStakeDistribution": 54 }, "beacon": { "network": "devnet", - "epoch": 16, - "immutable_file_number": 4 + "epoch": 54, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -1605,45 +3463,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:04.397565Z", - "sealed_at": "2024-08-08T15:15:04.660487Z", + "initiated_at": "2024-09-09T12:59:22.784551391Z", + "sealed_at": "2024-09-09T12:59:24.629078458Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b342c3134332c3139302c39342c3234382c3137392c3130382c33392c3133342c3131342c3235342c35362c3235342c3130382c3234392c3136302c39392c32362c3134382c3235302c3130352c3139352c39382c37392c3232322c3130312c31352c3233392c3138312c3136302c3130372c34395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "15", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "838ff2c631b55673a7d47892e9f8dc90b2e152a44acb08ec878d62afaa110589", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c3134312c3232302c3231352c3232332c37342c3230382c3132312c34312c38312c3132382c3235322c3232372c37382c332c3139322c3232382c3135382c3136302c3233342c3131372c36302c3136342c3232322c3230312c3130382c34362c3134362c31392c3130302c3232302c39355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137382c36392c37302c3137372c3139362c3232312c39322c34382c3138322c3235312c3139382c33342c33382c3136342c3131382c3130382c3138342c3235312c3137322c3131382c3133312c3138372c3234392c3131352c3130392c3133382c3139382c3131362c39312c38362c3133362c3231322c3138392c3233342c3230322c3134312c3130342c31372c3233302c3133352c3232342c39372c3131382c3136372c362c3136342c31332c3136395d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c392c31302c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32332c32352c32372c32382c33302c33322c33332c33342c33352c33362c33372c33382c33392c34312c34322c34342c34352c34362c34372c34382c34392c35302c35312c35322c35342c35362c35382c35392c36302c36312c36332c36352c36362c36372c36392c37312c37322c37332c37352c37362c37372c37382c37392c38312c38322c38332c38362c38382c38392c39302c39312c39322c39332c39342c39362c39372c39392c3130312c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133342c3130342c352c3136362c3131372c32332c36302c39362c3234332c34382c3137372c35342c32352c3134362c3136382c3134362c34372c372c31342c34322c3139312c3232392c37352c34362c392c3130342c35352c3137372c3233352c3139362c3135312c34332c352c3130372c3134302c33372c3131382c32382c3135382c32382c36372c3234342c34382c35382c3231352c3134302c3231392c3133312c31342c3234352c38352c37332c3137332c3138302c35382c3131372c3139342c39392c3133382c392c3234382c3231362c39382c3135332c3231372c3136342c3232382c3133322c3135322c3130352c3132342c3232312c31362c31392c34362c3233332c3135362c3230352c3137392c34322c3138342c3130382c31312c3137392c3136372c3139302c3136382c3131372c35382c3232372c33382c35312c3230382c3136392c3131342c32325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34372c362c3233382c3133392c3235352c3132392c35352c3130332c3137332c38302c3131352c3134372c332c3134302c35352c38352c3234372c34372c382c35392c3233342c3139352c34372c3231322c3235302c34352c3134362c38382c36342c33362c36352c31375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "903b1e562ec409d9f900482cffd34477706ac6a6465601e550e6026275114861", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b352c3232302c3139322c3234352c33342c37312c3130392c3131372c3138302c3231352c3138362c3135322c3137352c33302c31342c32342c3235332c3132382c3230302c34392c36312c32392c3136362c3133352c3133362c3233352c3232322c35312c3130302c39332c3135342c315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138302c3134392c32342c3135372c31302c31302c3137392c34382c3233392c37382c3235322c3232322c3232302c3137342c382c3131362c31352c3233342c3139392c3138382c37332c33302c3230382c3132382c31372c3133382c32312c3135372c34332c3136392c3132392c37322c3232302c3133362c38372c33362c33362c3235302c3231372c39302c39332c3233372c3131392c3233302c3131332c3137342c3135302c38305d2c22696e6465786573223a5b302c312c332c342c352c372c382c31312c31332c31342c31352c31362c31382c32302c32312c32322c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33392c34302c34322c34332c34342c34352c34362c34372c34382c34392c35312c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37332c37342c37362c37372c38302c38312c38322c38332c38342c38352c38362c38372c38392c39312c39322c39342c39352c39372c39382c39392c3130302c3130312c3130335d2c227369676e65725f696e646578223a317d2c5b5b3134392c3130312c34342c39332c34382c3139302c3131312c3137382c3130392c3230372c3131382c3131362c3130332c37332c322c3130312c3138302c3234392c3134302c3137392c34382c3139382c3139392c3134322c37352c3136302c31332c3230312c38382c37312c37332c3138382c33392c372c3231382c3135332c3135332c34322c3132342c35312c3134362c342c34312c38372c36372c3137342c3131352c35302c31362c3136302c37352c3137322c39382c3139392c3133302c32382c3139352c3233392c3233372c3135332c3233352c3230352c39382c38362c38302c36302c35352c3133342c3134342c3134322c3235352c38382c3136372c34312c3132302c3231352c3133352c33352c32372c322c36352c3136332c33302c32332c34342c3136332c34352c3234392c3137362c3231322c3232332c3232342c3232382c3232362c3137362c3132385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35392c36332c3232362c32382c32322c3232362c34342c32392c3135362c3230372c3135332c3131362c3230382c3134352c3136392c3136302c3234332c3231312c31332c3233362c3138302c3134352c3135332c3131312c3231312c3139392c3235312c3230352c3133392c3135382c3133302c3131385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "c404f18a8d19722c301eb6b682514c509eeca0ebdffcdfa36c0d6518868039e6": { - "hash": "c404f18a8d19722c301eb6b682514c509eeca0ebdffcdfa36c0d6518868039e6", - "previous_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "epoch": 19, + "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd": { + "hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", + "previous_hash": "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230", + "epoch": 51, "signed_entity_type": { - "CardanoTransactions": [ - 19, - 674 - ] + "MithrilStakeDistribution": 51 }, "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 51, + "immutable_file_number": 16 }, "metadata": { "network": "devnet", @@ -1653,42 +3502,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:13.943040Z", - "sealed_at": "2024-08-08T15:15:14.073673Z", + "initiated_at": "2024-09-09T12:59:14.253813895Z", + "sealed_at": "2024-09-09T12:59:14.513254004Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "674" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "7da17ba95db83375f6bb8f31ead46270a9a44868c72990c434f5167925bb3764", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3235342c3136392c3232352c3232322c3131352c3138382c3130352c3234372c39342c3139332c35312c3231362c36372c38332c3230312c3130382c37312c3136322c34382c3231362c3138312c37372c3136352c3138302c3139342c31332c3136302c3233382c3133362c3230322c3138302c31352c33332c37382c38332c39362c3232352c3134352c3136392c31322c3137382c3234362c3130342c3133382c3234362c312c3134345d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c392c31312c31322c31342c31352c31362c31382c32302c32312c32332c32342c32352c32362c32382c32392c33302c33322c33332c33342c33352c33362c33372c33392c34302c34322c34332c34352c34362c34372c34392c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36352c36362c36372c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38322c38332c38342c38352c38362c38372c38382c39302c39312c39322c39332c39352c39372c39382c39392c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c3131312c3134322c3233332c3235352c3137362c33312c38372c3234382c3233392c31392c3134342c3233362c36312c3138302c31362c3136392c3232362c35352c32322c37322c3231352c32382c3234342c3132322c3230302c3233362c31392c3230382c3233312c36372c3233342c3137352c3230382c34352c3235302c3232322c302c3233362c31332c382c3134342c3135312c3135382c32392c3136352c34352c33352c322c3135382c3130372c3233352c372c37332c3138322c3230382c38342c39372c3231332c3137392c3234342c3230372c3234322c3138302c36342c3138302c39382c3233392c3131372c3138332c3231392c35342c3130302c3136382c3233362c31362c342c3233372c3130352c3135342c3233322c35392c31312c37392c3139372c3132372c3139342c352c32342c3235342c392c382c3233352c3130302c3232322c3137345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31302c35362c3139332c37392c39362c35392c36382c34352c392c3133312c3135312c34302c3135382c3130302c3136392c342c35372c37342c3234382c36382c382c33312c3234362c3230342c32362c3132322c38362c36382c3136332c35302c38322c3233385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "26a7448fe11faf2a05d98499290865c6c3bf756a2ee9c6e23997ca24d7527555", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136332c39342c36392c3130362c34362c3233302c3138342c3132342c37342c32352c3139342c3133312c3132312c3232372c3232342c39392c3235332c3233392c37392c3234332c3232362c38332c37362c31302c3130382c3138322c36342c3139362c3139372c3232392c3137352c3234312c3230352c3138382c33362c3137302c38302c32382c36302c3233332c39332c3138392c32382c32332c36362c3130342c3137352c3130385d2c22696e6465786573223a5b302c312c332c342c352c362c372c392c31312c31322c31332c31342c31352c31362c31382c31392c32302c32312c32332c32342c32352c32372c32382c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36342c36352c36372c36382c36392c37302c37312c37322c37342c37352c37372c37392c38302c38322c38332c38342c38362c38372c38382c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3137322c3231352c37322c33342c37342c34342c3139372c39302c38352c3231302c3139372c3139302c37342c3231342c38392c332c3132382c3138392c33362c3135392c38312c3135322c3135352c3139382c3133362c36372c3133312c342c3134322c3139352c3133322c3133392c34372c3132382c36372c3137352c3234352c31342c3136302c3130312c3132332c3138322c3138382c3233362c3137362c3133302c3138332c3138302c392c34362c3135392c3131352c39392c34352c3234322c3234342c3137382c3231372c38312c3139372c3138382c38322c3233302c3135382c3136322c3130332c332c3134362c3139352c3232362c38352c3138322c32322c3134322c3231392c3130332c3234322c382c32322c3231352c39302c3130342c33372c38392c342c302c3136322c36332c31312c3232352c3130372c322c3133312c37352c3233382c3137345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230382c32392c31352c37382c3131312c37302c37362c3131372c3230352c3230392c3132372c3137302c3136372c3233322c3138312c38372c3231322c37362c39382c39342c3130352c3132322c3230382c302c3134392c3130342c3138372c3137382c3233342c3136302c38382c34395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732": { - "hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "previous_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "epoch": 22, + "ee9ff754e1ab8a1e6facf4f721abff6c688ac394eb0e2186dab3a8a9b034b0cb": { + "hash": "ee9ff754e1ab8a1e6facf4f721abff6c688ac394eb0e2186dab3a8a9b034b0cb", + "previous_hash": "13a3061ff6bb00bb08342782cd82378d4b260c536e9aa78451d0711424429179", + "epoch": 37, "signed_entity_type": { - "MithrilStakeDistribution": 22 + "MithrilStakeDistribution": 37 }, "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 37, + "immutable_file_number": 11 }, "metadata": { "network": "devnet", @@ -1698,40 +3541,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:20.993955Z", - "sealed_at": "2024-08-08T15:15:21.124569Z", + "initiated_at": "2024-09-09T12:58:35.212467534Z", + "sealed_at": "2024-09-09T12:58:35.614990664Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "stake": 13333333334 - }, - { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37342c35382c352c3232322c3138352c39362c33302c3232322c3139372c3139302c39372c36312c3133392c3136362c32332c3138322c37322c3233362c3135372c3136352c32372c3135332c3138342c31312c3231382c37302c38352c3130392c312c3133372c3138342c3138325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0a8edca4fad927932b40f2382c6c6bdd268856c2677932a263748cecc1cccc83", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3138352c3134332c35342c3232392c3131392c3231322c3139362c3234342c35372c3231342c3135322c32372c3231322c3233322c3135312c37312c39372c3234352c322c38332c31382c3139302c3230322c3135352c31302c38362c3136322c3137322c3230362c32392c3132322c3233342c3230392c3233352c3138372c34342c39372c38352c33372c36392c39362c37392c3136362c3130342c3231372c31382c34315d2c22696e6465786573223a5b302c312c332c352c362c372c382c392c31322c31332c31342c31362c31372c31392c32302c32312c32322c32342c32352c32362c32372c32392c33302c33312c33332c33352c33362c33372c33392c34302c34312c34332c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37352c37362c37382c37392c38302c38312c38322c38342c38352c38362c38372c38382c38392c39302c39312c39322c39342c39362c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133392c3232322c3233312c3130332c37392c3133332c37372c3230302c3230322c3235322c3232382c3132372c3132322c3135382c3231342c3131312c3233352c3133342c37342c35352c3139372c3230382c32332c33302c3232322c39302c372c36332c3134352c3139372c39312c3137302c3230362c33372c3136322c31352c3232392c3137372c3135342c3133352c36352c36362c3139362c3231332c3135322c3130332c3233382c3132342c392c3131392c39312c3234302c3234332c3231332c3138312c3135322c31362c3137322c35382c3230352c392c3131312c352c3230342c3233352c342c32302c34322c3233362c32302c32312c33302c36332c35352c35382c3235322c3136352c3139342c3130382c36302c3134322c34352c36332c3234362c3230362c3230352c32312c39382c36352c31362c3136342c3134382c3138392c3134312c3138302c38355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31312c32362c3232372c3136382c3235342c3233352c35322c3133332c3136332c3131362c31392c3132322c37362c36352c3130342c39302c3230302c3137392c32322c3235312c3137312c3232342c39302c3139332c3233312c33342c3232372c3231372c3131372c3133382c3233322c3138325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "2955b13409f273ff724e155a7798a51eb1320a5f7ea1af41749e9eee1da198d1", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132322c3134382c3139332c3136342c33382c3133382c37352c3130372c3133392c32372c3138382c3234392c3137352c3234382c3130322c39322c3137362c3130392c3234342c3232332c32352c33372c31352c3139322c38362c33382c3136372c34352c3130302c3136392c38332c34315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134322c37372c32302c3137302c3232362c3130332c37372c3230302c3132352c3235342c3234302c38372c33382c3135342c362c3138362c32302c3136302c31322c33362c3137322c39352c34382c3232342c36302c3232372c37352c3232362c352c3137332c3232312c3135372c3132332c37372c3135302c3234312c38362c3233322c3234392c3230352c3139352c3134312c3130312c3233372c3132322c3134332c39382c3232315d2c22696e6465786573223a5b302c312c322c352c362c372c382c31322c31332c31342c31362c31382c32302c32312c32322c32332c32342c32372c32382c32392c33302c33312c33332c33342c33352c33362c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36332c36342c36362c36372c36382c36392c37312c37322c37332c37352c37362c37382c37392c38302c38322c38342c38352c38362c38372c38382c38392c39312c39322c39332c39342c39352c39362c39372c39382c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c3132392c3231362c3134362c3138392c3134322c3138332c312c3231302c3130342c3136332c3232322c38392c3230362c3132372c3137312c3135372c33392c36362c3234362c37332c3135322c3138362c36382c36382c3136302c39302c3234382c33352c3136322c3230302c3133392c38372c3133392c3135332c3235342c3134302c36332c36332c3139372c34332c3132332c37302c3131322c31352c3134382c33332c3233302c372c3230342c3133342c32312c3135372c3137322c3233302c3234332c3130342c3136342c3234372c3130302c33322c3134392c3132342c34322c3235342c3138392c39392c39372c3233392c3136322c3138332c3134342c3130392c33322c3138372c312c37302c32352c3137332c3130322c3232372c31322c38362c34322c332c3137352c3235342c3137372c3131342c3233302c3132382c3135372c34352c3232392c3230372c3136325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230302c392c36362c31352c33362c3137332c39392c36352c39372c31362c3232332c32342c3235352c39302c3132382c3135362c3133302c31372c3132342c33312c3133382c35352c3231342c3138362c3137352c3231372c31372c3233322c3134322c3135302c3134382c3131345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "cc7fa14cbccc78ff1492430d391a20cb579ae1ffa85724060a27954360108068": { - "hash": "cc7fa14cbccc78ff1492430d391a20cb579ae1ffa85724060a27954360108068", - "previous_hash": "968118eff75386e71874bd2388e00c0c5d3cac7ece65cebf9f60f0754341a710", - "epoch": 13, + "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f": { + "hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", + "previous_hash": "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4", + "epoch": 55, "signed_entity_type": { - "MithrilStakeDistribution": 13 + "MithrilStakeDistribution": 55 }, "beacon": { "network": "devnet", - "epoch": 13, - "immutable_file_number": 3 + "epoch": 55, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -1741,40 +3580,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:55.748040Z", - "sealed_at": "2024-08-08T15:14:55.878037Z", + "initiated_at": "2024-09-09T12:59:25.510891189Z", + "sealed_at": "2024-09-09T12:59:25.920810057Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136312c3231352c31302c34392c3137312c3232352c39342c3233362c3232382c32342c3235312c37392c3135372c34342c33332c39302c39372c3137392c38352c3132332c37382c33362c3134382c3234362c3137392c3132322c3234312c3131312c3131382c32332c3139342c3137375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "f6b2c682359d7f5a5a7c94bb459e8c9c4e623be303b640fb06a9a53005004ea8", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137322c3132342c36312c3130372c33372c312c3230352c33332c3230392c3233392c34302c3133382c3137322c3130352c37322c3132372c3139312c3234332c3234372c39312c362c342c3131372c3235312c33342c3135372c3234352c3234382c3137372c3135322c3130322c3131375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133342c37332c3230322c39392c3135362c39332c3234382c37342c37342c3230302c3132382c3137392c34382c3136322c3136392c3137352c3230362c3138302c3135362c3233332c38302c3131332c3135342c3231302c32342c3233312c3137322c33312c362c3130382c3138372c31332c32382c36322c3137302c3234342c39302c3131362c3232352c3131362c3133342c3230372c3233362c3233342c3235332c3135362c3234372c38395d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c32302c32312c32322c32332c32342c32352c32362c32382c32392c33312c33322c33332c33342c33362c33372c33382c33392c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35382c36312c36322c36332c36372c36382c37302c37312c37322c37332c37342c37352c37362c37372c37392c38342c38362c38372c38382c39302c39312c39322c39332c39342c39362c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136362c34392c31392c38392c3134332c36362c3235312c382c31302c3133332c33322c3230392c3139312c3138392c37302c3136382c3137382c3234302c3134312c3137302c36362c322c35332c3139362c3133352c3234372c392c38332c37362c352c382c3230332c382c3132372c3134372c3134372c32392c3231312c3131302c34312c3234392c35382c3137342c3131352c3131362c3132312c3234362c3230372c32332c35332c3233342c37382c33382c3235322c34382c3137382c3231352c39372c3133342c3231382c31372c3231302c3139312c37322c332c3136372c3139332c3230342c3232302c3235332c31342c38352c3130382c362c3233342c3132352c38302c3139362c3234352c3130342c3136392c3230392c32332c3234372c3139332c3231312c3133322c35322c36352c3138332c34362c3136382c3230352c34392c302c3135335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32322c3135342c3132382c3233352c3232332c3134342c3139372c3139372c37392c3137392c36322c31372c3232352c36362c3233302c3132302c3232322c3138392c3130312c32362c3233332c39362c33332c37382c39392c3135312c31342c3139362c36312c35372c31332c3233325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "65a46e77a8689aedb2b7023f9914adeeea0bb2528ddd86f00a5af87b736992a9", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c3132312c32322c3132392c31352c33322c3138352c3138342c32312c3234342c36392c3137322c3230302c3130322c36372c36322c3137372c34392c3131362c37352c31342c3130322c3132362c3130382c37302c3135362c3231322c3139372c3133312c39382c3137372c3132392c3138372c3232352c33372c3233302c3232302c3133392c3136312c3133302c3133382c37362c32372c3235352c37392c3233332c3132322c37345d2c22696e6465786573223a5b302c312c322c342c352c362c392c31302c31312c31322c31332c31342c31352c31362c31382c32312c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c34302c34312c34332c34352c34362c34372c34382c34392c35302c35312c35332c35352c35362c35372c35392c36302c36312c36322c36342c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38352c38372c39312c39322c39352c39362c39372c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3134302c36382c3138392c3139322c3235302c3131382c3133302c3130322c3132342c352c3131352c37322c36352c3132382c3130342c3235312c33352c3130322c3233382c3231312c3136352c3137332c3135352c3134332c3231302c37392c3136322c3139312c3131302c34332c3232392c3135302c3138362c32302c3232342c39392c3139372c34352c34332c352c36342c32392c3131382c3139322c39382c33302c36342c3132352c382c32362c33352c35342c3134312c3136382c31392c3232342c36342c3131302c3233372c31342c34342c34312c34362c3130302c3133392c3135392c3135352c34372c352c3235332c3231322c39312c35302c3134392c32332c3231332c36302c3133392c3137322c382c3230352c37382c3234362c3234362c3138342c3133342c3137392c32382c37312c3231372c3134322c3137332c3233392c34302c322c3136395d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3136372c32302c3138342c3234352c32322c312c3134332c38382c3131362c35332c3231392c3232302c3134322c34342c3230392c38332c37322c3137362c3135302c3133382c33342c3135372c3136382c3233382c3139302c32382c3134392c3133332c3138342c39332c3130332c3231322c3130342c3230342c3235332c38392c37302c3132352c3132372c32302c3234362c3231332c35322c3139352c3233322c35342c36372c36375d2c22696e6465786573223a5b332c372c382c31372c31392c32302c32322c32332c32342c33362c33372c33382c33392c34322c34342c35382c37382c38342c38362c38382c38392c39332c39342c39382c39395d2c227369676e65725f696e646578223a317d2c5b5b3135302c3231382c34332c31322c3137352c312c38302c34332c34382c3230352c3135362c3136382c38342c3231332c3132322c3134332c32392c3137302c3134332c3139372c3132312c33312c3235322c32382c3231302c3231312c3231382c32302c32322c3230302c3233352c3230382c3230362c33382c3132352c3231392c3135352c3139362c3135332c3233322c3134312c3134322c35392c36312c382c3232342c32382c3137312c31322c3234342c3138352c3135372c3137342c36392c3233372c3233322c3133372c3234322c3235332c3130342c3135342c3230312c33372c3234392c3231392c38392c3137362c34302c3233382c37322c35362c38392c33342c3136392c3137302c3230382c3231322c3231342c3234312c34352c3231372c3230372c3137312c3136302c3132372c3136332c3230302c3136342c3139372c3137382c3132312c3133302c3231332c3133372c3133322c375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "ccb105fcf63f639c545e649e8c9dc8c91b4938d80d5dcd41476ad07350bb283b": { - "hash": "ccb105fcf63f639c545e649e8c9dc8c91b4938d80d5dcd41476ad07350bb283b", - "previous_hash": "cc7fa14cbccc78ff1492430d391a20cb579ae1ffa85724060a27954360108068", - "epoch": 13, + "f087ab01dcc7be081554b9fb0f569c89f5e46acc01538e0b884a83c1f9257ee7": { + "hash": "f087ab01dcc7be081554b9fb0f569c89f5e46acc01538e0b884a83c1f9257ee7", + "previous_hash": "3fd85abeaf29806f53bdc78643e042d5292aa66b4935fc4a75fbc9f04d79e4ce", + "epoch": 16, "signed_entity_type": { - "CardanoStakeDistribution": 12 + "MithrilStakeDistribution": 16 }, "beacon": { "network": "devnet", - "epoch": 13, - "immutable_file_number": 3 + "epoch": 16, + "immutable_file_number": 4 }, "metadata": { "network": "devnet", @@ -1784,42 +3623,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:56.010402Z", - "sealed_at": "2024-08-08T15:14:56.268417Z", + "initiated_at": "2024-09-09T12:57:36.161725894Z", + "sealed_at": "2024-09-09T12:57:36.556285509Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136312c3231352c31302c34392c3137312c3232352c39342c3233362c3232382c32342c3235312c37392c3135372c34342c33332c39302c39372c3137392c38352c3132332c37382c33362c3134382c3234362c3137392c3132322c3234312c3131312c3131382c32332c3139342c3137375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "12", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39352c3232332c3130322c3137332c3234372c3231372c38352c3138302c38352c3133332c34302c3133382c39332c36312c38332c3132352c3232382c3136342c3133392c37302c3231302c3230362c3231332c37392c33342c39382c3133312c3132312c38382c3235332c3232392c3233395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "a38809a6a9d5e1c79d9da00a7fcbd93688e6ffe62d119f2b39b66fe0bb047204", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137322c3132342c36312c3130372c33372c312c3230352c33332c3230392c3233392c34302c3133382c3137322c3130352c37322c3132372c3139312c3234332c3234372c39312c362c342c3131372c3235312c33342c3135372c3234352c3234382c3137372c3135322c3130322c3131375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136372c33352c32342c362c3130332c3130312c36372c39362c3133372c3235342c3134332c3234332c39392c3233312c3130382c32322c3235322c3231362c37342c36362c3235342c37352c37372c36382c38352c3135372c34362c3137352c3133382c3136352c37352c3137322c34342c38352c3135352c3138382c3135322c32352c3133322c3135322c32362c302c34362c34332c3233372c3231342c3235342c35375d2c22696e6465786573223a5b302c312c322c342c352c372c382c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32362c32372c32382c33302c33312c33322c33342c33352c33362c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35322c35332c35342c35362c35372c35382c35392c36302c36312c36332c36342c36352c36362c36382c36392c37302c37312c37322c37342c37352c37362c37372c37382c38302c38312c38322c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137312c34382c35382c31342c32362c36352c3134332c3130362c31342c37352c34372c37382c37372c3130392c3136382c3233312c35322c3139392c3234312c3139322c3139312c3138322c39362c372c3234362c3131332c38312c34342c3139352c33352c34362c3138352c37332c3139312c3134322c36382c3138342c37362c3230362c36332c39372c33302c3234342c33382c3235332c3234322c3130312c3137382c352c3130352c37372c34342c3232312c3230312c36322c3131382c35302c38392c3138372c3139302c3135342c33352c31302c3234362c33302c3136362c31372c35322c35372c3136302c3134312c36302c3131312c32302c3134392c3133322c37392c3231362c37342c31392c3134322c36362c3136302c32362c3135322c35352c3231372c3132342c38372c3232372c3133382c38342c3130382c3233352c3133362c36335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b302c36352c39322c3133322c3132312c3133362c31322c31372c39362c3138362c3135372c3135302c36352c3131302c39392c3231362c37302c32352c302c34312c33312c3138362c3234372c3136392c34392c33382c3234332c35362c37342c3233392c32372c3139365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "d4b0ec7ebc6b1d8bd4287b2fb505d5bbcfbe89f77f7263973ab7bc54194ee883", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232342c3139382c3137362c39352c34332c3136392c3132372c322c36302c37312c39382c35312c3136392c3231362c3133342c3137342c3136312c36342c3135392c3231302c3130342c3132372c3234352c3137382c3135352c31392c32322c32302c36332c3130392c3139312c375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134392c3230342c3135312c3235302c31352c3130322c38382c35382c3230352c3136372c3133352c3233392c3137322c39342c34312c3134332c3139342c33332c3133342c39372c3136332c3231332c3138382c3231342c3131362c3231382c3139342c3234362c3130302c3232332c3233372c3232302c3139322c34312c34372c3234302c3136382c3130352c3139362c3230362c32322c34382c3131392c3235302c3231362c3234302c31322c36325d2c22696e6465786573223a5b342c352c372c31312c31342c32302c32342c33352c34362c34372c34392c35312c35332c35392c36352c36382c36392c37312c37332c37392c38312c38322c38332c38392c39325d2c227369676e65725f696e646578223a307d2c5b5b3134322c31342c3231362c34342c3130312c3234302c36332c38322c34322c3132372c3138382c3233352c33332c33362c36342c3135332c3135312c3233332c39352c3137312c3234352c3234322c342c35362c36322c3131322c3233362c3235352c31382c31382c3132322c3132302c39302c3138322c3232332c3132362c36382c3139392c34312c31302c3231302c3139312c3132342c3235342c3135302c38332c3132342c322c392c38342c37322c3230332c3130382c3130352c392c37392c31352c3136372c3131342c3137382c33322c3136392c36322c3135352c3139302c3137342c3136332c332c3135302c3135302c31322c3137312c3230362c3132302c3230302c3135322c3137372c302c3139312c3131332c3230382c32322c36302c3134352c3135322c3235302c3131382c35352c3230342c37312c3132302c3139332c37322c32322c3234392c38305d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133352c3136322c39342c3232332c37332c31392c3137362c3230332c3138302c3137392c3135362c3139332c3235302c3231312c3234312c32372c3138362c332c32302c34362c3132392c3131342c35322c3137322c3132332c39312c3232332c3137362c37372c3139352c3130372c3131352c3132342c3136312c342c3130392c3230312c3132312c3130362c3235302c3138342c3231342c37322c3233382c3231312c3233362c37372c35375d2c22696e6465786573223a5b312c322c332c382c392c31302c31322c31332c31352c31362c31372c31382c31392c32312c32322c32332c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34352c34382c35302c35342c35352c35362c35372c35382c36302c36312c36322c36332c36342c36362c36372c37302c37322c37362c37372c37382c38302c38342c38352c38362c38372c38382c39302c39312c39332c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137352c3231322c3231392c3231302c3139312c32332c3233342c32372c3139322c3134352c3234352c3139322c39352c3131372c36362c3139312c3138342c32342c3138392c3136352c3131372c3132382c3232362c3230302c33312c3230342c3132362c3136372c3231392c3130342c3234302c32342c3230362c38342c3231342c34372c3232372c36342c32352c3133352c3139312c3135322c362c3231362c3138392c3136302c3232332c3137382c322c3231302c36332c3138302c3235352c3130382c36332c31392c3232332c36392c3137342c3130362c3133342c38302c3139302c3136372c3134382c3231372c3137382c3131372c3136332c39322c3230322c36372c3234352c3136302c39372c3136392c3135302c3233372c36332c3130372c3230322c3136352c33362c3136382c3230382c3134392c34332c39332c37362c3136382c3135342c38362c3134342c37322c3130352c3232375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d": { - "hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "previous_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "epoch": 20, + "f1454af28e0468031c76f8c3423dec3a32c94932ea0a373926f1658a3c8f5be2": { + "hash": "f1454af28e0468031c76f8c3423dec3a32c94932ea0a373926f1658a3c8f5be2", + "previous_hash": "5b2183f66de9d0004ee78f40aa3939ce3d3424824032803c08a4620b1e3e961f", + "epoch": 32, "signed_entity_type": { - "MithrilStakeDistribution": 20 + "MithrilStakeDistribution": 32 }, "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 5 + "epoch": 32, + "immutable_file_number": 10 }, "metadata": { "network": "devnet", @@ -1829,44 +3666,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:15.450742Z", - "sealed_at": "2024-08-08T15:15:15.582759Z", + "initiated_at": "2024-09-09T12:58:21.024849374Z", + "sealed_at": "2024-09-09T12:58:21.542488259Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c3135332c3132322c38372c39362c3233332c3133332c39362c3232332c39312c35342c31362c39302c3231352c3135312c38372c32352c3137322c3138312c362c31342c34382c3134322c362c3234302c3139392c3232352c3139382c3137352c3231332c37302c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0be409cd72deb01f486c58d8a54e0facc859ed5d496862d07676444da342f8df", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135322c3133342c3234362c34302c3133342c3131322c3132382c31312c372c36352c37312c3232312c3235322c3234332c3139342c31382c3231342c3137372c3132352c3234332c34382c3130312c3137392c3234382c31382c36352c36362c3132302c3231382c3139302c34392c38312c3130352c35332c3139322c36362c3137342c3231372c38392c3136362c32352c3134332c32312c3133322c34302c38302c38302c325d2c22696e6465786573223a5b302c312c322c332c342c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32352c32372c32382c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34332c34342c34352c34382c34392c35302c35312c35322c35332c35342c35352c35372c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c37302c37312c37322c37332c37342c37362c37382c37392c38302c38312c38322c38332c38342c38362c38382c38392c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133342c36332c3235352c39312c3131332c3235332c352c3230332c31372c3233342c3234382c3134352c3138322c3132342c3130322c36302c35372c36392c3233392c3136332c38362c3136302c3139392c3137352c3134302c3130382c31382c36372c31302c3137392c33312c3139302c3235322c3235302c3131312c3131352c32342c3131302c31372c3231392c3233382c38312c3230382c3132322c3139352c33352c3233372c34372c392c31362c33382c3135332c3136392c34342c38382c3233352c3135352c3233372c3234302c3133342c3135312c33352c31332c3137312c38332c3232352c3132342c3230322c3232332c37322c33302c3132352c3134322c3136352c3138352c31332c3232372c3231352c33342c3137382c3136352c3132302c39312c3230392c3136322c3136392c31302c3130382c31392c31392c34392c3136342c3235322c3133312c3232362c3130325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39332c352c3233312c3233382c38392c3135372c36382c3234362c3136362c3139332c3138362c3138392c3232372c3139372c38312c32362c3230342c3133382c3132372c3138322c3134362c3134352c3231372c33312c3234322c3137332c3131392c3135342c32302c3230332c3139362c3134325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "252fc6a30a9cdda446305607d613c1dab567d23282d2792409d11b8ac8d7446b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138302c31342c31302c31342c3231362c3139342c3234332c3132362c35342c3132302c32352c332c3232312c35332c34362c31332c35312c3136312c372c3230302c3135312c36382c3136372c3230362c38352c3139342c34332c31312c37302c3133382c3137362c36355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138302c35382c3136382c37352c3230312c39372c3135332c3133322c37332c31322c3134392c3134342c3130322c3136382c3234342c382c39322c3132322c35392c36372c35372c33342c37352c39312c3232392c3134302c3234312c3131342c3134362c3134342c32312c3138342c32322c3235352c36392c35332c3133312c3235332c36322c3130312c3135342c3134322c31342c3130342c3233362c39372c37392c39365d2c22696e6465786573223a5b312c322c332c342c352c362c372c382c392c31302c31312c31322c31352c31362c31372c31382c32302c32312c32322c32342c32352c32362c32372c32382c32392c33332c33342c33372c33382c33392c34302c34332c34352c34382c34392c35302c35312c35322c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36372c36382c36392c37302c37332c37352c37362c37372c37382c38312c38332c38342c38352c38362c38372c38382c38392c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133392c3234392c3131332c39302c3132342c39312c322c34392c3138332c34372c32362c3232302c3138302c3132352c38372c3230332c3131302c3232372c3233372c392c32322c3138332c3139322c32322c31382c37332c33372c32332c38302c3130382c3233382c35302c3231312c3233302c3133342c34302c34322c3132392c3135342c3136352c3136372c3135322c3230382c3135382c302c3234342c3131322c3234392c31352c3138332c35352c3130342c35332c38372c33372c33332c34302c352c3231392c3136302c3134372c3231302c3233382c38392c37342c3233322c3230332c3231342c3136392c32362c3130322c37302c3232362c3235342c3131322c3231352c3230392c34362c35392c3131382c3234342c3135302c3232392c31382c3234382c3230362c3131342c36392c35342c34332c3232362c37372c3136312c33342c37342c3137345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39382c35312c38392c35382c3231322c3131382c38352c37332c332c3130312c3232392c3134342c3136362c3139342c35372c37382c3132322c3137302c3134322c3134342c32352c3136352c3234312c36312c3235322c3136312c39312c3139312c3138322c3132362c3136362c38375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "d88b6c3a14fd9775204a6a26071240bab99e0d8aa00945a690b42762a6bbf72a": { - "hash": "d88b6c3a14fd9775204a6a26071240bab99e0d8aa00945a690b42762a6bbf72a", - "previous_hash": "a11139300a460087942144f7ffb3242e496da504dfad3884e8c7fefa02bff8ce", - "epoch": 23, + "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d": { + "hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "epoch": 57, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 23, - "immutable_file_number": 7 - } + "MithrilStakeDistribution": 57 }, "beacon": { "network": "devnet", - "epoch": 23, - "immutable_file_number": 7 + "epoch": 57, + "immutable_file_number": 18 }, "metadata": { "network": "devnet", @@ -1876,37 +3705,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:24.491189Z", - "sealed_at": "2024-08-08T15:15:24.621350Z", + "initiated_at": "2024-09-09T12:59:31.089963428Z", + "sealed_at": "2024-09-09T12:59:31.478907862Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "2d629e72870a6cb1f602aabc211d570193ce5c5cca0a450e23437c0bdbfdd879", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31322c3133352c3234332c3139382c34362c3132302c38342c3130302c35362c3233352c3135382c3231382c3131322c3136332c3230372c31342c3139332c37322c3230372c36362c34352c3135302c3138382c3134352c3234362c3232302c34352c3135382c35372c3230392c3137362c36305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0964e88327dc9cbead86abc58ddfc10d3bc97a20840029bd7275260603521f59", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230362c3135382c3138392c3130302c3136332c34362c38392c3135302c3137312c3137332c3231322c36392c3134352c35302c32352c3131382c3232392c37372c3139342c3130312c3234382c3134392c3138392c3230382c3231392c3232372c3138362c32312c3139352c38362c3232352c335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133302c3132352c3230372c31392c3230312c3134342c3135352c3130332c3131332c362c3137382c39332c34332c3234322c3139322c3233382c3134352c3233322c38312c36332c38302c3230342c3139352c3131312c3133352c3136302c37332c382c3134312c3130392c3137392c34302c39362c3133312c3135312c34362c3138342c3234332c3234302c3234362c32362c3136352c37312c31332c3130312c31392c36332c31385d2c22696e6465786573223a5b302c312c322c332c342c352c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32362c32392c33302c33332c33342c33352c33362c33372c33382c33392c34312c34322c34342c34352c34372c34382c34392c35302c35322c35332c35342c35352c35362c35382c36302c36312c36322c36332c36342c36352c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c37392c38312c38322c38332c38342c38362c38392c39302c39312c39322c39332c39352c39362c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137332c35302c3135362c3133362c3233332c33382c36302c342c332c3232332c32342c3139302c3132342c32312c3131312c39392c32382c34392c3133372c3137342c38302c37352c3138352c39302c3130362c33302c3232362c31352c36392c32342c3135352c3233372c3135362c34362c3130332c3133322c37352c3138302c35362c38332c3235342c35392c3137352c36322c3231382c302c3134382c3233392c342c3138322c3130312c32322c31352c35362c3137382c3233382c36332c3137352c3137392c34312c38302c32352c352c3234332c33342c3135352c38332c37332c3230352c3130352c32382c3138332c3134392c3232372c37362c39362c36352c37302c3131312c3134372c39362c3135372c3233392c3234362c3136312c31392c3231332c34342c37372c3234332c3231322c382c35372c3233332c3139352c3231375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3139342c35392c31382c31332c3230302c36342c3231322c3131372c3139332c32332c3139312c3235302c3131302c31392c3230332c38312c3134372c35302c322c3235322c35322c3234362c32352c37302c3133362c3136312c36302c3132322c31362c34372c3133342c3136395d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "0671b0b9dc2f5f3cec9a253fd40246361dbc1180e03bc78da4e47f9b3ef2c1c2", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c3134362c3233342c3132342c3137332c3138352c3235332c3136392c3136332c3234312c3131372c39352c3138332c37372c3131342c32332c31352c3231382c3138302c3231362c31362c3230392c3137362c3234302c3130302c3138322c3233312c302c3234332c37342c34312c35342c3136362c31352c3139362c3136342c36302c3133372c3131332c3235342c3133352c3138302c3234302c3139342c36382c3139372c3233382c3232375d2c22696e6465786573223a5b302c312c332c352c362c31302c31312c31322c31332c31342c31352c31362c31372c31382c32302c32312c32322c32342c32352c32372c32392c33302c33312c33322c33332c33342c33352c33362c33382c33392c34312c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35342c35372c35382c36302c36332c36352c36362c36372c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38332c38342c38362c38372c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135312c3130322c3132352c3133382c3138362c3138372c31342c3235302c3131342c3235322c3133322c3133382c3132312c36372c312c3130392c32342c39332c332c3231352c31362c3231332c3230362c3132382c36332c3139302c3233332c3135372c3138302c3134382c3135352c3138392c3231322c3139322c34332c3131362c34302c34332c3134332c31352c3133302c38382c35332c3131302c35332c3230342c3231312c38322c322c3139362c3232372c3137312c3135342c31392c3139332c3233332c3139392c3234302c3130362c37342c3137352c3131352c3131382c3134302c3135352c3234342c39342c32322c3234352c3135332c3232302c3233312c3139372c39392c3136362c3133332c3130372c3130352c34332c38302c34362c39312c35362c34302c3232312c3132342c3136302c3134302c3135362c3232322c31302c3232382c3234392c302c3230302c3234305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231302c3135352c37352c3234312c38332c3132342c3232352c3138332c35362c3138342c38322c3139332c3231332c39332c35312c3132342c3139382c37312c3133302c39322c3231322c32352c31312c3130302c3134362c3138312c3132352c3234322c39322c3134372c3132382c34355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe": { - "hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "previous_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "epoch": 21, + "f69d6cd98a633aa01bec877fa38a3023ba43b7e868f0ac4a5be370c9c2f9ac6c": { + "hash": "f69d6cd98a633aa01bec877fa38a3023ba43b7e868f0ac4a5be370c9c2f9ac6c", + "previous_hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", + "epoch": 45, "signed_entity_type": { - "MithrilStakeDistribution": 21 + "CardanoStakeDistribution": 44 }, "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 45, + "immutable_file_number": 14 }, "metadata": { "network": "devnet", @@ -1916,40 +3744,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:18.144501Z", - "sealed_at": "2024-08-08T15:15:18.276975Z", + "initiated_at": "2024-09-09T12:58:58.738816909Z", + "sealed_at": "2024-09-09T12:58:58.999591946Z", "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "stake": 13333333334 - }, - { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138392c3138362c39352c38352c3130392c3234382c33392c3232392c3133352c3135382c3139302c3233312c3131352c3132382c36352c3234312c38392c3233322c3135372c3135352c3232332c34312c3137392c3234372c34352c3131332c3131362c3230322c35312c3230382c36332c3136345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "44", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "89653c477ef34721fcc20bca4028353e14fdb534e68d31db310fed88cad771fb", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138332c3234352c38322c31312c3234372c35392c3134362c36342c33362c3134322c3232392c36372c38372c3138332c34332c32382c34332c35382c3133352c3133362c3234312c3135342c3131352c3231342c31352c39392c3138312c3234382c3136322c3135372c39392c3231312c35322c3232382c3139332c39372c3135362c3132362c3136392c3131362c3136362c34332c382c3138342c38342c3136342c3232352c3132385d2c22696e6465786573223a5b312c362c372c392c31302c31332c32302c32332c32342c32362c32372c32392c33362c33382c34302c34342c34392c35332c35352c36372c37392c38322c38352c38372c39302c39312c39322c39332c3130305d2c227369676e65725f696e646578223a307d2c5b5b3136362c3231362c362c3233352c3139332c34342c3138332c35312c3133352c3131302c3131362c34322c3138342c3231332c3134372c3139332c35382c3231312c31342c3135352c3131342c3133332c3230382c3231352c31302c3235332c3135382c342c3137312c3231312c3132352c37322c3136332c3135302c36392c38342c32392c32302c362c36322c32342c3230342c32332c3133352c3136322c3232342c3135392c312c31312c3139372c3231312c3136392c35342c37342c3137322c31312c31302c3137352c3132332c3232372c37342c35372c3130352c3131322c3132362c35312c39312c3135352c322c382c3132312c3139372c32382c3233322c3136322c3137382c38322c3138312c3132382c3135302c3137382c39392c3135362c3136382c35372c372c31322c3130362c31342c3130382c33302c36372c3230392c36392c3230382c33335d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133322c3133312c31332c39332c3139342c3233352c3232342c3132302c312c3233382c3131312c3234322c3231332c3230302c3234332c39312c31372c3138382c3136312c332c312c3138312c35392c3130372c3235302c3137342c3135322c32342c3139302c3132392c3231372c3232322c3130372c3138322c36352c36312c3133332c3234362c3135302c3134352c35332c3132312c38302c3139322c3233332c3134302c39382c36365d2c22696e6465786573223a5b302c322c332c342c352c382c31312c31322c31342c31352c31362c31372c31382c31392c32312c32322c32352c32382c33302c33312c33332c33342c33352c33372c33392c34312c34322c34332c34352c34362c34372c34382c35302c35312c35322c35342c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c38302c38312c38342c38362c38382c38392c39342c39352c39362c39372c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136382c3135342c32382c3232312c35372c3137342c36372c32342c3134382c35362c3139392c3132382c3137352c38392c382c3233352c3139392c3232302c3235332c3133362c33342c3234352c3131382c3139382c3139322c3132302c302c3138332c3136332c3138382c3233302c32382c39342c34322c3139392c3232362c3130332c3135392c3235342c3233392c38342c3232362c31322c3135382c34382c31322c33352c3234302c372c32322c39382c3132352c3130362c3132302c3230322c3231322c3231312c3233302c3232392c3136352c3231372c3133392c3136342c37382c3136332c3234372c31372c37322c3130332c3133342c3137352c3139322c3136372c3231352c34392c3230382c3136342c32372c3133312c34382c3232362c34372c3138382c3232362c3233362c32382c35362c3232312c3131322c3135382c3133322c3138372c35372c3233312c35372c3133375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "383eefb1e4bece2f4cd5500d176e94c8cb27690d35c25131c043bf461c3592bf", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c3230302c3138352c36312c3233332c3233372c3133302c3230372c38392c3235322c3138332c3134392c37392c3131392c302c3135312c34382c35362c3139352c3232382c3137312c3131302c35302c3133332c3137342c3232352c3231322c34382c35352c3137372c3234362c3234302c38372c3138322c3133342c33382c32392c3131372c37342c3230312c33332c3138302c3131352c35332c3138392c32372c3235312c36335d2c22696e6465786573223a5b302c322c342c352c362c372c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34362c34382c34392c35312c35322c35332c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38332c38352c38372c38382c38392c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c31322c39332c3233352c35362c3136302c3130342c38392c37332c3136342c3231372c362c3234362c37382c35302c3133332c38372c31332c3230362c3130362c31322c3132312c37372c3230322c38362c32342c39342c39302c36342c34332c3231342c3134302c35372c37342c36322c31312c3138322c3233362c3136392c3230332c3136332c39312c3230322c33322c32312c36392c3230312c3138352c31352c33352c362c31382c3135332c31372c33372c3139302c3130322c3232352c3235332c3133332c3132392c33322c35342c37332c35342c3232312c32392c39312c372c3137312c3137342c3230302c3130312c38312c34322c352c32392c3134382c3130312c3134372c3233362c3137342c3139392c3139362c3233332c3137342c3232302c3139342c3132352c31362c3235322c35352c34322c3233342c35342c315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35312c3233312c3233352c3232352c3139322c3134372c39372c36322c3230312c36322c35352c3131342c3134362c3233332c3233302c39352c3133392c332c362c3136392c3137362c3231332c3231322c3235352c3132392c3133392c3138382c3134392c3134352c3130322c322c3138355d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "e4a943715ce2d923d2670f50da52ad027311c675a32e2169d2eddd2cf2119728": { - "hash": "e4a943715ce2d923d2670f50da52ad027311c675a32e2169d2eddd2cf2119728", - "previous_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "epoch": 20, + "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52": { + "hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", + "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "epoch": 59, "signed_entity_type": { - "CardanoStakeDistribution": 19 + "MithrilStakeDistribution": 59 }, "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 + "epoch": 59, + "immutable_file_number": 19 }, "metadata": { "network": "devnet", @@ -1959,42 +3785,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:15.715705Z", - "sealed_at": "2024-08-08T15:15:15.976252Z", + "initiated_at": "2024-09-09T12:59:36.822017929Z", + "sealed_at": "2024-09-09T12:59:37.210902199Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "19", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0a5e35c9b4c517a009a2d8b0cad9dbccde0534decb6405cfa3984a69899a55a3", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3139342c36322c3132312c37352c3134382c3234352c38372c3132332c3231382c3135372c3132342c35312c36352c3232332c3232372c3230392c3138332c3139312c3134332c3132302c3233302c38362c3233362c35382c3234362c32302c31352c3233342c3137332c32322c3136392c3136352c3232352c3133322c3131362c3232372c382c382c36322c3138342c3235302c3134322c33382c372c3132332c3231372c3133305d2c22696e6465786573223a5b302c312c322c332c342c362c372c392c31312c31322c31342c31362c31372c31382c32302c32312c32322c32342c32352c32362c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34312c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38352c38362c38372c38382c38392c39302c39312c39322c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136312c3136332c34322c34332c33302c382c3139312c34382c3235342c38352c372c3132322c3233372c3134352c3134322c3230322c31362c3139322c3134372c33352c39372c3232332c3232372c3230372c33352c3138322c3231312c3130312c38302c3134372c33302c3230392c35322c3133392c3136312c34302c3131302c3136352c3232362c37312c3130352c3233372c35312c36342c3135312c3232392c33302c3234382c352c3139352c34382c38312c3137302c3130342c35362c3233332c35362c3135392c3137352c3134372c3135352c33342c3132372c3135312c35372c31372c3131372c33352c3231332c3139342c3131312c3131392c3135302c3131352c3131372c36362c3235312c37392c3231352c3132322c3132342c3132392c34322c36392c3231312c31352c3139312c3135352c3136382c3138332c372c3233372c3233382c342c3138322c3138355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230322c3133352c31322c3134332c3132332c3135372c3232382c3137342c3132322c3232312c3137342c37382c32322c3130352c3136342c3134362c36392c33372c3134312c3232342c31332c3131312c3139332c31342c3137352c36302c3134342c37332c32362c3132342c3235322c3137365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "a91356ddf5bc6ce62e589dc002611d6265d5e21b77f513d6eb343b11fc78bb33", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138352c3235302c3231312c3230332c312c3132312c3133302c34352c3233342c3137322c3139322c3232322c34322c35382c3131322c3234352c36312c33382c3230322c312c31332c3138362c35322c38352c34392c3137322c3137322c3134332c3231362c3136352c3131342c37312c32362c3130332c3131332c3138322c32302c3235312c3234342c3232342c32312c3138392c37372c38382c3234352c3131392c3139312c3135305d2c22696e6465786573223a5b302c322c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31372c31382c31392c32302c32312c32322c32342c32352c32362c32382c32392c33302c33312c33332c33342c33352c33382c34302c34332c34342c34362c34372c34392c35302c35322c35352c35362c35372c35382c35392c36332c36352c36362c36372c36392c37302c37312c37322c37332c37342c37352c37362c37372c37392c38312c38322c38332c38342c38362c38372c38382c38392c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136392c3134322c34392c39312c3133332c3234302c3130312c39322c3233352c3232312c3134382c31372c33302c35342c3130392c33302c3132352c35352c38312c3233382c3234302c3230392c3132322c37302c32372c3230372c3134352c3234332c3231392c3132322c3230322c39312c37392c3139302c3231342c3233322c3136322c3232352c372c36352c3138312c3234302c33382c3133372c37392c37392c35352c37352c31382c38332c3137392c38332c3131312c3234332c302c33342c3135322c3139332c3136312c3131392c372c3138352c322c36382c3139332c3131382c362c37392c36352c35342c31312c3234322c31302c3235302c3138312c38312c3137372c3230322c3139342c38382c31302c3133382c36392c36312c3135392c3137332c3139392c3132342c35382c302c3234332c3135372c35342c37312c3139312c35315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233372c3139362c3234382c38302c37352c3131312c3136302c3138392c3231392c3130382c3130332c3234332c32302c3130342c3132312c3131352c3138332c3136342c3231342c3137332c3232382c3139312c33372c38312c32312c35342c3131362c38352c3232332c33362c372c385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "e92f43f885085987fbb5e786ce82c9e315a5147c3fde9c9b780562789c24baeb": { - "hash": "e92f43f885085987fbb5e786ce82c9e315a5147c3fde9c9b780562789c24baeb", - "previous_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "epoch": 19, + "f88d22f2977aa0161b3dd0775cccdcb935d90e3c621d5bb8d51893785c8252f5": { + "hash": "f88d22f2977aa0161b3dd0775cccdcb935d90e3c621d5bb8d51893785c8252f5", + "previous_hash": "c94228c6f70dd5d50e5514091c431613cfd2e6a116f3cc1a45c0cda23e9d7e11", + "epoch": 28, "signed_entity_type": { - "CardanoStakeDistribution": 18 + "MithrilStakeDistribution": 28 }, "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 28, + "immutable_file_number": 8 }, "metadata": { "network": "devnet", @@ -2004,46 +3824,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:12.854685Z", - "sealed_at": "2024-08-08T15:15:13.115843Z", + "initiated_at": "2024-09-09T12:58:09.930058110Z", + "sealed_at": "2024-09-09T12:58:10.452771030Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "18", - "cardano_stake_distribution_merkle_root": "4e58b3e9ceedebcb1b418c5cfab4e0f7e73b194e3da254a061a7e588264db2d2" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c35382c3134332c3134392c3134372c3133392c3135332c322c31372c352c3234362c3131302c33312c37392c3135312c3130382c36332c3232352c3137322c3235342c33312c3235352c3132342c3136372c3137322c36332c37372c3136372c3234322c3231322c3232302c33355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "1761c39c79983770b169b75caac51d02c7de2e0cc9ea846733d96e84b2a3481b", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c3135372c3134332c38352c34302c3231382c3230342c3131362c3235332c3230312c38352c33302c3234382c33372c36342c3231392c3134342c342c37302c3135342c3136302c3136302c3232342c3234332c3131392c32312c3136302c31362c33372c31352c3138382c3136305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3233332c3233362c33322c3136372c39342c3233332c36332c3232332c3136392c3139362c35302c3130312c36332c3135302c33342c3130312c3232382c34322c3234342c3139372c39362c3235322c3232352c3131392c31352c3138352c3232362c3133302c3134382c39302c312c3132302c3136382c33382c3135382c3133352c36342c3136362c37362c37362c3230382c3136312c3136392c3230322c3139372c3234302c33325d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c31302c31312c31332c31342c31352c31362c31382c31392c32302c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33332c33352c33362c33372c33382c33392c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c36302c36322c36362c36372c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39342c39352c39362c39372c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c3131312c3134322c3233332c3235352c3137362c33312c38372c3234382c3233392c31392c3134342c3233362c36312c3138302c31362c3136392c3232362c35352c32322c37322c3231352c32382c3234342c3132322c3230302c3233362c31392c3230382c3233312c36372c3233342c3137352c3230382c34352c3235302c3232322c302c3233362c31332c382c3134342c3135312c3135382c32392c3136352c34352c33352c322c3135382c3130372c3233352c372c37332c3138322c3230382c38342c39372c3231332c3137392c3234342c3230372c3234322c3138302c36342c3138302c39382c3233392c3131372c3138332c3231392c35342c3130302c3136382c3233362c31362c342c3233372c3130352c3135342c3233322c35392c31312c37392c3139372c3132372c3139342c352c32342c3235342c392c382c3233352c3130302c3232322c3137345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b31302c35362c3139332c37392c39362c35392c36382c34352c392c3133312c3135312c34302c3135382c3130302c3136392c342c35372c37342c3234382c36382c382c33312c3234362c3230342c32362c3132322c38362c36382c3136332c35302c38322c3233385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "e0662e9e0d0850d512f05292e9d2aeaaf6da2f708ac45e5861e508c9447a07e0", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232302c3231372c3131302c332c38362c31372c33342c3131362c37382c35372c38342c3137322c352c3230352c3235322c33332c3131372c36342c34382c32392c38352c3134372c3230342c39322c3235322c3234362c3231332c3231362c3234382c33362c3230372c3133395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138312c3235352c37332c3233352c34342c3233372c3132392c3235342c332c34312c3133372c34372c37382c3230392c3135332c3139382c34312c31392c3231382c3234312c3133322c36362c3135372c32372c36332c3232372c302c382c37342c3132352c3233332c36332c3134372c33372c3139332c38372c3133372c3131352c3139382c38362c31362c36372c3137312c39322c34322c35382c3138382c3136335d2c22696e6465786573223a5b302c312c372c382c392c31352c31362c32302c32342c32392c34312c35382c35392c36332c37312c37342c39362c3130335d2c227369676e65725f696e646578223a307d2c5b5b3134302c3131392c3138322c34332c3134342c3132362c3139322c3139392c3131382c3230342c35332c342c3138362c3139372c36382c342c302c3131322c3138382c37372c34332c39382c3231342c3234342c34302c3135322c3231302c3130312c392c3136392c34322c3232382c34362c3131302c3232312c3134352c3132372c38382c38392c34392c3137322c3130312c38362c31312c32342c382c3132382c3132392c31372c31302c32342c3232372c3232312c3231382c3136312c37312c3139372c3135382c3231312c3233372c32362c38332c35392c35372c3139312c3138312c3234312c3134342c3235352c3232342c3235322c3138382c3136332c3137362c38302c3235302c3230302c3138332c33302c3131382c3132312c3135382c3134302c3131382c39322c3231342c3132302c392c3132322c35302c36312c37342c3231362c3131382c33302c38315d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133342c3139392c3135332c3137352c3138342c3234322c3234352c3231312c3137332c3230312c3135302c3130332c35342c3133372c3130312c3234302c32352c3132372c3234302c3233342c3134332c37392c32302c3232322c34382c3231332c3136332c36362c37372c3230352c3230332c3133352c3136332c3233302c34382c3130342c3232392c36342c3132322c31332c3131312c36322c39352c3132362c3139392c37372c3132362c365d2c22696e6465786573223a5b322c342c352c362c31302c31312c31322c31332c31342c31372c31382c31392c32312c32322c32332c32352c32362c32372c32382c33302c33312c33322c33332c33342c33352c33362c33372c33392c34302c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c36302c36312c36322c36342c36352c36362c36372c36382c36392c37302c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138312c3230382c39392c36392c34312c31352c3231312c38372c32362c37382c3231322c3133372c3138372c34332c35332c37312c3130322c3131362c3138302c3130362c3131362c3135312c32312c3132392c35362c34392c3132352c3134332c31382c31312c32302c352c3137332c33362c372c3235352c3136362c3134312c37392c3135382c3138322c38362c3132392c3131312c3136312c34312c32362c3234332c32322c34322c3136312c3233352c3137302c362c33342c3133322c31322c31342c3132382c3138362c3231392c3132332c32312c33342c3234382c3231322c39352c3134352c3135332c35302c3135382c3130342c3138372c3138322c33352c3230322c3134382c3132382c33352c3138342c34302c37342c3235332c3132322c3231382c34352c3131322c34322c3132312c3130342c3136322c3235352c31342c37392c37332c38335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "eaf17b47677317907e20297540fbec717031621295a82a00e6fd6916bd583082": { - "hash": "eaf17b47677317907e20297540fbec717031621295a82a00e6fd6916bd583082", - "previous_hash": "cc7fa14cbccc78ff1492430d391a20cb579ae1ffa85724060a27954360108068", - "epoch": 13, + "f8ca3cf68c39f45c29d12e29c3642453ecffcb6d18bfcf5d559b915d8df8c07c": { + "hash": "f8ca3cf68c39f45c29d12e29c3642453ecffcb6d18bfcf5d559b915d8df8c07c", + "previous_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", + "epoch": 62, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 13, - "immutable_file_number": 3 - } + "CardanoStakeDistribution": 61 }, "beacon": { "network": "devnet", - "epoch": 13, - "immutable_file_number": 3 + "epoch": 62, + "immutable_file_number": 20 }, "metadata": { "network": "devnet", @@ -2053,44 +3867,42 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:14:56.400484Z", - "sealed_at": "2024-08-08T15:14:56.660146Z", + "initiated_at": "2024-09-09T12:59:45.470454219Z", + "sealed_at": "2024-09-09T12:59:45.865126929Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 }, { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "a7ffb9f9bf0a6c92bc4f702d26a6b4dfc7eb76e36d7fd8a9f6e1b440686fa92f", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136312c3231352c31302c34392c3137312c3232352c39342c3233362c3232382c32342c3235312c37392c3135372c34342c33332c39302c39372c3137392c38352c3132332c37382c33362c3134382c3234362c3137392c3132322c3234312c3131312c3131382c32332c3139342c3137375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "61", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "8b5e7de198f2339bd44f18348d3ad0a352630e2d57eb84506853d42213051595", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137322c3132342c36312c3130372c33372c312c3230352c33332c3230392c3233392c34302c3133382c3137322c3130352c37322c3132372c3139312c3234332c3234372c39312c362c342c3131372c3235312c33342c3135372c3234352c3234382c3137372c3135322c3130322c3131375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132382c36352c3133362c39302c36372c31342c3235352c3231322c38362c37392c3235352c37352c32362c3234332c3235332c34362c3137322c3136382c36342c39382c3234372c37372c35392c3132332c34382c3138372c3136392c34362c35362c38392c35312c3234372c32322c3135362c3235342c3135312c3138372c3235342c3137322c3231362c34302c3138342c3130302c3130352c35342c3137342c3232312c3231325d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c392c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35352c35372c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37312c37332c37342c37352c37362c37382c37392c38302c38312c38342c38352c38362c38372c38392c39302c39312c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136362c34392c31392c38392c3134332c36362c3235312c382c31302c3133332c33322c3230392c3139312c3138392c37302c3136382c3137382c3234302c3134312c3137302c36362c322c35332c3139362c3133352c3234372c392c38332c37362c352c382c3230332c382c3132372c3134372c3134372c32392c3231312c3131302c34312c3234392c35382c3137342c3131352c3131362c3132312c3234362c3230372c32332c35332c3233342c37382c33382c3235322c34382c3137382c3231352c39372c3133342c3231382c31372c3231302c3139312c37322c332c3136372c3139332c3230342c3232302c3235332c31342c38352c3130382c362c3233342c3132352c38302c3139362c3234352c3130342c3136392c3230392c32332c3234372c3139332c3231312c3133322c35322c36352c3138332c34362c3136382c3230352c34392c302c3135335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32322c3135342c3132382c3233352c3232332c3134342c3139372c3139372c37392c3137392c36322c31372c3232352c36362c3233302c3132302c3232322c3138392c3130312c32362c3233332c39362c33332c37382c39392c3135312c31342c3139362c36312c35372c31332c3233325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "7a47525577d16881e5cb0fd80d50552caef7eb980095ba25ecee6f2b8b485ee4", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3134312c3231372c3130302c3132342c3136392c36312c3232302c31342c38362c34302c3230382c3137302c32322c3137342c3132342c3132302c32312c3231322c362c31322c3133322c33312c3131352c37342c34392c35302c39362c38342c3138372c3232392c39332c33352c3133392c342c39352c342c3133362c37392c372c3234342c3134362c35312c31382c3132302c342c3231322c3131395d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31312c31322c31332c31342c31352c31362c31382c31392c32302c32312c32322c32342c32362c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34362c34382c34392c35302c35312c35322c35332c35342c35352c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37382c37392c38312c38322c38332c38342c38352c38362c38372c38392c39312c39342c39352c39362c39372c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c322c35312c37362c3233342c37312c3131302c3133382c3234312c3232392c37362c3234372c362c3136362c3234372c3130352c3135382c39322c36392c31312c3234382c3138322c33332c32372c3133372c3136362c3232352c3230312c3135362c3234372c3230312c3138372c3138372c3133312c36362c3131342c3230372c3234322c36392c3130372c3231332c35302c3233342c35382c32392c3233382c362c31332c31342c3138352c35382c3139382c33312c3134372c3232312c33332c3232322c33342c37362c3230302c3133332c3233312c3232372c32332c352c3139312c3139372c35302c38312c3235302c37302c3137382c3136382c3139332c3232382c3134352c3134372c3135322c3136322c3130322c3136322c3234352c3231302c3230392c38392c3132352c3136342c3230332c32362c37372c37362c3130342c35312c3131382c34362c34395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c33322c3136342c32362c38362c3134322c33392c3232382c35322c39312c36352c3130382c3230322c35372c32382c3134312c3130392c38352c3138382c362c3232332c3136352c3139352c38302c3135332c31342c37362c3133362c33352c3136302c3230382c33365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "efceff797292a5eea2f0c8c4e7107515408076c18e82b36c5f617a0354601141": { - "hash": "efceff797292a5eea2f0c8c4e7107515408076c18e82b36c5f617a0354601141", - "previous_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "epoch": 20, + "faaac20f065e09df16ce5699bfe553b142a21b37a7e7e1fd6d6e03d7c04f4f6c": { + "hash": "faaac20f065e09df16ce5699bfe553b142a21b37a7e7e1fd6d6e03d7c04f4f6c", + "previous_hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", + "epoch": 49, "signed_entity_type": { - "CardanoTransactions": [ - 20, - 704 - ] + "CardanoStakeDistribution": 48 }, "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 + "epoch": 49, + "immutable_file_number": 16 }, "metadata": { "network": "devnet", @@ -2100,29 +3912,25 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-08-08T15:15:16.528458Z", - "sealed_at": "2024-08-08T15:15:16.918173Z", + "initiated_at": "2024-09-09T12:59:09.248199515Z", + "sealed_at": "2024-09-09T12:59:09.509734366Z", "signers": [ { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "stake": 13333333334 - }, - { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "cardano_transactions_merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230352c39372c31362c39312c3131312c33382c3139322c352c3233352c3135352c3138332c3134322c3136312c39382c3131322c38372c34392c3132362c3231312c35342c37332c372c3231302c39392c3138322c35322c3235302c38372c3136312c3230392c3137372c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "latest_block_number": "704" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "48", + "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" } }, - "signed_message": "8156e90d1e81766441d21590fa4966d853716193690e16f20aa9d0f9111f4d9e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130362c35322c38342c3131342c3132362c3130342c31392c36372c3134342c3139362c33322c3139372c3231392c32372c3230372c32382c3134392c3137352c39302c3139322c3233352c36342c32362c3136352c37322c38332c3233392c3134372c38362c35392c37372c35365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c3136382c3233332c3130382c3234332c3132382c34362c322c3230322c3231342c3139392c32372c35312c32342c35352c34322c3233392c36352c39302c35322c3232312c362c3134352c37322c3131392c3232372c3136372c3131362c38392c32382c31342c3231342c3130342c352c3135372c3231362c37382c32342c3234312c32372c3135302c3130352c3231362c37312c32392c3130392c3232332c34345d2c22696e6465786573223a5b302c312c322c342c352c362c382c392c31302c31342c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34302c34332c34342c34372c34382c35302c35322c35342c35352c35382c35392c36302c36312c36322c36332c36342c36352c36382c37302c37312c37322c37332c37342c37352c37372c37382c38302c38312c38322c38332c38342c38362c38372c38382c38392c39302c39312c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133342c36332c3235352c39312c3131332c3235332c352c3230332c31372c3233342c3234382c3134352c3138322c3132342c3130322c36302c35372c36392c3233392c3136332c38362c3136302c3139392c3137352c3134302c3130382c31382c36372c31302c3137392c33312c3139302c3235322c3235302c3131312c3131352c32342c3131302c31372c3231392c3233382c38312c3230382c3132322c3139352c33352c3233372c34372c392c31362c33382c3135332c3136392c34342c38382c3233352c3135352c3233372c3234302c3133342c3135312c33352c31332c3137312c38332c3232352c3132342c3230322c3232332c37322c33302c3132352c3134322c3136352c3138352c31332c3232372c3231352c33342c3137382c3136352c3132302c39312c3230392c3136322c3136392c31302c3130382c31392c31392c34392c3136342c3235322c3133312c3232362c3130325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39332c352c3233312c3233382c38392c3135372c36382c3234362c3136362c3139332c3138362c3138392c3232372c3139372c38312c32362c3230342c3133382c3132372c3138322c3134362c3134352c3231372c33312c3234322c3137332c3131392c3135342c32302c3230332c3139362c3134325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "372a5532f21a31a6d29f44d8d1c2666aac92560cc6026fd5b3a749d5bf9b021f", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135322c36322c39372c33302c39312c3137362c33302c3231312c3135312c3139312c3233372c3233382c3130382c3231322c31392c3139382c31362c3233372c3232392c3131382c3134302c33302c3232362c3137322c3134382c31332c3138372c37392c3230392c33352c3230382c37312c3130352c33392c392c3134352c35372c36382c3132332c32312c35312c35302c3235322c39302c3133322c3133302c3135362c3234385d2c22696e6465786573223a5b312c322c342c352c362c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32322c32332c32352c32362c32372c32382c32392c33302c33312c33332c33342c33352c33362c33382c33392c34312c34332c34352c34372c34382c34392c35312c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36332c36342c36362c36372c36382c36392c37302c37342c37352c37362c37372c37382c37392c38302c38332c38342c38362c38392c39312c39332c39342c39352c39362c39372c39392c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134322c36342c3233392c3132302c38332c3132352c3134332c3138312c3133312c3130312c3232362c3231332c32302c33342c3135372c3232382c3135392c3230352c3230382c3135312c3230342c3138342c33342c3233372c38392c3131332c3137392c3233322c3130382c3231352c3232382c3235302c3134362c3134352c3134392c38382c39382c3230322c36392c36332c38372c332c3232302c3132302c3135362c3135332c34332c3132322c322c3134332c3136342c3233312c3136322c3138372c3233352c3130382c3131302c3137392c3135332c38302c3233372c3132342c3137352c3130302c3136302c37332c3232372c332c3137332c322c3234342c3232332c39362c3136352c3234362c372c3231332c3232342c3135332c37312c34382c37312c3132312c3136392c3138302c3230322c39322c3137332c3233382c39352c3230302c33372c3138382c3235322c3235332c33345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37362c34372c3233322c35322c3233312c3230322c3137372c36392c3134362c3234362c37302c3130312c35372c3130382c37362c3231372c3138312c3130352c36362c3134372c3232322c37322c3234392c36392c34352c36302c32382c3130352c3233362c3231392c3130362c3235345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" } } 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 7a6a57fb444..a52f3ae3f81 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,12 +1,13 @@ [ - { "transaction_hash": "01545fd872e65c31d84fb88c42ea8138bc67018c998be4e05087ca711de48b86" } -, { "transaction_hash": "f07847a9c8421b8fcd095d8df8fd65f47e2b50ca0c9242072006cba1093b23a8" } -, { "transaction_hash": "b0dc311e1c9e5d1fc25e9e3d0816e48d8b8e1edff5d8573258ecf46d45dc2d21" } -, { "transaction_hash": "8d03b5024fa5067d08678883bc347be80f2d631f6d594200cc31e1d7548ca87d" } -, { "transaction_hash": "40362679936127b6b43b020199393dd553d70295639f2fde37708f3d4bbb8364" } -, { "transaction_hash": "d334ea44e3b66d97f54a7b8bdda6992d120ebd36cb1cffffbd4f19a115aa3122" } -, { "transaction_hash": "f87801c578829e52bfcdc4b4b5418b391ec5db2afdb32c7b9b7bd84bac0de6b9" } -, { "transaction_hash": "96d3a2e7d35feaa2314fb31470791801fe35a05b44dfd2386ec609e36d6da22f" } -, { "transaction_hash": "bc8cb3a9ced67d7fc37750992a21f3b5351c3c797c4897eefb7f9f50d98eebf9" } -, { "transaction_hash": "03cc27e2473de13e44099f52ac3c6a7b7803e2c0c8bf7cf3dc34591ab73138cf" } + { "transaction_hash": "ee9630fee2081f17f6b53b1c56b72adafd664bb93ec8f050d8059507cfaeb0ec" } +, { "transaction_hash": "2a2501bd8d9b70e28af0eec7fde926624a91548a76ac1a13bd19ac852c58949c" } +, { "transaction_hash": "e18e51f2f67c01ffbab9798c11da6674ab3fb9430d66f02b715290b2b5370867" } +, { "transaction_hash": "393f8739c8e7805f528045096c16095fbb3e60301fee9c268aca72396e4dd6e2" } +, { "transaction_hash": "0d799aed0d6a5eee11a064a82ee6f34f6593c529b1653ae9e4b5b6fad69d555a" } +, { "transaction_hash": "7b3997266f549638cf86a1aa4db9e4b486a83c7b40dab84d05e0a010c732705d" } +, { "transaction_hash": "2b35845f3c64d140b5c44e5f94edaf1718c332eb3a576ed5987d5ff45f22f581" } +, { "transaction_hash": "0e1ee41d9c13ae4917586c55f653bf2e37f62cce202843e16f2018409b1a8410" } +, { "transaction_hash": "ed707b474d34e7995997f22afedec5daee87d4589318ccf76111d4358bd6c369" } +, { "transaction_hash": "02bc3d625eec7de97660567a16a5001103b118b52a71b6310e92a4cc83819444" } +, { "transaction_hash": "30a954c93e13561b9c39325165eaec98debc01bdc0961033c35076baa9e08f41" } ] 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 911501c7427..dd00d15e454 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,132 +1,145 @@ { - "01545fd872e65c31d84fb88c42ea8138bc67018c998be4e05087ca711de48b86": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "02bc3d625eec7de97660567a16a5001103b118b52a71b6310e92a4cc83819444": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "01545fd872e65c31d84fb88c42ea8138bc67018c998be4e05087ca711de48b86" + "02bc3d625eec7de97660567a16a5001103b118b52a71b6310e92a4cc83819444" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34302c3134392c31332c34362c3232362c36352c3135392c37372c37362c3132312c39372c3232372c33382c302c3231322c3135362c3136322c342c3131342c3235352c3234392c36372c3138322c3233352c3134382c3135392c32312c332c3233372c3136392c342c3233345d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b37392c3136392c36302c33322c35302c34302c31372c3136302c37302c3138362c3234322c3233362c3133322c3135322c3234342c3137382c39332c31382c3233372c3132342c36332c3133372c3139372c34352c33342c3136322c3235302c34332c392c3130322c39392c34395d7d2c7b2268617368223a5b33352c3230322c33362c3132312c3136302c3133382c3139352c33352c3131382c3136382c3130312c36312c38352c3235312c3138342c36362c38362c3230382c3235312c3136372c3138332c3231302c3139372c3136322c31302c35352c3135342c3135392c3132302c3231392c3131372c3131305d7d2c7b2268617368223a5b37372c3235322c31352c3232352c3230312c35312c362c3132352c3134342c37352c3137312c3230302c3234352c3135332c3232312c34342c35372c3231312c35302c35312c35372c36372c3137392c38392c34332c39342c3235332c3139372c3138362c31312c3132382c3134395d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3133352c22656e64223a3135307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34382c34392c35332c35322c35332c3130322c3130302c35362c35352c35302c3130312c35342c35332c39392c35312c34392c3130302c35362c35322c3130322c39382c35362c35362c39392c35322c35302c3130312c39372c35362c34392c35312c35362c39382c39392c35342c35352c34382c34392c35362c39392c35372c35372c35362c39382c3130312c35322c3130312c34382c35332c34382c35362c35352c39392c39372c35352c34392c34392c3130302c3130312c35322c35362c39382c35362c35345d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34382c34392c35332c35322c35332c3130322c3130302c35362c35352c35302c3130312c35342c35332c39392c35312c34392c3130302c35362c35322c3130322c39382c35362c35362c39392c35322c35302c3130312c39372c35362c34392c35312c35362c39382c39392c35342c35352c34382c34392c35362c39392c35372c35372c35362c39382c3130312c35322c3130312c34382c35332c34382c35362c35352c39392c39372c35352c34392c34392c3130302c3130312c35322c35362c39382c35362c35345d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b31312c7b2268617368223a5b33322c3234322c33302c342c3136322c34312c31302c3234372c3132392c3131372c31312c3235302c3230372c32352c35362c3235302c37312c39352c33332c38372c3134342c3135382c35322c3234302c3138302c3234372c3134352c37352c3230392c3234332c38342c3133325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3132332c31312c3136342c342c3230362c35342c34382c3232392c3131342c3230392c33352c3132382c3130382c39312c3130322c3231372c3234352c38362c34312c33342c3131302c3230382c37382c32372c38312c3139362c38312c3135302c3234322c3235302c35392c3232365d7d2c7b2268617368223a5b3234392c33342c32342c3234352c32382c33342c382c32372c3133392c3232322c3137342c3132342c3232322c3134382c3134382c38392c34302c36302c3131392c3234332c35382c3133352c32352c3233342c3230362c3132312c3233302c32392c3231392c3138312c3130322c395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3531302c22656e64223a3532357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130392c3133382c31362c3133302c31392c35322c32312c38332c3135342c38382c3138362c37392c3231352c3234312c39372c3231332c3135332c36302c37352c3137392c37362c34392c3233392c31322c3235312c3230342c35332c3231322c3233362c32342c3233362c3132315d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34382c35302c39382c39392c35312c3130302c35342c35302c35332c3130312c3130312c39392c35352c3130302c3130312c35372c35352c35342c35342c34382c35332c35342c35352c39372c34392c35342c39372c35332c34382c34382c34392c34392c34382c35312c39382c34392c34392c35362c39382c35332c35302c39372c35352c34392c39382c35342c35312c34392c34382c3130312c35372c35302c39372c35322c39392c39392c35362c35312c35362c34392c35372c35322c35322c35325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b35312c34382c39372c35372c35332c35322c39392c35372c35312c3130312c34392c35312c35332c35342c34392c39382c35372c39392c35312c35372c35312c35302c35332c34392c35342c35332c3130312c39372c3130312c39392c35372c35362c3130302c3130312c39382c39392c34382c34392c39382c3130302c39392c34382c35372c35342c34392c34382c35312c35312c39392c35312c35332c34382c35352c35342c39382c39372c39372c35372c3130312c34382c35362c3130322c35322c34395d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 }, - "03cc27e2473de13e44099f52ac3c6a7b7803e2c0c8bf7cf3dc34591ab73138cf": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "0d799aed0d6a5eee11a064a82ee6f34f6593c529b1653ae9e4b5b6fad69d555a": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "03cc27e2473de13e44099f52ac3c6a7b7803e2c0c8bf7cf3dc34591ab73138cf" + "0d799aed0d6a5eee11a064a82ee6f34f6593c529b1653ae9e4b5b6fad69d555a" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b31312c7b2268617368223a5b3235342c34392c3139312c36332c33322c38342c3138372c3230392c35382c342c3138312c3139322c3234332c3133322c3138312c3139312c33332c3139362c37302c33382c3137352c3131362c39392c3134322c35392c3138372c35322c382c3234312c3139312c3133352c31325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3134382c3139312c3134392c32302c3230362c31372c3231332c33362c3139322c3233332c3130382c35332c3232342c3133392c33382c3233382c3230392c3138382c32392c3135392c3234332c3232332c3132312c3133382c38352c31312c3230362c3137352c302c34302c3230342c34305d7d2c7b2268617368223a5b3230392c3132362c3134362c3130342c3138382c3230322c3231372c3139322c3135352c3130342c3235332c3230392c36322c39382c36342c3132392c3230342c32332c3137332c31392c3134372c3232352c3137382c3135372c3137312c3135392c3235342c3135372c3234322c3132372c33352c3232355d7d2c7b2268617368223a5b3233352c31302c3233372c3138392c36322c3234312c3234362c3138312c3231352c39332c3138362c3137392c3136322c38322c3230392c3231352c3233312c3230332c31332c3232372c3134362c3130382c312c3134342c3134322c3235342c37342c3231372c3233302c3138382c3134392c3233325d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3534302c22656e64223a3535357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34382c35312c39392c39392c35302c35352c3130312c35302c35322c35352c35312c3130302c3130312c34392c35312c3130312c35322c35322c34382c35372c35372c3130322c35332c35302c39372c39392c35312c39392c35342c39372c35352c39382c35352c35362c34382c35312c3130312c35302c39392c34382c39392c35362c39382c3130322c35352c39392c3130322c35312c3130302c39392c35312c35322c35332c35372c34392c39372c39382c35352c35312c34392c35312c35362c39392c3130325d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34382c35312c39392c39392c35302c35352c3130312c35302c35322c35352c35312c3130302c3130312c34392c35312c3130312c35322c35322c34382c35372c35372c3130322c35332c35302c39372c39392c35312c39392c35342c39372c35352c39382c35352c35362c34382c35312c3130312c35302c39392c34382c39392c35362c39382c3130322c35352c39392c3130322c35312c3130302c39392c35312c35322c35332c35372c34392c39372c39382c35352c35312c34392c35312c35362c39392c3130325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b342c7b2268617368223a5b3138332c3132302c3235322c3234302c3134322c34392c34322c3234332c3133332c3232302c3233302c37332c3134322c31322c3137322c32332c34302c3235352c3134362c31362c32312c3233322c35372c3139352c3138332c3230302c3136372c32342c3130332c32342c36342c3135345d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b37322c322c3232332c32382c3133382c3232362c39392c31322c3134302c3139352c3138342c322c3235312c382c35332c33332c32322c3135322c3138322c33382c3139372c3134302c31392c3230372c3130322c3132332c3136352c3137372c3235302c36382c35322c31355d7d2c7b2268617368223a5b3135372c34312c38342c3136382c3138342c35392c39382c3231352c3130322c3231302c3230332c31312c38372c3133392c3132352c32332c3133382c3233342c3139352c3233332c39352c312c36352c38312c32382c3133362c3234372c32332c38312c3230312c39302c37345d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3337352c22656e64223a3339307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34382c3130302c35352c35372c35372c39372c3130312c3130302c34382c3130302c35342c39372c35332c3130312c3130312c3130312c34392c34392c39372c34382c35342c35322c39372c35362c35302c3130312c3130312c35342c3130322c35312c35322c3130322c35342c35332c35372c35312c39392c35332c35302c35372c39382c34392c35342c35332c35312c39372c3130312c35372c3130312c35322c39382c35332c39382c35342c3130322c39372c3130302c35342c35372c3130302c35332c35332c35332c39375d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34382c3130302c35352c35372c35372c39372c3130312c3130302c34382c3130302c35342c39372c35332c3130312c3130312c3130312c34392c34392c39372c34382c35342c35322c39372c35362c35302c3130312c3130312c35342c3130322c35312c35322c3130322c35342c35332c35372c35312c39392c35332c35302c35372c39382c34392c35342c35332c35312c39372c3130312c35372c3130312c35322c39382c35332c39382c35342c3130322c39372c3130302c35342c35372c3130302c35332c35332c35332c39375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 }, - "40362679936127b6b43b020199393dd553d70295639f2fde37708f3d4bbb8364": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "0e1ee41d9c13ae4917586c55f653bf2e37f62cce202843e16f2018409b1a8410": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "40362679936127b6b43b020199393dd553d70295639f2fde37708f3d4bbb8364" + "0e1ee41d9c13ae4917586c55f653bf2e37f62cce202843e16f2018409b1a8410" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b372c7b2268617368223a5b3133342c3132392c3235312c34332c3135332c3233392c3136372c3232372c3137392c32322c33332c3131322c3131312c32362c3231352c34302c31362c3133302c35392c3231382c33342c36302c3233322c3137372c36332c31362c37392c372c3131312c3135352c3131392c3136355d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3234312c3134302c3235322c37342c36362c34322c3232362c3230332c3230302c3139352c34342c3233342c34342c32302c3138362c3133392c31322c3233322c39392c38372c382c3136342c3131392c38392c3131392c39302c3138302c3233362c3131362c35312c37312c32375d7d2c7b2268617368223a5b34342c3139322c35382c392c3135332c34382c3136342c3130362c33332c3234312c37342c31382c3131352c3234372c3130382c36332c35352c3135312c38362c3233342c3234382c37302c3136342c3131342c3131332c3135382c3233372c37372c3137302c38352c38342c3230315d7d2c7b2268617368223a5b3233352c31302c3233372c3138392c36322c3234312c3234362c3138312c3231352c39332c3138362c3137392c3136322c38322c3230392c3231352c3233312c3230332c31332c3232372c3134362c3130382c312c3134342c3134322c3235342c37342c3231372c3233302c3138382c3134392c3233325d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3433352c22656e64223a3435307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35322c34382c35312c35342c35302c35342c35352c35372c35372c35312c35342c34392c35302c35352c39382c35342c39382c35322c35312c39382c34382c35302c34382c34392c35372c35372c35312c35372c35312c3130302c3130302c35332c35332c35312c3130302c35352c34382c35302c35372c35332c35342c35312c35372c3130322c35302c3130322c3130302c3130312c35312c35352c35352c34382c35362c3130322c35312c3130302c35322c39382c39382c39382c35362c35312c35342c35325d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35322c34382c35312c35342c35302c35342c35352c35372c35372c35312c35342c34392c35302c35352c39382c35342c39382c35322c35312c39382c34382c35302c34382c34392c35372c35372c35312c35372c35312c3130302c3130302c35332c35332c35312c3130302c35352c34382c35302c35372c35332c35342c35312c35372c3130322c35302c3130322c3130302c3130312c35312c35352c35352c34382c35362c3130322c35312c3130302c35322c39382c39382c39382c35362c35312c35342c35325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b382c7b2268617368223a5b3230332c3231342c3136382c38312c31372c3135392c31392c3131302c3232322c3137372c3234382c3231322c3136332c3235332c3137332c3230372c3130372c3130342c3135302c3231322c3233312c39352c3131302c3132312c39372c3138372c32312c3133362c3135322c3231362c3138372c32325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3133302c3230322c3138322c35302c3233362c3137362c38392c382c3232332c38382c38392c3135372c3231362c3231322c3233382c352c3136382c3131312c34312c3138362c3135332c37372c382c3235342c36332c3130332c3133382c3138352c33342c3132382c3233342c34305d7d2c7b2268617368223a5b39362c3133372c39372c3232342c31322c3231322c3138342c3233352c38342c3139372c36332c3233312c32352c3133342c3133312c3139392c3230352c3130312c35392c37352c3139352c36342c3231382c36332c3137382c3137362c35392c31352c3130382c3231382c31392c39395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3433352c22656e64223a3435307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34372c3233332c33332c38312c3233312c3130362c3134332c3232372c35312c31332c36322c3131342c3234362c31312c31382c34392c39362c3230312c3137332c3231352c3230382c3230352c31372c36372c3137392c35372c3138362c31362c35372c3233312c3132312c3136315d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b34382c3130312c34392c3130312c3130312c35322c34392c3130302c35372c39392c34392c35312c39372c3130312c35322c35372c34392c35352c35332c35362c35342c39392c35332c35332c3130322c35342c35332c35312c39382c3130322c35302c3130312c35312c35352c3130322c35342c35302c39392c39392c3130312c35302c34382c35302c35362c35322c35312c3130312c34392c35342c3130322c35302c34382c34392c35362c35322c34382c35372c39382c34392c39372c35362c35322c34392c34385d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b35302c39382c35312c35332c35362c35322c35332c3130322c35312c39392c35342c35322c3130302c34392c35322c34382c39382c35332c39392c35322c35322c3130312c35332c3130322c35372c35322c3130312c3130302c39372c3130322c34392c35352c34392c35362c39392c35312c35312c35302c3130312c39382c35312c39372c35332c35352c35342c3130312c3130302c35332c35372c35362c35352c3130302c35332c3130322c3130322c35322c35332c3130322c35302c35302c3130322c35332c35362c34395d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 }, - "8d03b5024fa5067d08678883bc347be80f2d631f6d594200cc31e1d7548ca87d": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "2a2501bd8d9b70e28af0eec7fde926624a91548a76ac1a13bd19ac852c58949c": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "8d03b5024fa5067d08678883bc347be80f2d631f6d594200cc31e1d7548ca87d" + "2a2501bd8d9b70e28af0eec7fde926624a91548a76ac1a13bd19ac852c58949c" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b342c7b2268617368223a5b3131322c3135322c3136342c32372c3234312c3133322c3135362c32312c32392c3135302c3233382c3136372c32312c382c3131362c35372c36392c3138372c39332c3134342c3233392c342c3138372c3131312c38352c3234342c39382c3130372c3233332c3130302c3234332c3232345d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3131322c39312c3230322c3231342c36322c35362c322c3134352c3132382c3132342c3235322c33392c37372c38382c3136382c38302c3137312c3130392c3231332c3234342c3133322c3135392c3138302c32332c31352c3234352c38342c3233352c3132312c38352c3130332c3136375d7d2c7b2268617368223a5b3235352c36382c3231312c3234312c3232332c31332c3135392c36382c36342c3232372c37372c3232352c37332c31382c3135322c3231392c37332c35342c3131342c3231352c3234382c37392c37372c3139342c3134322c31302c3130312c3133322c3133312c3131392c3232352c3139395d7d2c7b2268617368223a5b37372c3235322c31352c3232352c3230312c35312c362c3132352c3134342c37352c3137312c3230302c3234352c3135332c3232312c34342c35372c3231312c35302c35312c35372c36372c3137392c38392c34332c39342c3235332c3139372c3138362c31312c3132382c3134395d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3337352c22656e64223a3339307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35362c3130302c34382c35312c39382c35332c34382c35302c35322c3130322c39372c35332c34382c35342c35352c3130302c34382c35362c35342c35352c35362c35362c35362c35312c39382c39392c35312c35322c35352c39382c3130312c35362c34382c3130322c35302c3130302c35342c35312c34392c3130322c35342c3130302c35332c35372c35322c35302c34382c34382c39392c39392c35312c34392c3130312c34392c3130302c35352c35332c35322c35362c39392c39372c35362c35352c3130305d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35362c3130302c34382c35312c39382c35332c34382c35302c35322c3130322c39372c35332c34382c35342c35352c3130302c34382c35362c35342c35352c35362c35362c35362c35312c39382c39392c35312c35322c35352c39382c3130312c35362c34382c3130322c35302c3130302c35342c35312c34392c3130322c35342c3130302c35332c35372c35322c35302c34382c34382c39392c39392c35312c34392c3130312c34392c3130302c35352c35332c35322c35362c39392c39372c35362c35352c3130305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b38392c3232372c3138372c3133302c3234392c36302c3230372c3138372c31382c36352c3230302c3139322c31382c34332c3231342c3132362c3131312c3231312c3234352c38362c3234342c3235302c3232322c39302c3132322c34312c36352c36392c35352c3134372c3234392c39395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3131392c36392c3133312c39372c3134392c3135342c3231322c31342c33362c3137392c3139322c3133302c3232352c34372c3139312c32302c3232392c3135312c35372c3138382c332c36362c3138352c3135372c34312c3232362c3130322c3138372c3137342c34322c3234392c3135315d7d2c7b2268617368223a5b37362c3133372c3134372c3231332c3139302c34332c3132332c35322c3131392c3134322c3134362c38312c3232312c3134382c3137332c3231352c38392c3137342c3133372c3136312c36342c3135382c3230342c39302c38362c31392c3136392c3234322c3232322c3231312c3235332c3233375d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3136352c22656e64223a3138307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35302c39372c35302c35332c34382c34392c39382c3130302c35362c3130302c35372c39382c35352c34382c3130312c35302c35362c39372c3130322c34382c3130312c3130312c39392c35352c3130322c3130302c3130312c35372c35302c35342c35342c35302c35322c39372c35372c34392c35332c35322c35362c39372c35352c35342c39372c39392c34392c39372c34392c35312c39382c3130302c34392c35372c39372c39392c35362c35332c35302c39392c35332c35362c35372c35322c35372c39395d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35302c39372c35302c35332c34382c34392c39382c3130302c35362c3130302c35372c39382c35352c34382c3130312c35302c35362c39372c3130322c34382c3130312c3130312c39392c35352c3130322c3130302c3130312c35372c35302c35342c35342c35302c35322c39372c35372c34392c35332c35322c35362c39372c35352c35342c39372c39392c34392c39372c34392c35312c39382c3130302c34392c35372c39372c39392c35362c35332c35302c39392c35332c35362c35372c35322c35372c39395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 }, - "96d3a2e7d35feaa2314fb31470791801fe35a05b44dfd2386ec609e36d6da22f": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "2b35845f3c64d140b5c44e5f94edaf1718c332eb3a576ed5987d5ff45f22f581": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "96d3a2e7d35feaa2314fb31470791801fe35a05b44dfd2386ec609e36d6da22f" + "2b35845f3c64d140b5c44e5f94edaf1718c332eb3a576ed5987d5ff45f22f581" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b31302c7b2268617368223a5b3134382c3139312c3134392c32302c3230362c31372c3231332c33362c3139322c3233332c3130382c35332c3232342c3133392c33382c3233382c3230392c3138382c32392c3135392c3234332c3232332c3132312c3133382c38352c31312c3230362c3137352c302c34302c3230342c34305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3235342c34392c3139312c36332c33322c38342c3138372c3230392c35382c342c3138312c3139322c3234332c3133322c3138312c3139312c33332c3139362c37302c33382c3137352c3131362c39392c3134322c35392c3138372c35322c382c3234312c3139312c3133352c31325d7d2c7b2268617368223a5b3230392c3132362c3134362c3130342c3138382c3230322c3231372c3139322c3135352c3130342c3235332c3230392c36322c39382c36342c3132392c3230342c32332c3137332c31392c3134372c3232352c3137382c3135372c3137312c3135392c3235342c3135372c3234322c3132372c33352c3232355d7d2c7b2268617368223a5b3233352c31302c3233372c3138392c36322c3234312c3234362c3138312c3231352c39332c3138362c3137392c3136322c38322c3230392c3231352c3233312c3230332c31332c3232372c3134362c3130382c312c3134342c3134322c3235342c37342c3231372c3233302c3138382c3134392c3233325d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3532352c22656e64223a3534307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3134362c3132372c322c3131352c3233382c3130302c31312c3138382c3134332c3136342c35362c3135322c3134372c3134322c39302c3135382c35312c3234392c35382c3131352c3137392c3133322c3132362c31342c3137312c34302c3138392c3136312c33392c352c3137342c35335d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35372c35342c3130302c35312c39372c35302c3130312c35352c3130302c35312c35332c3130322c3130312c39372c39372c35302c35312c34392c35322c3130322c39382c35312c34392c35322c35352c34382c35352c35372c34392c35362c34382c34392c3130322c3130312c35312c35332c39372c34382c35332c39382c35322c35322c3130302c3130322c3130302c35302c35312c35362c35342c3130312c39392c35342c34382c35372c3130312c35312c35342c3130302c35342c3130302c39372c35302c35302c3130325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b39382c39392c35362c39392c39382c35312c39372c35372c39392c3130312c3130302c35342c35352c3130302c35352c3130322c39392c35312c35352c35352c35332c34382c35372c35372c35302c39372c35302c34392c3130322c35312c39382c35332c35312c35332c34392c39392c35312c39392c35352c35372c35352c39392c35322c35362c35372c35352c3130312c3130312c3130322c39382c35352c3130322c35372c3130322c35332c34382c3130302c35372c35362c3130312c3130312c39382c3130322c35375d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b382c7b2268617368223a5b3230332c3231342c3136382c38312c31372c3135392c31392c3131302c3232322c3137372c3234382c3231322c3136332c3235332c3137332c3230372c3130372c3130342c3135302c3231322c3233312c39352c3131302c3132312c39372c3138372c32312c3133362c3135322c3231362c3138372c32325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3133302c3230322c3138322c35302c3233362c3137362c38392c382c3232332c38382c38392c3135372c3231362c3231322c3233382c352c3136382c3131312c34312c3138362c3135332c37372c382c3235342c36332c3130332c3133382c3138352c33342c3132382c3233342c34305d7d2c7b2268617368223a5b39362c3133372c39372c3232342c31322c3231322c3138342c3233352c38342c3139372c36332c3233312c32352c3133342c3133312c3139392c3230352c3130312c35392c37352c3139352c36342c3231382c36332c3137382c3137362c35392c31352c3130382c3231382c31392c39395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3433352c22656e64223a3435307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34372c3233332c33332c38312c3233312c3130362c3134332c3232372c35312c31332c36322c3131342c3234362c31312c31382c34392c39362c3230312c3137332c3231352c3230382c3230352c31372c36372c3137392c35372c3138362c31362c35372c3233312c3132312c3136315d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35302c39382c35312c35332c35362c35322c35332c3130322c35312c39392c35342c35322c3130302c34392c35322c34382c39382c35332c39392c35322c35322c3130312c35332c3130322c35372c35322c3130312c3130302c39372c3130322c34392c35352c34392c35362c39392c35312c35312c35302c3130312c39382c35312c39372c35332c35352c35342c3130312c3130302c35332c35372c35362c35352c3130302c35332c3130322c3130322c35322c35332c3130322c35302c35302c3130322c35332c35362c34395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b34382c3130312c34392c3130312c3130312c35322c34392c3130302c35372c39392c34392c35312c39372c3130312c35322c35372c34392c35352c35332c35362c35342c39392c35332c35332c3130322c35342c35332c35312c39382c3130322c35302c3130312c35312c35352c3130322c35342c35302c39392c39392c3130312c35302c34382c35302c35362c35322c35312c3130312c34392c35342c3130322c35302c34382c34392c35362c35322c34382c35372c39382c34392c39372c35362c35322c34392c34385d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 }, - "b0dc311e1c9e5d1fc25e9e3d0816e48d8b8e1edff5d8573258ecf46d45dc2d21": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "30a954c93e13561b9c39325165eaec98debc01bdc0961033c35076baa9e08f41": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "b0dc311e1c9e5d1fc25e9e3d0816e48d8b8e1edff5d8573258ecf46d45dc2d21" + "30a954c93e13561b9c39325165eaec98debc01bdc0961033c35076baa9e08f41" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b332c7b2268617368223a5b3131322c39312c3230322c3231342c36322c35362c322c3134352c3132382c3132342c3235322c33392c37372c38382c3136382c38302c3137312c3130392c3231332c3234342c3133322c3135392c3138302c32332c31352c3234352c38342c3233352c3132312c38352c3130332c3136375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3131322c3135322c3136342c32372c3234312c3133322c3135362c32312c32392c3135302c3233382c3136372c32312c382c3131362c35372c36392c3138372c39332c3134342c3233392c342c3138372c3131312c38352c3234342c39382c3130372c3233332c3130302c3234332c3232345d7d2c7b2268617368223a5b3235352c36382c3231312c3234312c3232332c31332c3135392c36382c36342c3232372c37372c3232352c37332c31382c3135322c3231392c37332c35342c3131342c3231352c3234382c37392c37372c3139342c3134322c31302c3130312c3133322c3133312c3131392c3232352c3139395d7d2c7b2268617368223a5b37372c3235322c31352c3232352c3230312c35312c362c3132352c3134342c37352c3137312c3230302c3234352c3135332c3232312c34342c35372c3231312c35302c35312c35372c36372c3137392c38392c34332c39342c3235332c3139372c3138362c31312c3132382c3134395d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3336302c22656e64223a3337357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b39382c34382c3130302c39392c35312c34392c34392c3130312c34392c39392c35372c3130312c35332c3130302c34392c3130322c39392c35302c35332c3130312c35372c3130312c35312c3130302c34382c35362c34392c35342c3130312c35322c35362c3130302c35362c39382c35362c3130312c34392c3130312c3130302c3130322c3130322c35332c3130302c35362c35332c35352c35312c35302c35332c35362c3130312c39392c3130322c35322c35342c3130302c35322c35332c3130302c39392c35302c3130302c35302c34395d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b39382c34382c3130302c39392c35312c34392c34392c3130312c34392c39392c35372c3130312c35332c3130302c34392c3130322c39392c35302c35332c3130312c35372c3130312c35312c3130302c34382c35362c34392c35342c3130312c35322c35362c3130302c35362c39382c35362c3130312c34392c3130312c3130302c3130322c3130322c35332c3130302c35362c35332c35352c35312c35302c35332c35362c3130312c39392c3130322c35322c35342c3130302c35322c35332c3130302c39392c35302c3130302c35302c34395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b31312c7b2268617368223a5b33322c3234322c33302c342c3136322c34312c31302c3234372c3132392c3131372c31312c3235302c3230372c32352c35362c3235302c37312c39352c33332c38372c3134342c3135382c35322c3234302c3138302c3234372c3134352c37352c3230392c3234332c38342c3133325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3132332c31312c3136342c342c3230362c35342c34382c3232392c3131342c3230392c33352c3132382c3130382c39312c3130322c3231372c3234352c38362c34312c33342c3131302c3230382c37382c32372c38312c3139362c38312c3135302c3234322c3235302c35392c3232365d7d2c7b2268617368223a5b3234392c33342c32342c3234352c32382c33342c382c32372c3133392c3232322c3137342c3132342c3232322c3134382c3134382c38392c34302c36302c3131392c3234332c35382c3133352c32352c3233342c3230362c3132312c3233302c32392c3231392c3138312c3130322c395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3531302c22656e64223a3532357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130392c3133382c31362c3133302c31392c35322c32312c38332c3135342c38382c3138362c37392c3231352c3234312c39372c3231332c3135332c36302c37352c3137392c37362c34392c3233392c31322c3235312c3230342c35332c3231322c3233362c32342c3233362c3132315d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b35312c34382c39372c35372c35332c35322c39392c35372c35312c3130312c34392c35312c35332c35342c34392c39382c35372c39392c35312c35372c35312c35302c35332c34392c35342c35332c3130312c39372c3130312c39392c35372c35362c3130302c3130312c39382c39392c34382c34392c39382c3130302c39392c34382c35372c35342c34392c34382c35312c35312c39392c35312c35332c34382c35352c35342c39382c39372c39372c35372c3130312c34382c35362c3130322c35322c34395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b34382c35302c39382c39392c35312c3130302c35342c35302c35332c3130312c3130312c39392c35352c3130302c3130312c35372c35352c35342c35342c34382c35332c35342c35352c39372c34392c35342c39372c35332c34382c34382c34392c34392c34382c35312c39382c34392c34392c35362c39382c35332c35302c39372c35352c34392c39382c35342c35312c34392c34382c3130312c35372c35302c39372c35322c39392c39392c35362c35312c35362c34392c35372c35322c35322c35325d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 }, - "bc8cb3a9ced67d7fc37750992a21f3b5351c3c797c4897eefb7f9f50d98eebf9": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "393f8739c8e7805f528045096c16095fbb3e60301fee9c268aca72396e4dd6e2": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "bc8cb3a9ced67d7fc37750992a21f3b5351c3c797c4897eefb7f9f50d98eebf9" + "393f8739c8e7805f528045096c16095fbb3e60301fee9c268aca72396e4dd6e2" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b31302c7b2268617368223a5b3134382c3139312c3134392c32302c3230362c31372c3231332c33362c3139322c3233332c3130382c35332c3232342c3133392c33382c3233382c3230392c3138382c32392c3135392c3234332c3232332c3132312c3133382c38352c31312c3230362c3137352c302c34302c3230342c34305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3235342c34392c3139312c36332c33322c38342c3138372c3230392c35382c342c3138312c3139322c3234332c3133322c3138312c3139312c33332c3139362c37302c33382c3137352c3131362c39392c3134322c35392c3138372c35322c382c3234312c3139312c3133352c31325d7d2c7b2268617368223a5b3230392c3132362c3134362c3130342c3138382c3230322c3231372c3139322c3135352c3130342c3235332c3230392c36322c39382c36342c3132392c3230342c32332c3137332c31392c3134372c3232352c3137382c3135372c3137312c3135392c3235342c3135372c3234322c3132372c33352c3232355d7d2c7b2268617368223a5b3233352c31302c3233372c3138392c36322c3234312c3234362c3138312c3231352c39332c3138362c3137392c3136322c38322c3230392c3231352c3233312c3230332c31332c3232372c3134362c3130382c312c3134342c3134322c3235342c37342c3231372c3233302c3138382c3134392c3233325d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3532352c22656e64223a3534307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3134362c3132372c322c3131352c3233382c3130302c31312c3138382c3134332c3136342c35362c3135322c3134372c3134322c39302c3135382c35312c3234392c35382c3131352c3137392c3133322c3132362c31342c3137312c34302c3138392c3136312c33392c352c3137342c35335d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b39382c39392c35362c39392c39382c35312c39372c35372c39392c3130312c3130302c35342c35352c3130302c35352c3130322c39392c35312c35352c35352c35332c34382c35372c35372c35302c39372c35302c34392c3130322c35312c39382c35332c35312c35332c34392c39392c35312c39392c35352c35372c35352c39392c35322c35362c35372c35352c3130312c3130312c3130322c39382c35352c3130322c35372c3130322c35332c34382c3130302c35372c35362c3130312c3130312c39382c3130322c35375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b35372c35342c3130302c35312c39372c35302c3130312c35352c3130302c35312c35332c3130322c3130312c39372c39372c35302c35312c34392c35322c3130322c39382c35312c34392c35322c35352c34382c35352c35372c34392c35362c34382c34392c3130322c3130312c35312c35332c39372c34382c35332c39382c35322c35322c3130302c3130322c3130302c35302c35312c35362c35342c3130312c39392c35342c34382c35372c3130312c35312c35342c3130302c35342c3130302c39372c35302c35302c3130325d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b332c7b2268617368223a5b37322c322c3232332c32382c3133382c3232362c39392c31322c3134302c3139352c3138342c322c3235312c382c35332c33332c32322c3135322c3138322c33382c3139372c3134302c31392c3230372c3130322c3132332c3136352c3137372c3235302c36382c35322c31355d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3138332c3132302c3235322c3234302c3134322c34392c34322c3234332c3133332c3232302c3233302c37332c3134322c31322c3137322c32332c34302c3235352c3134362c31362c32312c3233322c35372c3139352c3138332c3230302c3136372c32342c3130332c32342c36342c3135345d7d2c7b2268617368223a5b3135372c34312c38342c3136382c3138342c35392c39382c3231352c3130322c3231302c3230332c31312c38372c3133392c3132352c32332c3133382c3233342c3139352c3233332c39352c312c36352c38312c32382c3133362c3234372c32332c38312c3230312c39302c37345d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3336302c22656e64223a3337357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3233372c3139352c38342c3133332c3137372c3136342c38312c3230392c39372c32312c32382c37372c392c39362c31382c3233332c3231392c39302c3234352c3232382c3139372c31302c39322c35312c37392c3133382c3133342c35392c3136372c39332c3135312c33365d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b35312c35372c35312c3130322c35362c35352c35312c35372c39392c35362c3130312c35352c35362c34382c35332c3130322c35332c35302c35362c34382c35322c35332c34382c35372c35342c39392c34392c35342c34382c35372c35332c3130322c39382c39382c35312c3130312c35342c34382c35312c34382c34392c3130322c3130312c3130312c35372c39392c35302c35342c35362c39372c39392c39372c35352c35302c35312c35372c35342c3130312c35322c3130302c3130302c35342c3130312c35305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3130312c34392c35362c3130312c35332c34392c3130322c35302c3130322c35342c35352c39392c34382c34392c3130322c3130322c39382c39372c39382c35372c35352c35372c35362c39392c34392c34392c3130302c39372c35342c35342c35352c35322c39372c39382c35312c3130322c39382c35372c35322c35312c34382c3130302c35342c35342c3130322c34382c35302c39382c35352c34392c35332c35302c35372c34382c39382c35302c39382c35332c35312c35352c34382c35362c35342c35355d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 }, - "d334ea44e3b66d97f54a7b8bdda6992d120ebd36cb1cffffbd4f19a115aa3122": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "7b3997266f549638cf86a1aa4db9e4b486a83c7b40dab84d05e0a010c732705d": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "d334ea44e3b66d97f54a7b8bdda6992d120ebd36cb1cffffbd4f19a115aa3122" + "7b3997266f549638cf86a1aa4db9e4b486a83c7b40dab84d05e0a010c732705d" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b382c7b2268617368223a5b3234312c3134302c3235322c37342c36362c34322c3232362c3230332c3230302c3139352c34342c3233342c34342c32302c3138362c3133392c31322c3233322c39392c38372c382c3136342c3131392c38392c3131392c39302c3138302c3233362c3131362c35312c37312c32375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3133342c3132392c3235312c34332c3135332c3233392c3136372c3232372c3137392c32322c33332c3131322c3131312c32362c3231352c34302c31362c3133302c35392c3231382c33342c36302c3233322c3137372c36332c31362c37392c372c3131312c3135352c3131392c3136355d7d2c7b2268617368223a5b34342c3139322c35382c392c3135332c34382c3136342c3130362c33332c3234312c37342c31382c3131352c3234372c3130382c36332c35352c3135312c38362c3233342c3234382c37302c3136342c3131342c3131332c3135382c3233372c37372c3137302c38352c38342c3230315d7d2c7b2268617368223a5b3233352c31302c3233372c3138392c36322c3234312c3234362c3138312c3231352c39332c3138362c3137392c3136322c38322c3230392c3231352c3233312c3230332c31332c3232372c3134362c3130382c312c3134342c3134322c3235342c37342c3231372c3233302c3138382c3134392c3233325d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3435302c22656e64223a3436357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3230392c3133322c3134382c3234392c3134332c302c37332c3136322c3139342c3134362c3138312c3135372c3233382c3234362c3135312c32362c34332c3139332c3138382c3136352c32332c3134382c35382c3130372c31382c3234392c3134302c3137372c37332c34332c3233352c3131335d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130302c35312c35312c35322c3130312c39372c35322c35322c3130312c35312c39382c35342c35342c3130302c35372c35352c3130322c35332c35322c39372c35352c39382c35362c39382c3130302c3130302c39372c35342c35372c35372c35302c3130302c34392c35302c34382c3130312c39382c3130302c35312c35342c39392c39382c34392c39392c3130322c3130322c3130322c3130322c39382c3130302c35322c3130322c34392c35372c39372c34392c34392c35332c39372c39372c35312c34392c35302c35305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3130322c35362c35352c35362c34382c34392c39392c35332c35352c35362c35362c35302c35372c3130312c35332c35302c39382c3130322c39392c3130302c39392c35322c39382c35322c39382c35332c35322c34392c35362c39382c35312c35372c34392c3130312c39392c35332c3130302c39382c35302c39372c3130322c3130302c39382c35312c35302c39392c35352c39382c35372c39382c35352c39382c3130302c35362c35322c39382c39372c39392c34382c3130302c3130312c35342c39382c35375d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b372c7b2268617368223a5b3133302c3230322c3138322c35302c3233362c3137362c38392c382c3232332c38382c38392c3135372c3231362c3231322c3233382c352c3136382c3131312c34312c3138362c3135332c37372c382c3235342c36332c3130332c3133382c3138352c33342c3132382c3233342c34305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3230332c3231342c3136382c38312c31372c3135392c31392c3131302c3232322c3137372c3234382c3231322c3136332c3235332c3137332c3230372c3130372c3130342c3135302c3231322c3233312c39352c3131302c3132312c39372c3138372c32312c3133362c3135322c3231362c3138372c32325d7d2c7b2268617368223a5b39362c3133372c39372c3232342c31322c3231322c3138342c3233352c38342c3139372c36332c3233312c32352c3133342c3133312c3139392c3230352c3130312c35392c37352c3139352c36342c3231382c36332c3137382c3137362c35392c31352c3130382c3231382c31392c39395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3432302c22656e64223a3433357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35352c39382c35312c35372c35372c35352c35302c35342c35342c3130322c35332c35322c35372c35342c35312c35362c39392c3130322c35362c35342c39372c34392c39372c39372c35322c3130302c39382c35372c3130312c35322c39382c35322c35362c35342c39372c35362c35312c39392c35352c39382c35322c34382c3130302c39372c39382c35362c35322c3130302c34382c35332c3130312c34382c39372c34382c34392c34382c39392c35352c35312c35302c35352c34382c35332c3130305d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35352c39382c35312c35372c35372c35352c35302c35342c35342c3130322c35332c35322c35372c35342c35312c35362c39392c3130322c35362c35342c39372c34392c39372c39372c35322c3130302c39382c35372c3130312c35322c39382c35322c35362c35342c39372c35362c35312c39392c35352c39382c35322c34382c3130302c39372c39382c35362c35322c3130302c34382c35332c3130312c34382c39372c34382c34392c34382c39392c35352c35312c35302c35352c34382c35332c3130305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 }, - "f07847a9c8421b8fcd095d8df8fd65f47e2b50ca0c9242072006cba1093b23a8": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "e18e51f2f67c01ffbab9798c11da6674ab3fb9430d66f02b715290b2b5370867": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "f07847a9c8421b8fcd095d8df8fd65f47e2b50ca0c9242072006cba1093b23a8" + "e18e51f2f67c01ffbab9798c11da6674ab3fb9430d66f02b715290b2b5370867" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b37392c3136392c36302c33322c35302c34302c31372c3136302c37302c3138362c3234322c3233362c3133322c3135322c3234342c3137382c39332c31382c3233372c3132342c36332c3133372c3139372c34352c33342c3136322c3235302c34332c392c3130322c39392c34395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b34302c3134392c31332c34362c3232362c36352c3135392c37372c37362c3132312c39372c3232372c33382c302c3231322c3135362c3136322c342c3131342c3235352c3234392c36372c3138322c3233352c3134382c3135392c32312c332c3233372c3136392c342c3233345d7d2c7b2268617368223a5b33352c3230322c33362c3132312c3136302c3133382c3139352c33352c3131382c3136382c3130312c36312c38352c3235312c3138342c36362c38362c3230382c3235312c3136372c3138332c3231302c3139372c3136322c31302c35352c3135342c3135392c3132302c3231392c3131372c3131305d7d2c7b2268617368223a5b37372c3235322c31352c3232352c3230312c35312c362c3132352c3134342c37352c3137312c3230302c3234352c3135332c3232312c34342c35372c3231312c35302c35312c35372c36372c3137392c38392c34332c39342c3235332c3139372c3138362c31312c3132382c3134395d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3136352c22656e64223a3138307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130322c34382c35352c35362c35322c35352c39372c35372c39392c35362c35322c35302c34392c39382c35362c3130322c39392c3130302c34382c35372c35332c3130302c35362c3130302c3130322c35362c3130322c3130302c35342c35332c3130322c35322c35352c3130312c35302c39382c35332c34382c39392c39372c34382c39392c35372c35302c35322c35302c34382c35352c35302c34382c34382c35342c39392c39382c39372c34392c34382c35372c35312c39382c35302c35312c39372c35365d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130322c34382c35352c35362c35322c35352c39372c35372c39392c35362c35322c35302c34392c39382c35362c3130322c39392c3130302c34382c35372c35332c3130302c35362c3130302c3130322c35362c3130322c3130302c35342c35332c3130322c35322c35352c3130312c35302c39382c35332c34382c39392c39372c34382c39392c35372c35302c35322c35302c34382c35352c35302c34382c34382c35342c39392c39382c39372c34392c34382c35372c35312c39382c35302c35312c39372c35365d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b332c7b2268617368223a5b37322c322c3232332c32382c3133382c3232362c39392c31322c3134302c3139352c3138342c322c3235312c382c35332c33332c32322c3135322c3138322c33382c3139372c3134302c31392c3230372c3130322c3132332c3136352c3137372c3235302c36382c35322c31355d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3138332c3132302c3235322c3234302c3134322c34392c34322c3234332c3133332c3232302c3233302c37332c3134322c31322c3137322c32332c34302c3235352c3134362c31362c32312c3233322c35372c3139352c3138332c3230302c3136372c32342c3130332c32342c36342c3135345d7d2c7b2268617368223a5b3135372c34312c38342c3136382c3138342c35392c39382c3231352c3130322c3231302c3230332c31312c38372c3133392c3132352c32332c3133382c3233342c3139352c3233332c39352c312c36352c38312c32382c3133362c3234372c32332c38312c3230312c39302c37345d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3336302c22656e64223a3337357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3233372c3139352c38342c3133332c3137372c3136342c38312c3230392c39372c32312c32382c37372c392c39362c31382c3233332c3231392c39302c3234352c3232382c3139372c31302c39322c35312c37392c3133382c3133342c35392c3136372c39332c3135312c33365d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130312c34392c35362c3130312c35332c34392c3130322c35302c3130322c35342c35352c39392c34382c34392c3130322c3130322c39382c39372c39382c35372c35352c35372c35362c39392c34392c34392c3130302c39372c35342c35342c35352c35322c39372c39382c35312c3130322c39382c35372c35322c35312c34382c3130302c35342c35342c3130322c34382c35302c39382c35352c34392c35332c35302c35372c34382c39382c35302c39382c35332c35312c35352c34382c35362c35342c35355d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b35312c35372c35312c3130322c35362c35352c35312c35372c39392c35362c3130312c35352c35362c34382c35332c3130322c35332c35302c35362c34382c35322c35332c34382c35372c35342c39392c34392c35342c34382c35372c35332c3130322c39382c39382c35312c3130312c35342c34382c35312c34382c34392c3130322c3130312c3130312c35372c39392c35302c35342c35362c39372c39392c39372c35352c35302c35312c35372c35342c3130312c35322c3130302c3130302c35342c3130312c35305d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 }, - "f87801c578829e52bfcdc4b4b5418b391ec5db2afdb32c7b9b7bd84bac0de6b9": { - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", + "ed707b474d34e7995997f22afedec5daee87d4589318ccf76111d4358bd6c369": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", "certified_transactions": [ { "transactions_hashes": [ - "f87801c578829e52bfcdc4b4b5418b391ec5db2afdb32c7b9b7bd84bac0de6b9" + "ed707b474d34e7995997f22afedec5daee87d4589318ccf76111d4358bd6c369" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3133332c3234302c322c36342c3136362c3137322c3234312c35332c34352c31392c3233332c3235342c3133342c342c39382c3231322c3235302c3232312c38342c3233342c33312c31322c3137372c3131392c3133312c3137322c31372c33302c3139342c33322c3133362c33365d7d2c22696e6e65725f6c6561766573223a5b5b382c7b2268617368223a5b3234312c3134302c3235322c37342c36362c34322c3232362c3230332c3230302c3139352c34342c3233342c34342c32302c3138362c3133392c31322c3233322c39392c38372c382c3136342c3131392c38392c3131392c39302c3138302c3233362c3131362c35312c37312c32375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3133342c3132392c3235312c34332c3135332c3233392c3136372c3232372c3137392c32322c33332c3131322c3131312c32362c3231352c34302c31362c3133302c35392c3231382c33342c36302c3233322c3137372c36332c31362c37392c372c3131312c3135352c3131392c3136355d7d2c7b2268617368223a5b34342c3139322c35382c392c3135332c34382c3136342c3130362c33332c3234312c37342c31382c3131352c3234372c3130382c36332c35352c3135312c38362c3233342c3234382c37302c3136342c3131342c3131332c3135382c3233372c37372c3137302c38352c38342c3230315d7d2c7b2268617368223a5b3233352c31302c3233372c3138392c36322c3234312c3234362c3138312c3231352c39332c3138362c3137392c3136322c38322c3230392c3231352c3233312c3230332c31332c3232372c3134362c3130382c312c3134342c3134322c3235342c37342c3231372c3233302c3138382c3134392c3233325d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3435302c22656e64223a3436357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3230392c3133322c3134382c3234392c3134332c302c37332c3136322c3139342c3134362c3138312c3135372c3233382c3234362c3135312c32362c34332c3139332c3138382c3136352c32332c3134382c35382c3130372c31382c3234392c3134302c3137372c37332c34332c3233352c3131335d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b3130322c35362c35352c35362c34382c34392c39392c35332c35352c35362c35362c35302c35372c3130312c35332c35302c39382c3130322c39392c3130302c39392c35322c39382c35322c39382c35332c35322c34392c35362c39382c35312c35372c34392c3130312c39392c35332c3130302c39382c35302c39372c3130322c3130302c39382c35312c35302c39392c35352c39382c35372c39382c35352c39382c3130302c35362c35322c39382c39372c39392c34382c3130302c3130312c35342c39382c35375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3130302c35312c35312c35322c3130312c39372c35322c35322c3130312c35312c39382c35342c35342c3130302c35372c35352c3130322c35332c35322c39372c35352c39382c35362c39382c3130302c3130302c39372c35342c35372c35372c35302c3130302c34392c35302c34382c3130312c39382c3130302c35312c35342c39392c39382c34392c39392c3130322c3130322c3130322c3130322c39382c3130302c35322c3130322c34392c35372c39372c34392c34392c35332c39372c39372c35312c34392c35302c35305d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b31302c7b2268617368223a5b3132332c31312c3136342c342c3230362c35342c34382c3232392c3131342c3230392c33352c3132382c3130382c39312c3130322c3231372c3234352c38362c34312c33342c3131302c3230382c37382c32372c38312c3139362c38312c3135302c3234322c3235302c35392c3232365d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b33322c3234322c33302c342c3136322c34312c31302c3234372c3132392c3131372c31312c3235302c3230372c32352c35362c3235302c37312c39352c33332c38372c3134342c3135382c35322c3234302c3138302c3234372c3134352c37352c3230392c3234332c38342c3133325d7d2c7b2268617368223a5b3234392c33342c32342c3234352c32382c33342c382c32372c3133392c3232322c3137342c3132342c3232322c3134382c3134382c38392c34302c36302c3131392c3234332c35382c3133352c32352c3233342c3230362c3132312c3233302c32392c3231392c3138312c3130322c395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3439352c22656e64223a3531307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130312c3130302c35352c34382c35352c39382c35322c35352c35322c3130302c35312c35322c3130312c35352c35372c35372c35332c35372c35372c35352c3130322c35302c35302c39372c3130322c3130312c3130302c3130312c39392c35332c3130302c39372c3130312c3130312c35362c35352c3130302c35322c35332c35362c35372c35312c34392c35362c39392c39392c3130322c35352c35342c34392c34392c34392c3130302c35322c35312c35332c35362c39382c3130302c35342c39392c35312c35342c35375d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130312c3130302c35352c34382c35352c39382c35322c35352c35322c3130302c35312c35322c3130312c35352c35372c35372c35332c35372c35372c35352c3130322c35302c35302c39372c3130322c3130312c3130302c3130312c39392c35332c3130302c39372c3130312c3130312c35362c35352c3130302c35322c35332c35362c35372c35312c34392c35362c39392c39392c3130322c35352c35342c34392c34392c34392c3130302c35322c35312c35332c35362c39382c3130302c35342c39392c35312c35342c35375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 779 + "latest_block_number": 1139 + }, + "ee9630fee2081f17f6b53b1c56b72adafd664bb93ec8f050d8059507cfaeb0ec": { + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", + "certified_transactions": [ + { + "transactions_hashes": [ + "ee9630fee2081f17f6b53b1c56b72adafd664bb93ec8f050d8059507cfaeb0ec" + ], + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3131392c36392c3133312c39372c3134392c3135342c3231322c31342c33362c3137392c3139322c3133302c3232352c34372c3139312c32302c3232392c3135312c35372c3138382c332c36362c3138352c3135372c34312c3232362c3130322c3138372c3137342c34322c3234392c3135315d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b38392c3232372c3138372c3133302c3234392c36302c3230372c3138372c31382c36352c3230302c3139322c31382c34332c3231342c3132362c3131312c3231312c3234352c38362c3234342c3235302c3232322c39302c3132322c34312c36352c36392c35352c3134372c3234392c39395d7d2c7b2268617368223a5b37362c3133372c3134372c3231332c3139302c34332c3132332c35322c3131392c3134322c3134362c38312c3232312c3134382c3137332c3231352c38392c3137342c3133372c3136312c36342c3135382c3230342c39302c38362c31392c3136392c3234322c3232322c3231312c3235332c3233375d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3132302c22656e64223a3133357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130312c3130312c35372c35342c35312c34382c3130322c3130312c3130312c35302c34382c35362c34392c3130322c34392c35352c3130322c35342c39382c35332c35312c39382c34392c39392c35332c35342c39382c35352c35302c39372c3130302c39372c3130322c3130302c35342c35342c35322c39382c39382c35372c35312c3130312c39392c35362c3130322c34382c35332c34382c3130302c35362c34382c35332c35372c35332c34382c35352c39392c3130322c39372c3130312c39382c34382c3130312c39395d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130312c3130312c35372c35342c35312c34382c3130322c3130312c3130312c35302c34382c35362c34392c3130322c34392c35352c3130322c35342c39382c35332c35312c39382c34392c39392c35332c35342c39382c35352c35302c39372c3130302c39372c3130322c3130302c35342c35342c35322c39382c39382c35372c35312c3130312c39392c35362c3130322c34382c35332c34382c3130302c35362c34382c35332c35372c35332c34382c35352c39392c3130322c39372c3130312c39382c34382c3130312c39395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + } + ], + "non_certified_transactions": [], + "latest_block_number": 1139 } } 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 c9056e65adf..8b87b64a029 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,146 +1,90 @@ [ { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 22, - "block_number": 779, - "hash": "b70204be975c9c57da3cd8609c842d6a9766e4d8490ebdfd9e312899856fb6b4", - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", - "created_at": "2024-08-08T15:15:22.735357Z" + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "epoch": 32, + "block_number": 1139, + "hash": "5aa3bf60fd7d0069812439e4799fc0727ffa94b55474ad06eb3fad981ee5f856", + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", + "created_at": "2024-09-09T12:58:23.413027945Z" }, { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 21, - "block_number": 749, - "hash": "8c8f36c2537876a05e32fdae1890765520725c811da3cc34688672c29d0c08e2", - "certificate_hash": "7c35f66f5ba83c7208763a29027919aca6ceef1e4c4e93f9eb57b6fffeae646f", - "created_at": "2024-08-08T15:15:20.049273Z" + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "epoch": 29, + "block_number": 1034, + "hash": "2565c712495a20fdf3d3ad31b93a040f0ee317024343e9d114c396f4b5a5ddde", + "certificate_hash": "8aaf2e130cb89d27fb66a7acc38742f13004237d6f629fccd87b6822009e09ad", + "created_at": "2024-09-09T12:58:14.776383092Z" }, { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 21, - "block_number": 734, - "hash": "846f474e36466761ba43bdca0b8327cf5d4138eb9e8d7aa015f0b60b229c349c", - "certificate_hash": "7a38eaf129a96f49f215647632404fbaa8b8e9702635d6c6db04eb27c948fe5f", - "created_at": "2024-08-08T15:15:19.501155Z" - }, - { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", "epoch": 20, - "block_number": 704, - "hash": "8871635118a1a33ae1930305d317e897e0b8eba18c6ec66e7c8fe5788d31df4a", - "certificate_hash": "efceff797292a5eea2f0c8c4e7107515408076c18e82b36c5f617a0354601141", - "created_at": "2024-08-08T15:15:16.924637Z" + "block_number": 719, + "hash": "5253dd86c59eb80e20761264f87c84777f078241c848b440a0e21bc42c80880a", + "certificate_hash": "592effe35e1d28d56f0963824ebded82a32cd36ad25ad1c87e80e08b6271cda2", + "created_at": "2024-09-09T12:57:49.130193448Z" }, { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", "epoch": 19, - "block_number": 674, - "hash": "33bdd10bde75b1a049fba5aa55015aa7d40fb2775ad9b072cf88e4a17eff056d", - "certificate_hash": "c404f18a8d19722c301eb6b682514c509eeca0ebdffcdfa36c0d6518868039e6", - "created_at": "2024-08-08T15:15:14.077684Z" + "block_number": 689, + "hash": "225fce1a43a3afd946d684878556266fdd8bb11a9d174162ea32757319f5b27e", + "certificate_hash": "001f7e3a3599a795a48974c36e4e3ac2d201a7657e213d1514cc3141b2455abc", + "created_at": "2024-09-09T12:57:46.757386248Z" }, { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 18, - "block_number": 644, - "hash": "54b184d6d2985aca5b3e506ca2d19deeb3b2fa0be842b7630a9e2b6b514ac5c4", - "certificate_hash": "3c8fc1119d991e46c5a8b8312e2ce8c2bd4a174399cfaf55cd14cab9f9acd252", - "created_at": "2024-08-08T15:15:11.641279Z" - }, - { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 18, - "block_number": 629, - "hash": "ef87bb514603953b43dce970e17226feae1d30a63d56c9970bdaad5a2cd96121", - "certificate_hash": "e072c98c05fd57aa646a7c0b4c5400ba90409f611cb0e45f3b7213288d7364bb", - "created_at": "2024-08-08T15:15:11.098095Z" - }, - { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", "epoch": 17, "block_number": 614, - "hash": "e50ef602bc2b9cc06ad5dd9b64a854012defd4b07e903bde051110fccd7276ed", - "certificate_hash": "6957ef27c7b846e13f2fd869e314426b22625b313862e7e79657480c535595de", - "created_at": "2024-08-08T15:15:09.337334Z" - }, - { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 17, - "block_number": 599, - "hash": "c1e1f1e94a211ab64b914a68bc876e9a5d254dd262ec8e27b9c76fd261c1f7e1", - "certificate_hash": "d502c0e6532e3d7479f4c146da6ec7e229291c2f72137f32a7e56b8773a77c67", - "created_at": "2024-08-08T15:15:08.664369Z" + "hash": "001e2c169c701061b7ed61b248eb228dfd34d3b4de8ae3fbf469adcc8cb2f3af", + "certificate_hash": "73bdbcc0ec56a912e9d17dae7f5a16945e4715476add3f91bd8b8e834c8de2a0", + "created_at": "2024-09-09T12:57:41.056611894Z" }, { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", "epoch": 16, - "block_number": 569, - "hash": "9275d836c08fe1ab9a5e096738974cc8e32d9bb6aea771750f6daa75a85f7186", - "certificate_hash": "8d7bce4ef2b5e0fb5b11f99fa86963ab2be599f01b6ad5e2d2099fd94afb1df7", - "created_at": "2024-08-08T15:15:05.604226Z" + "block_number": 584, + "hash": "470004765989d274666d1824e3bcc50806f89871bd3fe2ffcd068d04b56bbd17", + "certificate_hash": "bce8b084bb9ea2609d7157a61825f39a5775831b6ee50b763022d5e7e6817dd7", + "created_at": "2024-09-09T12:57:38.332387772Z" }, { - "merkle_root": "a8eae3d98cf1a03297d16be2015988b0a5c6d34c9ea7f839c8509d113fc72bae", - "epoch": 15, - "block_number": 539, - "hash": "6654093ac7a509175fa9fdb2a9c6a9c02faa3d25d8dbe785d05aa9bc7d83cb70", - "certificate_hash": "9a77c220450739d5407216c07197a8a4f9b595ab839a77c9e6ad957fb42cfa40", - "created_at": "2024-08-08T15:15:03.313244Z" - }, - { - "merkle_root": "9e22e89cced74cd2591e8ed6104825fd5370cbb718652dfcef2aad63fe60450b", - "epoch": 15, - "block_number": 524, - "hash": "abd70784a1ffcb3a223fe70a5f73a435aecce14787afe997efca05bcfcefe4e3", - "certificate_hash": "f756070003b579e24443e1a1cf6baa0b63099adf574462346228b42a80df3cc4", - "created_at": "2024-08-08T15:15:02.909419Z" - }, - { - "merkle_root": "9e22e89cced74cd2591e8ed6104825fd5370cbb718652dfcef2aad63fe60450b", + "merkle_root": "e7acbac1470f92188085541fb9e17afa604e82dfb38bcaa9e3464ffb60039d5b", "epoch": 14, "block_number": 509, - "hash": "afa6b747893ee841b04a6047d1bcdd0d38d825f7734708bc72827d6ef4b676c1", - "certificate_hash": "cd83b29841703391e94d89b8bbc910a01c5f1d3f316d3aabcdf9e73105448b36", - "created_at": "2024-08-08T15:15:00.807072Z" + "hash": "578c672520dbe30724816944499fbf1704850b598c7dc6d1fb8daf779172f44b", + "certificate_hash": "4d497747eb6d28eef64caa5cafc8c0b5a4278f96a9d7df459a69f62dd3df7050", + "created_at": "2024-09-09T12:57:32.980011969Z" }, { - "merkle_root": "9e22e89cced74cd2591e8ed6104825fd5370cbb718652dfcef2aad63fe60450b", - "epoch": 14, - "block_number": 494, - "hash": "e5fbd79bc5ca22581b8653a4085fcd5428f127466c571c3c8eb988a4642afe20", - "certificate_hash": "767a58f3d6dd6eb5fcf076b7f9e62db981d85fad3c2b2006413ab637e0626eff", - "created_at": "2024-08-08T15:14:59.869104Z" + "merkle_root": "f63ccc250320ba23e780510a59ab5ca2649a930d7eafde549873e0aca3bc555c", + "epoch": 13, + "block_number": 479, + "hash": "104e48e1e42487cb76a31812da1336a915ca061712e57f868e672c00e876cc27", + "certificate_hash": "39879b67d9c9d966361ef448de460e63249f0845846a5050538a7679c82abc6a", + "created_at": "2024-09-09T12:57:29.858441528Z" }, { - "merkle_root": "9e22e89cced74cd2591e8ed6104825fd5370cbb718652dfcef2aad63fe60450b", + "merkle_root": "f63ccc250320ba23e780510a59ab5ca2649a930d7eafde549873e0aca3bc555c", "epoch": 13, "block_number": 464, - "hash": "50ff491765694a5ba0559249e66b34058871bc8506b23b5b83c31689eed2f3c9", - "certificate_hash": "adc4d5b8e8b6f7288734d23f20ca6aee628768fa08a0a3ed4e809946a7a3a5b0", - "created_at": "2024-08-08T15:14:57.204943Z" + "hash": "d5f79aeacc43ae45d5e086044d0be4047ace38a6983ad433c6e61392f7e42f83", + "certificate_hash": "d27713d73cfbc13241fcd6bbdcaa466f17ee762b5e373cb1abf7ee2331860358", + "created_at": "2024-09-09T12:57:29.451805466Z" }, { - "merkle_root": "eb0aedbd3ef1f6b5d75dbab3a252d1d7e7cb0de3926c01908efe4ad9e6bc95e8", + "merkle_root": "78acfdd3cc14eae0be6b7a2af4f276455a87695080158df4bc97b7b0705e462c", "epoch": 12, "block_number": 434, - "hash": "51f5adcecddebc109548fa2b907374c20533dff9a64076097565a9f3dc227ae3", - "certificate_hash": "de62f925c2ff1aaa8fdf936ccf9006ac1539ecd78f2f11145d2c561361f10d92", - "created_at": "2024-08-08T15:14:54.963710Z" + "hash": "73fac87b931a4b3fd7b1e47ae63a836acc080d1fde6dc16e1cd831e8bd63b0e9", + "certificate_hash": "6c5dd3ae74170d581c083b0f819df48de84284e2d7d6d912b0c0455c29286ab6", + "created_at": "2024-09-09T12:57:26.720151149Z" }, { - "merkle_root": "eb0aedbd3ef1f6b5d75dbab3a252d1d7e7cb0de3926c01908efe4ad9e6bc95e8", + "merkle_root": "6fb22bf276b917de711d037ac2b449585507ec1b5bec31dd1ea9c5292896ea7c", "epoch": 11, "block_number": 404, - "hash": "ab4c48ab2468978f975808ac7c4cf011d813005abf3161f08ed8dbb61f90fc9d", - "certificate_hash": "1691514a0ce0535a52b3b66ba6de792f90b0d85a18dbc54ca94f7454af8c7f39", - "created_at": "2024-08-08T15:14:52.569097Z" - }, - { - "merkle_root": "eb0aedbd3ef1f6b5d75dbab3a252d1d7e7cb0de3926c01908efe4ad9e6bc95e8", - "epoch": 11, - "block_number": 389, - "hash": "ec2e2e55c89718ff2ae1943d9ab20141a7108d44a61ba04d08cab8ce0a18b04a", - "certificate_hash": "5e32c1ecf36460db008ee4e987c2c89f5ae5e2bd54a80c3ee76631c6f37f1450", - "created_at": "2024-08-08T15:14:51.642902Z" + "hash": "c80d9fd14913544fbb3f7c9fa7bd435c219a27c6ef4b41c7e3110afdcd483ea0", + "certificate_hash": "1da3885e3c022c9075bcaf2bd64f2abcbf10e159aec4cd3a219561d2830f1ecc", + "created_at": "2024-09-09T12:57:24.112169735Z" } ] 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 2d6a02bb25b..b82c2752929 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,146 +1,90 @@ { - "33bdd10bde75b1a049fba5aa55015aa7d40fb2775ad9b072cf88e4a17eff056d": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 19, - "block_number": 674, - "hash": "33bdd10bde75b1a049fba5aa55015aa7d40fb2775ad9b072cf88e4a17eff056d", - "certificate_hash": "c404f18a8d19722c301eb6b682514c509eeca0ebdffcdfa36c0d6518868039e6", - "created_at": "2024-08-08T15:15:14.077684Z" + "001e2c169c701061b7ed61b248eb228dfd34d3b4de8ae3fbf469adcc8cb2f3af": { + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "epoch": 17, + "block_number": 614, + "hash": "001e2c169c701061b7ed61b248eb228dfd34d3b4de8ae3fbf469adcc8cb2f3af", + "certificate_hash": "73bdbcc0ec56a912e9d17dae7f5a16945e4715476add3f91bd8b8e834c8de2a0", + "created_at": "2024-09-09T12:57:41.056611894Z" }, - "50ff491765694a5ba0559249e66b34058871bc8506b23b5b83c31689eed2f3c9": { - "merkle_root": "9e22e89cced74cd2591e8ed6104825fd5370cbb718652dfcef2aad63fe60450b", + "104e48e1e42487cb76a31812da1336a915ca061712e57f868e672c00e876cc27": { + "merkle_root": "f63ccc250320ba23e780510a59ab5ca2649a930d7eafde549873e0aca3bc555c", "epoch": 13, - "block_number": 464, - "hash": "50ff491765694a5ba0559249e66b34058871bc8506b23b5b83c31689eed2f3c9", - "certificate_hash": "adc4d5b8e8b6f7288734d23f20ca6aee628768fa08a0a3ed4e809946a7a3a5b0", - "created_at": "2024-08-08T15:14:57.204943Z" - }, - "51f5adcecddebc109548fa2b907374c20533dff9a64076097565a9f3dc227ae3": { - "merkle_root": "eb0aedbd3ef1f6b5d75dbab3a252d1d7e7cb0de3926c01908efe4ad9e6bc95e8", - "epoch": 12, - "block_number": 434, - "hash": "51f5adcecddebc109548fa2b907374c20533dff9a64076097565a9f3dc227ae3", - "certificate_hash": "de62f925c2ff1aaa8fdf936ccf9006ac1539ecd78f2f11145d2c561361f10d92", - "created_at": "2024-08-08T15:14:54.963710Z" - }, - "54b184d6d2985aca5b3e506ca2d19deeb3b2fa0be842b7630a9e2b6b514ac5c4": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 18, - "block_number": 644, - "hash": "54b184d6d2985aca5b3e506ca2d19deeb3b2fa0be842b7630a9e2b6b514ac5c4", - "certificate_hash": "3c8fc1119d991e46c5a8b8312e2ce8c2bd4a174399cfaf55cd14cab9f9acd252", - "created_at": "2024-08-08T15:15:11.641279Z" + "block_number": 479, + "hash": "104e48e1e42487cb76a31812da1336a915ca061712e57f868e672c00e876cc27", + "certificate_hash": "39879b67d9c9d966361ef448de460e63249f0845846a5050538a7679c82abc6a", + "created_at": "2024-09-09T12:57:29.858441528Z" }, - "6654093ac7a509175fa9fdb2a9c6a9c02faa3d25d8dbe785d05aa9bc7d83cb70": { - "merkle_root": "a8eae3d98cf1a03297d16be2015988b0a5c6d34c9ea7f839c8509d113fc72bae", - "epoch": 15, - "block_number": 539, - "hash": "6654093ac7a509175fa9fdb2a9c6a9c02faa3d25d8dbe785d05aa9bc7d83cb70", - "certificate_hash": "9a77c220450739d5407216c07197a8a4f9b595ab839a77c9e6ad957fb42cfa40", - "created_at": "2024-08-08T15:15:03.313244Z" - }, - "846f474e36466761ba43bdca0b8327cf5d4138eb9e8d7aa015f0b60b229c349c": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 21, - "block_number": 734, - "hash": "846f474e36466761ba43bdca0b8327cf5d4138eb9e8d7aa015f0b60b229c349c", - "certificate_hash": "7a38eaf129a96f49f215647632404fbaa8b8e9702635d6c6db04eb27c948fe5f", - "created_at": "2024-08-08T15:15:19.501155Z" - }, - "8871635118a1a33ae1930305d317e897e0b8eba18c6ec66e7c8fe5788d31df4a": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 20, - "block_number": 704, - "hash": "8871635118a1a33ae1930305d317e897e0b8eba18c6ec66e7c8fe5788d31df4a", - "certificate_hash": "efceff797292a5eea2f0c8c4e7107515408076c18e82b36c5f617a0354601141", - "created_at": "2024-08-08T15:15:16.924637Z" - }, - "8c8f36c2537876a05e32fdae1890765520725c811da3cc34688672c29d0c08e2": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 21, - "block_number": 749, - "hash": "8c8f36c2537876a05e32fdae1890765520725c811da3cc34688672c29d0c08e2", - "certificate_hash": "7c35f66f5ba83c7208763a29027919aca6ceef1e4c4e93f9eb57b6fffeae646f", - "created_at": "2024-08-08T15:15:20.049273Z" - }, - "9275d836c08fe1ab9a5e096738974cc8e32d9bb6aea771750f6daa75a85f7186": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", + "225fce1a43a3afd946d684878556266fdd8bb11a9d174162ea32757319f5b27e": { + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "epoch": 19, + "block_number": 689, + "hash": "225fce1a43a3afd946d684878556266fdd8bb11a9d174162ea32757319f5b27e", + "certificate_hash": "001f7e3a3599a795a48974c36e4e3ac2d201a7657e213d1514cc3141b2455abc", + "created_at": "2024-09-09T12:57:46.757386248Z" + }, + "2565c712495a20fdf3d3ad31b93a040f0ee317024343e9d114c396f4b5a5ddde": { + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "epoch": 29, + "block_number": 1034, + "hash": "2565c712495a20fdf3d3ad31b93a040f0ee317024343e9d114c396f4b5a5ddde", + "certificate_hash": "8aaf2e130cb89d27fb66a7acc38742f13004237d6f629fccd87b6822009e09ad", + "created_at": "2024-09-09T12:58:14.776383092Z" + }, + "470004765989d274666d1824e3bcc50806f89871bd3fe2ffcd068d04b56bbd17": { + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", "epoch": 16, - "block_number": 569, - "hash": "9275d836c08fe1ab9a5e096738974cc8e32d9bb6aea771750f6daa75a85f7186", - "certificate_hash": "8d7bce4ef2b5e0fb5b11f99fa86963ab2be599f01b6ad5e2d2099fd94afb1df7", - "created_at": "2024-08-08T15:15:05.604226Z" + "block_number": 584, + "hash": "470004765989d274666d1824e3bcc50806f89871bd3fe2ffcd068d04b56bbd17", + "certificate_hash": "bce8b084bb9ea2609d7157a61825f39a5775831b6ee50b763022d5e7e6817dd7", + "created_at": "2024-09-09T12:57:38.332387772Z" }, - "ab4c48ab2468978f975808ac7c4cf011d813005abf3161f08ed8dbb61f90fc9d": { - "merkle_root": "eb0aedbd3ef1f6b5d75dbab3a252d1d7e7cb0de3926c01908efe4ad9e6bc95e8", - "epoch": 11, - "block_number": 404, - "hash": "ab4c48ab2468978f975808ac7c4cf011d813005abf3161f08ed8dbb61f90fc9d", - "certificate_hash": "1691514a0ce0535a52b3b66ba6de792f90b0d85a18dbc54ca94f7454af8c7f39", - "created_at": "2024-08-08T15:14:52.569097Z" - }, - "abd70784a1ffcb3a223fe70a5f73a435aecce14787afe997efca05bcfcefe4e3": { - "merkle_root": "9e22e89cced74cd2591e8ed6104825fd5370cbb718652dfcef2aad63fe60450b", - "epoch": 15, - "block_number": 524, - "hash": "abd70784a1ffcb3a223fe70a5f73a435aecce14787afe997efca05bcfcefe4e3", - "certificate_hash": "f756070003b579e24443e1a1cf6baa0b63099adf574462346228b42a80df3cc4", - "created_at": "2024-08-08T15:15:02.909419Z" + "5253dd86c59eb80e20761264f87c84777f078241c848b440a0e21bc42c80880a": { + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "epoch": 20, + "block_number": 719, + "hash": "5253dd86c59eb80e20761264f87c84777f078241c848b440a0e21bc42c80880a", + "certificate_hash": "592effe35e1d28d56f0963824ebded82a32cd36ad25ad1c87e80e08b6271cda2", + "created_at": "2024-09-09T12:57:49.130193448Z" }, - "afa6b747893ee841b04a6047d1bcdd0d38d825f7734708bc72827d6ef4b676c1": { - "merkle_root": "9e22e89cced74cd2591e8ed6104825fd5370cbb718652dfcef2aad63fe60450b", + "578c672520dbe30724816944499fbf1704850b598c7dc6d1fb8daf779172f44b": { + "merkle_root": "e7acbac1470f92188085541fb9e17afa604e82dfb38bcaa9e3464ffb60039d5b", "epoch": 14, "block_number": 509, - "hash": "afa6b747893ee841b04a6047d1bcdd0d38d825f7734708bc72827d6ef4b676c1", - "certificate_hash": "cd83b29841703391e94d89b8bbc910a01c5f1d3f316d3aabcdf9e73105448b36", - "created_at": "2024-08-08T15:15:00.807072Z" - }, - "b70204be975c9c57da3cd8609c842d6a9766e4d8490ebdfd9e312899856fb6b4": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 22, - "block_number": 779, - "hash": "b70204be975c9c57da3cd8609c842d6a9766e4d8490ebdfd9e312899856fb6b4", - "certificate_hash": "b7d30fbceb04439245d46c0459a9ca6e6d18531498aa8c20b46ef943ac447a70", - "created_at": "2024-08-08T15:15:22.735357Z" - }, - "c1e1f1e94a211ab64b914a68bc876e9a5d254dd262ec8e27b9c76fd261c1f7e1": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 17, - "block_number": 599, - "hash": "c1e1f1e94a211ab64b914a68bc876e9a5d254dd262ec8e27b9c76fd261c1f7e1", - "certificate_hash": "d502c0e6532e3d7479f4c146da6ec7e229291c2f72137f32a7e56b8773a77c67", - "created_at": "2024-08-08T15:15:08.664369Z" - }, - "e50ef602bc2b9cc06ad5dd9b64a854012defd4b07e903bde051110fccd7276ed": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 17, - "block_number": 614, - "hash": "e50ef602bc2b9cc06ad5dd9b64a854012defd4b07e903bde051110fccd7276ed", - "certificate_hash": "6957ef27c7b846e13f2fd869e314426b22625b313862e7e79657480c535595de", - "created_at": "2024-08-08T15:15:09.337334Z" - }, - "e5fbd79bc5ca22581b8653a4085fcd5428f127466c571c3c8eb988a4642afe20": { - "merkle_root": "9e22e89cced74cd2591e8ed6104825fd5370cbb718652dfcef2aad63fe60450b", - "epoch": 14, - "block_number": 494, - "hash": "e5fbd79bc5ca22581b8653a4085fcd5428f127466c571c3c8eb988a4642afe20", - "certificate_hash": "767a58f3d6dd6eb5fcf076b7f9e62db981d85fad3c2b2006413ab637e0626eff", - "created_at": "2024-08-08T15:14:59.869104Z" + "hash": "578c672520dbe30724816944499fbf1704850b598c7dc6d1fb8daf779172f44b", + "certificate_hash": "4d497747eb6d28eef64caa5cafc8c0b5a4278f96a9d7df459a69f62dd3df7050", + "created_at": "2024-09-09T12:57:32.980011969Z" + }, + "5aa3bf60fd7d0069812439e4799fc0727ffa94b55474ad06eb3fad981ee5f856": { + "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "epoch": 32, + "block_number": 1139, + "hash": "5aa3bf60fd7d0069812439e4799fc0727ffa94b55474ad06eb3fad981ee5f856", + "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", + "created_at": "2024-09-09T12:58:23.413027945Z" + }, + "73fac87b931a4b3fd7b1e47ae63a836acc080d1fde6dc16e1cd831e8bd63b0e9": { + "merkle_root": "78acfdd3cc14eae0be6b7a2af4f276455a87695080158df4bc97b7b0705e462c", + "epoch": 12, + "block_number": 434, + "hash": "73fac87b931a4b3fd7b1e47ae63a836acc080d1fde6dc16e1cd831e8bd63b0e9", + "certificate_hash": "6c5dd3ae74170d581c083b0f819df48de84284e2d7d6d912b0c0455c29286ab6", + "created_at": "2024-09-09T12:57:26.720151149Z" }, - "ec2e2e55c89718ff2ae1943d9ab20141a7108d44a61ba04d08cab8ce0a18b04a": { - "merkle_root": "eb0aedbd3ef1f6b5d75dbab3a252d1d7e7cb0de3926c01908efe4ad9e6bc95e8", + "c80d9fd14913544fbb3f7c9fa7bd435c219a27c6ef4b41c7e3110afdcd483ea0": { + "merkle_root": "6fb22bf276b917de711d037ac2b449585507ec1b5bec31dd1ea9c5292896ea7c", "epoch": 11, - "block_number": 389, - "hash": "ec2e2e55c89718ff2ae1943d9ab20141a7108d44a61ba04d08cab8ce0a18b04a", - "certificate_hash": "5e32c1ecf36460db008ee4e987c2c89f5ae5e2bd54a80c3ee76631c6f37f1450", - "created_at": "2024-08-08T15:14:51.642902Z" + "block_number": 404, + "hash": "c80d9fd14913544fbb3f7c9fa7bd435c219a27c6ef4b41c7e3110afdcd483ea0", + "certificate_hash": "1da3885e3c022c9075bcaf2bd64f2abcbf10e159aec4cd3a219561d2830f1ecc", + "created_at": "2024-09-09T12:57:24.112169735Z" }, - "ef87bb514603953b43dce970e17226feae1d30a63d56c9970bdaad5a2cd96121": { - "merkle_root": "85f00240a6acf1352d13e9fe860462d4fadd54ea1f0cb17783ac111ec2208824", - "epoch": 18, - "block_number": 629, - "hash": "ef87bb514603953b43dce970e17226feae1d30a63d56c9970bdaad5a2cd96121", - "certificate_hash": "e072c98c05fd57aa646a7c0b4c5400ba90409f611cb0e45f3b7213288d7364bb", - "created_at": "2024-08-08T15:15:11.098095Z" + "d5f79aeacc43ae45d5e086044d0be4047ace38a6983ad433c6e61392f7e42f83": { + "merkle_root": "f63ccc250320ba23e780510a59ab5ca2649a930d7eafde549873e0aca3bc555c", + "epoch": 13, + "block_number": 464, + "hash": "d5f79aeacc43ae45d5e086044d0be4047ace38a6983ad433c6e61392f7e42f83", + "certificate_hash": "d27713d73cfbc13241fcd6bbdcaa466f17ee762b5e373cb1abf7ee2331860358", + "created_at": "2024-09-09T12:57:29.451805466Z" } } 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 b3deb13c42f..34c1124036a 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": 23, + "epoch": 83, "protocol": { "k": 75, "m": 105, @@ -9,5 +9,37 @@ "k": 75, "m": 105, "phi_f": 0.95 - } + }, + "current_signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3138332c38332c3138382c3232332c3135392c32392c3133342c37332c37312c3138342c36302c392c36302c3233312c32362c39342c33312c39322c32322c3230382c3130382c38372c38372c3230362c3135362c3131342c31362c3132332c3235322c3130392c3130392c3133382c3232352c332c3231322c3139362c37332c3132302c39362c352c3233392c35352c31342c3230342c3139342c34392c3233322c39312c312c3132352c3230312c38382c3134322c3133372c36382c3138312c3134322c38362c3130312c3137342c38302c37382c3131372c312c38382c39332c3135382c3136362c3130342c3139362c3232362c3135322c39332c3230372c3131392c3130362c3130332c3132322c34332c35392c36302c3235302c36302c35342c31362c3138362c3234302c3136302c3132312c3130332c3139352c3135342c312c3231302c37322c3135365d2c22706f70223a5b3137372c3231342c3232372c35312c3137302c3131312c35352c35342c3135332c3132392c3139322c3231362c33312c3139332c3233332c3135382c3234352c39392c33392c382c3234342c3232302c37332c3134312c3131342c3131362c36312c3133312c34322c3133342c36312c3138312c39352c31352c3234312c39342c3135362c3134372c3231332c31392c3137342c3135342c3131392c3232332c3132312c36382c33352c3235342c3134312c3232392c3138332c3134342c34312c35322c3130342c3133302c37372c34352c3139332c37322c332c37312c3231312c35322c3233322c37352c37322c3231312c3134312c38372c3136312c3231382c3135352c3130312c3136312c3137372c312c39382c3231332c392c3133322c3131382c3134312c3133362c3232322c3234352c3133382c3133382c3134382c3132352c35322c32312c3137302c34312c3235302c3130385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138312c3138332c3136382c3134372c3133372c3232302c31332c34362c32322c3136322c3135332c3138352c362c3230372c3231332c31392c38372c3137352c38302c35302c36342c3137372c3132332c3134392c36362c37372c3131352c3131312c34362c3130352c3139342c3130352c3130302c3231322c39362c33312c3134322c32362c3235322c3235312c3234332c3233392c3130302c3132342c31312c3138362c3232392c31372c392c3235302c3233332c38362c3137382c3134372c38332c3230312c35322c3230302c3234342c38302c31362c37362c34332c355d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "kes_period": 0 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3136352c38302c36312c39382c3132382c3232362c31382c3137342c3134372c3230382c3234352c3233352c3233392c3135362c3133352c3134322c3230372c3131322c37362c31382c35362c382c3133332c35372c3131302c3231362c37352c3137392c382c33322c36352c362c3135332c3132392c39312c3138352c3139382c32372c39312c3132342c3133362c3234362c3134392c3234322c3235342c33322c3231352c3234352c31342c36352c34302c39322c33372c33392c3135372c3138312c32332c32332c3135392c3139352c39302c3234322c3139362c3136322c342c3235302c35342c31302c38322c3230342c3235342c3134362c3131362c3233302c3131372c3234352c36382c3231352c3135312c36382c34302c3134342c3234302c3134312c3136372c39342c35352c3230352c3133352c3133352c3139362c32352c3139302c3134362c3134312c32365d2c22706f70223a5b3137302c3134322c3132392c3232302c3135322c33352c31322c3131332c3134382c3130372c302c3134352c3234382c3138352c32392c3135352c3132312c3232382c3131382c36322c3230332c3137352c3135322c37322c3131392c3232322c3132382c3138302c3137342c3138362c3233382c3137362c3138342c302c31362c3138392c3137302c32342c34352c3230342c3131352c3137342c382c31382c3130382c3233312c3133312c3234372c3138352c3139332c35322c3235302c3130362c3137332c34302c3136392c3137342c3231392c38362c39312c3130362c3231382c34352c38322c31372c38322c3232312c38362c3137322c3139362c3233302c3137382c3136302c3230342c3131302c3139382c3131382c36352c3231342c39362c34392c3232312c37352c37382c36362c37332c33372c3234372c3135362c3131302c3133342c3133302c3233352c33322c33372c325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b32362c3230392c3231302c322c3234352c34382c3132372c39382c3131392c3136392c3231352c3230382c3137372c32352c3139332c39352c3135392c3234362c3234342c3134362c3130342c34332c3131302c35342c35392c3232302c31302c35322c32332c3231342c39392c3133392c3132352c35352c3231382c3134392c3231302c38372c36382c3130372c3132372c3137392c33352c31392c39392c3234332c3137332c34322c36302c32372c3234362c3131322c39362c35392c3235322c3130372c37392c3234382c37322c34322c38332c3232362c3231342c345d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "kes_period": 0 + } + ], + "next_signers": [ + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3135302c3136332c38302c33352c3235332c3135372c3132372c362c39302c38362c3233392c3131392c3137382c31322c3135342c3136302c3233312c33382c3134312c34312c32352c33372c3133302c3130372c3130362c35302c3134362c3231382c3231342c3130382c3135382c3138362c37332c3234312c342c36312c3135312c3130392c3131392c3138352c3133392c3139362c38382c3233352c39312c36372c3135362c36302c312c3234302c3234312c33392c3130392c31362c34362c3136352c35382c31372c3139342c39312c3230312c3131392c34372c3235302c3234342c3235342c3137382c3136382c35352c3139332c34332c3132372c3134382c37302c3233352c3134382c3134392c3136332c31322c3230342c34372c35382c31372c38372c332c3131372c3138342c3136342c3134302c38332c3130322c3136332c39312c3231302c3235302c3230315d2c22706f70223a5b3134382c3232372c3136322c32312c3230382c3138342c3235312c3132342c3136372c3133352c3137342c3130362c3139392c392c3235342c3135392c3230392c3230322c3139372c3138372c39382c3138302c3136322c3235332c3138372c36382c34342c3139302c31362c372c37332c38362c3139342c3134332c3132342c372c37312c3138342c3134392c3232312c3134352c35382c38382c36362c342c36332c3136332c34382c3138342c31372c3138372c3134352c3235342c31312c3232392c3233372c3135392c31352c3134362c3136302c3130302c3235342c37372c3132322c3233302c34372c33342c3130372c37302c33392c3234392c3130332c3232342c3233362c3133372c3133382c33302c3234312c3134392c32362c3130372c36312c34342c3136362c34312c3131332c3131352c3138332c34352c3233372c372c38382c37342c35362c3235342c36355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3133342c3134352c38382c38352c31362c32372c3136382c3131392c3230392c3130312c352c3235312c3131392c3134332c39332c3133352c3138372c3133372c36372c3133342c37302c31312c36382c3232302c3131352c3233342c32382c32372c3137362c35352c33362c3130342c36332c3231312c3134332c3135332c31332c3132362c32342c3133302c3138362c32352c3130372c3137302c36332c37382c392c3132312c36302c3231382c36312c38352c3131372c36332c3130342c3232352c32332c3131392c32332c3137302c38332c3234372c33342c375d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "kes_period": 0 + }, + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3138312c3136322c3134342c35312c3234322c3135322c3139322c32382c37332c34312c3135372c34362c3133362c3138312c3234312c34332c3130312c35372c3230362c3133302c3231312c31372c36312c3130372c3234342c3230352c39312c34372c3231312c3137322c34392c3230392c3131392c3131302c32382c3136392c37342c36372c33362c3230362c3137322c3234312c34382c38382c36372c3234302c3132362c39372c332c362c31332c32332c3235312c37332c342c38342c38372c32352c3232372c36342c3132392c3136302c36382c3230332c31392c3135342c3135302c3231332c31302c37302c3234352c3133322c3134392c36302c3231352c362c3235342c31392c352c3232342c3235352c34302c3136392c3139332c3132302c362c3138392c36312c3133382c3132302c3135302c3133312c3137322c3130322c322c3136335d2c22706f70223a5b3133312c3132302c3135302c3139312c3232392c3139372c39302c3230332c37342c36382c3139372c3136302c3231312c3131312c3136362c3131332c3132392c3133382c3133352c3136312c3137342c35322c3138382c33312c3232342c3139332c3134322c3138302c3135342c3230392c39312c3133382c342c3230342c37322c37312c3231342c3137312c3233332c3130382c3138302c32352c3234342c31312c3231302c3137392c3135342c33382c3137302c3233342c392c32392c3134322c33392c31312c3138382c35342c342c3134302c39392c3230352c3137372c3136322c32322c31362c3134302c37322c3132322c34362c3234322c32382c3130372c3134322c3138312c3134352c37392c3139382c3230332c352c3131382c3234352c3231332c35302c38302c31352c3231342c33392c33342c3231342c3134372c3230372c3134362c36342c39352c342c3137335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3134332c3139302c3138352c3233362c31332c39382c3235302c3138302c38332c38302c3130322c3231302c3233362c3234352c37352c3136342c3138322c3132332c3138342c3230332c3139392c3134302c3137302c32342c3234362c3136372c3233382c3139312c37332c3136302c3131352c39322c34312c39312c35332c35362c3139332c3132352c31312c3231332c39352c3233362c3135332c31342c3234342c39342c3130392c3231362c3232332c38392c37302c3136322c36362c3232302c3135372c3134352c3133392c36322c33382c33332c35352c362c3234372c31335d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "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 4ce24c09c60..2ca0ae22018 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,80 +1,122 @@ [ { - "epoch": 23, - "hash": "c05bb138d78b4d845547f483d6fc3dd690cd20288fda87b219ce04022ad41149", - "certificate_hash": "a11139300a460087942144f7ffb3242e496da504dfad3884e8c7fefa02bff8ce", - "created_at": "2024-08-08T15:15:23.973904Z" + "epoch": 62, + "hash": "f3d1af1abcf2dac1445f828278f3e3be1f7800e28d595a312d64b9553fc6b7cb", + "certificate_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", + "created_at": "2024-09-09T12:59:45.342009811Z" }, { - "epoch": 22, - "hash": "354f245e4a4294998e8fee12966a5359747b160932b7377d6c2d6dad5aae33a7", - "certificate_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "created_at": "2024-08-08T15:15:21.129338Z" + "epoch": 61, + "hash": "514cbc9ef9a90d9e641ac86005517d1d66a6f41baf1066101e6471b0f36473c7", + "certificate_hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", + "created_at": "2024-09-09T12:59:44.557406440Z" }, { - "epoch": 21, - "hash": "4ff2fded35b81f1b9752259a9ed263261a3c6e91026994314c34d098f2221fc2", - "certificate_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "created_at": "2024-08-08T15:15:18.283018Z" + "epoch": 60, + "hash": "5af32d5e6a51aba26937459b608f324f06e9a5f5b1717917480ebceadcc02306", + "certificate_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "created_at": "2024-09-09T12:59:39.699484120Z" }, { - "epoch": 20, - "hash": "f295876cf3700ed5d293ebf35a37d47793244064c5b2979aca22b03bb2a8d5f5", - "certificate_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "created_at": "2024-08-08T15:15:15.587406Z" + "epoch": 59, + "hash": "88c64139d188a2c257637a53e7e81583d7d7ed96d5954ea6bb55c54a59da1b9b", + "certificate_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", + "created_at": "2024-09-09T12:59:37.219892866Z" }, { - "epoch": 19, - "hash": "6fc81673dd2470ef185fdac57d2dccc477ed87b9258d52b24025d43968f01785", - "certificate_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "created_at": "2024-08-08T15:15:12.725023Z" + "epoch": 58, + "hash": "83eb062b476e53103a90ffd2280e3b6ba5186cb5bfeb0e9817ec56be3e45d308", + "certificate_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "created_at": "2024-09-09T12:59:34.457723440Z" }, { - "epoch": 18, - "hash": "46d949e8221f500632a2193069480026a890d73861fef2b4167622524f8c3f17", - "certificate_hash": "55c9d1616a06a38cb274629f3de576b10b57d696da7494b4d7a2b425831e0772", - "created_at": "2024-08-08T15:15:09.891941Z" + "epoch": 57, + "hash": "e20c6549c0a92807d0dfa88acfc557a7a22bfab535c5ef47415c218b7f6c9a64", + "certificate_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "created_at": "2024-09-09T12:59:31.488750133Z" }, { - "epoch": 17, - "hash": "eb31ade786a195121edce6bbeaa410de4704925033edb67072c440da0d6933ef", - "certificate_hash": "b7466128456915070b1a65cff4ae86243b3fa194daef7b2c7978060dd8daf8ed", - "created_at": "2024-08-08T15:15:07.072893Z" + "epoch": 56, + "hash": "998830d208991bfbb1d1320542691bd2169aab6e022d67e2b100c43afc35975f", + "certificate_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "created_at": "2024-09-09T12:59:28.726128329Z" }, { - "epoch": 16, - "hash": "d01e21c53604f74d29f6a809ed8c0439b6832de3aaec524c98b6b07aaa694f7f", - "certificate_hash": "87490bc637ba9af3e45dac7a8c86959bb983087a393475a14a4e9067338bfc4b", - "created_at": "2024-08-08T15:15:04.268359Z" + "epoch": 55, + "hash": "325fc4caddf05fc6fd76691282441520b9b2009967065c7762cd947aade7323d", + "certificate_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", + "created_at": "2024-09-09T12:59:25.929208404Z" }, { - "epoch": 15, - "hash": "9e7363d59a2df9698957f58598739a86d3b1b1e86f403830f4ee25f3662c0b6c", - "certificate_hash": "166055f65bda0742ea2324c70b6c529fc33cd7973b5deae8275360acd3dcd68d", - "created_at": "2024-08-08T15:15:01.470177Z" + "epoch": 54, + "hash": "4c2f40f8565355fa1bdf702c37efb1433e3b6c27dc97310c891623f7255e8a10", + "certificate_hash": "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4", + "created_at": "2024-09-09T12:59:24.638170847Z" }, { - "epoch": 14, - "hash": "5084356d0fc077428acefe3030ca7d060cdcc9dae5992bed38ae1c7094fea0c6", - "certificate_hash": "200ab2987880b3e983b1113be17fefb0f1f12a2baeec3c00bab24f41b9c88687", - "created_at": "2024-08-08T15:14:58.665909Z" + "epoch": 53, + "hash": "54090b48c481828f1e84f0400f7bf96224567fb11c232be30dec56b325cf78a0", + "certificate_hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", + "created_at": "2024-09-09T12:59:20.285538052Z" }, { - "epoch": 13, - "hash": "2c910c370e3feff2188adc1aeb5473e2d08b6f086042259076ddd887913c6824", - "certificate_hash": "cc7fa14cbccc78ff1492430d391a20cb579ae1ffa85724060a27954360108068", - "created_at": "2024-08-08T15:14:55.881882Z" + "epoch": 52, + "hash": "7222fe6cbaae33109724c88e5659d8a2d2e1546386e760083089d0c1a1405d98", + "certificate_hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", + "created_at": "2024-09-09T12:59:18.124838302Z" }, { - "epoch": 12, - "hash": "7cbbd5b1bbcb735316c39145ae7e2e13e3baa0450c0ef937396395909569c053", - "certificate_hash": "968118eff75386e71874bd2388e00c0c5d3cac7ece65cebf9f60f0754341a710", - "created_at": "2024-08-08T15:14:53.112638Z" + "epoch": 51, + "hash": "f3b10ac54f7509e7e337d29bccb9e42c30854a0906e0efabbac19b68477107bf", + "certificate_hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", + "created_at": "2024-09-09T12:59:14.521321373Z" }, { - "epoch": 11, - "hash": "6865c13807a0f0c35c83ed098dcf0b7c337baca7cd43ca5e7de7f314728cbdd2", - "certificate_hash": "5185d40099ae179282ec0c77a04d0678898272d238e44e4430a6abf1cbe507af", - "created_at": "2024-08-08T15:14:50.280363Z" + "epoch": 50, + "hash": "e26e6e03e5da23dcc83ecd3645f943e97e3318e78d68c1b56e28f561db22b823", + "certificate_hash": "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230", + "created_at": "2024-09-09T12:59:12.891594689Z" + }, + { + "epoch": 49, + "hash": "36dd031362399cff7e34ffbc7fc3143dde2c0cd30d517b5f83eca885a8d27b75", + "certificate_hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", + "created_at": "2024-09-09T12:59:09.117508954Z" + }, + { + "epoch": 48, + "hash": "dc001c23bd8de6229e4427578f369dabd4d9ea1f99a87683aad0cb55e7624944", + "certificate_hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", + "created_at": "2024-09-09T12:59:06.295359040Z" + }, + { + "epoch": 47, + "hash": "99f6b6b57fc30cd2b2a2869eec097d80a07be61e4669fd38d20da3c593bc908d", + "certificate_hash": "4d674234cd3e602f78faea111462ddf994cc91222061df8627718b572a389afb", + "created_at": "2024-09-09T12:59:04.797478558Z" + }, + { + "epoch": 46, + "hash": "44d0c581f5945421af350bc5ebfa2d9062e198c9b06fac430c5e0e837cff1977", + "certificate_hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", + "created_at": "2024-09-09T12:59:00.656190308Z" + }, + { + "epoch": 45, + "hash": "308b491938f36c07502d42bd5df3648c02c3fa1fd702498867ac64aab77ccfc6", + "certificate_hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", + "created_at": "2024-09-09T12:58:58.611286978Z" + }, + { + "epoch": 44, + "hash": "63b7b76db611d80e986c1e438f60e09a40347fec000afabc7178181c451eaf43", + "certificate_hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", + "created_at": "2024-09-09T12:58:55.047708346Z" + }, + { + "epoch": 43, + "hash": "1cb0b97562200bd82f0f6ec6cc3c1a9cc340a132f8eb6ff6aaa3af3977a9fb20", + "certificate_hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", + "created_at": "2024-09-09T12:58:52.392635910Z" } ] 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 5d132215acd..ed07a9fe449 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,375 +1,578 @@ { - "2c910c370e3feff2188adc1aeb5473e2d08b6f086042259076ddd887913c6824": { - "epoch": 13, + "1cb0b97562200bd82f0f6ec6cc3c1a9cc340a132f8eb6ff6aaa3af3977a9fb20": { + "epoch": 43, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3134312c39312c3134312c3232322c3231332c3231302c36372c3139352c3136302c3230352c3130302c34302c3133322c3130302c39382c31332c3234302c3136302c3138342c3139392c33302c35322c3233382c3230322c3138382c322c3134362c3135332c3234372c322c37352c3235332c36382c34332c3132332c3232382c3230372c37312c3233332c3136332c3231312c3139322c35382c3130362c34372c3136392c3231332c37382c32312c3131332c3131352c3137372c31342c3232362c3134382c37312c3234362c3231392c3130342c3232362c3138342c3134382c3232362c3133322c39352c3234372c36362c35332c3134322c38352c3139332c39362c3130372c3231332c3231392c3134332c3230382c32352c36302c3131362c3230342c3132332c37382c3234332c3136372c3230302c3136382c3137372c3132382c3131382c36382c36302c36312c3137362c3133352c39315d2c22706f70223a5b3138352c392c3235302c3232392c3134322c3233332c3139332c35312c39352c3133322c3133392c34392c3138322c32322c33382c39372c372c3132332c3231382c3230322c33392c38322c3132312c3134372c3234312c39332c39302c342c3137352c33342c35362c3232322c34382c37302c3132312c38332c3233382c3139392c3132392c3133342c382c3133302c3133332c37382c36302c3232342c33382c3133392c3136332c3138372c3137322c35322c3131382c31312c32362c3136342c3139372c3131342c3130302c3138362c3132322c3133312c33352c3134322c3234322c3134302c39342c3133362c3234382c34392c3133362c37312c3137322c3232332c37372c3235352c3133362c3230392c3230362c34372c38362c32312c35372c3139392c3235312c3233352c39342c3137342c3137322c34302c3132362c3231332c38302c3130392c3133362c3231305d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3139352c32302c3232372c3232392c3136382c3231322c36312c3139382c38392c3138312c35322c34372c37372c3235352c3136312c32342c3231382c3232382c3232382c3230322c36342c35392c3235302c3135372c3130312c34362c3234382c3231352c3135312c3132352c3137362c3234302c3130382c32372c36302c3130352c3230392c3230382c3132392c32342c37352c3139332c3133342c3138312c3133382c3230372c312c3232302c38382c3230352c36362c3135392c37322c3234362c3133372c31372c3233332c37332c31322c3234342c31352c3230332c3132382c31325d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3134392c33342c34362c3133352c34362c3136382c39382c31322c37312c3134302c3132372c33372c3235312c35372c3234352c36342c3135322c3139332c372c36362c31392c32372c3136302c3234322c38312c3131312c3136352c3131312c3134382c3230352c3235352c31322c3138342c3135342c3132362c3136312c3138332c38332c3231342c3132382c3139302c31362c3234302c35342c3232342c3134342c3231322c35372c32312c3235352c3232372c37312c36332c35342c3230352c32392c38382c39392c3132392c37332c3136382c3233322c31302c3231352c3134382c3136352c3231302c37302c3132392c3133302c3132382c33372c3232372c3135342c37382c38392c3231382c332c32362c36352c3137372c3130302c34352c3137312c3234392c3131342c31362c3138372c33392c3134312c3138312c3136302c3233302c3135352c3134382c3130385d2c22706f70223a5b3137342c35372c3233362c3138352c32392c3139302c3130302c3234362c3137312c3138322c39352c3234342c34332c3134322c35312c3139362c3231332c3134302c3136352c34302c3235302c3232302c3233352c3132302c3136392c3139342c31332c38362c3137302c352c3132312c32332c3131342c35312c3133382c37392c34362c34382c3134312c3231352c35312c3135302c3233392c36342c3135382c3132322c36372c31392c3136352c3130372c332c3135372c3131342c3234362c39342c34332c3135322c34342c3234332c35342c3136352c33332c3231342c38322c3232362c3234332c3132362c34352c3134302c38352c3131342c3230392c37382c322c33372c31362c39372c3231342c37312c3134312c3130392c3133342c3232332c34322c3231382c3136312c3133392c3230362c3131332c3232342c3234332c3130362c3136302c3130342c31352c37395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3133352c32332c3132362c34352c33362c35312c31342c3130382c3134332c3133302c3230362c34332c3235332c34382c3132392c3130302c3139362c33312c3234352c332c3133352c362c3137362c3133312c3233372c33372c39352c3136382c3134372c38332c3135392c31342c3136372c3233342c31332c3131372c35342c3137312c352c3133392c3131362c31322c3231312c3131322c39392c3230342c3138392c3137322c3132382c32322c38382c31322c32322c3230332c3135302c3138302c3136362c3232392c3133382c35302c3135392c3136352c3235342c355d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3133382c39312c32352c32322c362c3134342c3138312c3132342c3138392c3130332c3135362c3131372c3139312c3131342c3133312c35352c35372c33342c3138392c3132332c31372c3231362c39302c34372c37372c3131372c3232302c35352c3135392c32362c3130342c32342c392c3231372c362c3135332c38372c3230322c3138322c3231372c3230312c3135302c35372c3130372c3136392c3231372c3137392c3139342c342c3130372c3132302c33382c3132332c3230342c3233392c32332c36302c3137372c3136392c3233362c3132322c3136362c3133322c32332c3233392c35392c3133332c3135392c36342c3132352c3131352c3130342c3138372c33372c34342c3134392c3130342c36342c38362c36322c3139342c3133302c3139332c3233342c3230362c3230322c36362c3136352c3233382c3230322c3134382c39372c3136342c33382c3134362c39365d2c22706f70223a5b3137332c3139302c3235352c3133352c3137372c3232342c32302c31372c3232372c3139302c3235302c3132302c3135332c33312c38392c37342c38352c3138312c3133302c3139322c3134352c39342c3231372c3134322c39382c3231322c34312c3137352c3131332c3132382c3234362c3131312c3132332c3135322c3135352c3137322c34322c3134362c32312c34352c3132392c3139392c3232362c352c3130312c3133302c37382c39392c3137362c34352c3133362c31342c3134382c31342c3133392c3231392c3131302c33302c3235342c3134392c3137322c3134322c3230372c3231342c3131392c3138352c3131382c3136312c3134372c3133322c3137302c3230372c3130372c3130312c31372c39342c34332c3137342c3233372c3233352c3233352c3133332c3135392c3233302c3134392c39342c3234322c3136362c3233392c38342c3136342c3233342c3130352c3135362c3131332c3233365d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3231332c3232312c3132362c37382c3133312c3138332c3135332c3134332c302c3132342c3135302c31312c3132302c3137342c3232342c3137382c3233372c3138342c3234312c33302c3232392c3231312c3132362c3235322c3132342c3234312c33342c31342c3234302c36352c37332c3232352c35362c3233322c31382c3233382c3234372c3233332c3232392c3230352c37302c332c3232362c3139372c36342c3131312c3233362c38372c3132372c33302c3130352c3235322c32362c3234342c3135362c3131322c32392c36392c33382c3131362c3137382c3138332c33362c385d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3136362c3232322c3231392c3139362c38362c3138322c392c3231302c3134392c3134362c392c3132322c3136362c33382c332c31302c3231382c3132342c3134332c3234382c38382c3234322c392c3131382c31352c3130362c3134342c352c3135312c3231312c3231322c37372c3231322c3233392c31362c3233342c36372c3232302c39322c34392c3133322c34342c31322c3232362c3134302c3138382c3130392c3136382c31362c3232372c34392c3232302c3232322c3131352c3132362c3231312c31382c34332c3139392c3131322c31362c36322c3136302c3234392c3139312c3134372c38332c35322c39352c3230382c3139392c3131312c3234302c3139392c3135392c3139332c3232372c3230312c3134342c3137382c3232332c31372c3232362c3139342c33322c3133382c32382c39362c39352c3139332c3232322c31342c3131312c3235322c38342c3232355d2c22706f70223a5b3133352c3138332c3132362c3135392c35362c37352c34322c3131302c33382c372c3232332c32312c3130392c3139302c3139312c36352c33352c39302c3130372c33342c3139342c3232332c3139342c3137302c3231302c3131372c39392c35332c3131332c3134312c3232322c31332c3133372c3136322c33352c3139382c382c3130382c35362c33352c3134332c38302c3131362c39302c34372c39352c3137362c38392c3134372c3232392c3130322c36372c3132302c39362c3130382c3134312c31362c3234332c39342c39302c3133302c3133332c3136302c3134312c39352c39352c31322c3131352c3232332c3234382c3231352c3139332c39392c3233392c35362c3232312c3234342c3137322c3232372c3233372c3139332c38302c3231362c3136332c38372c38362c39392c3130302c32352c3230342c3133332c3139332c3230382c3135382c39332c3132345d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3234322c3136392c3135312c3139302c35342c3230352c3135322c3130392c3131372c3134382c3230342c3138362c34342c34362c3131382c3130362c32362c38382c33322c3232312c3130362c3232382c33332c3133332c35362c3133362c3136382c32322c3133312c3138392c3232302c3131342c3232342c3138322c39322c3133372c36382c3230352c36342c31392c3235302c3134342c3233342c3136382c3130392c31332c3132322c38382c3137312c3138312c38382c39362c32382c3131392c34352c3134392c33322c32312c3230302c32362c3130332c3137382c3139322c31355d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "2c910c370e3feff2188adc1aeb5473e2d08b6f086042259076ddd887913c6824", - "certificate_hash": "cc7fa14cbccc78ff1492430d391a20cb579ae1ffa85724060a27954360108068", - "created_at": "2024-08-08T15:14:55.881882Z", + "hash": "1cb0b97562200bd82f0f6ec6cc3c1a9cc340a132f8eb6ff6aaa3af3977a9fb20", + "certificate_hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", + "created_at": "2024-09-09T12:58:52.392635910Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "354f245e4a4294998e8fee12966a5359747b160932b7377d6c2d6dad5aae33a7": { - "epoch": 22, + "308b491938f36c07502d42bd5df3648c02c3fa1fd702498867ac64aab77ccfc6": { + "epoch": 45, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3137332c35302c3135362c3133362c3233332c33382c36302c342c332c3232332c32342c3139302c3132342c32312c3131312c39392c32382c34392c3133372c3137342c38302c37352c3138352c39302c3130362c33302c3232362c31352c36392c32342c3135352c3233372c3135362c34362c3130332c3133322c37352c3138302c35362c38332c3235342c35392c3137352c36322c3231382c302c3134382c3233392c342c3138322c3130312c32322c31352c35362c3137382c3233382c36332c3137352c3137392c34312c38302c32352c352c3234332c33342c3135352c38332c37332c3230352c3130352c32382c3138332c3134392c3232372c37362c39362c36352c37302c3131312c3134372c39362c3135372c3233392c3234362c3136312c31392c3231332c34342c37372c3234332c3231322c382c35372c3233332c3139352c3231375d2c22706f70223a5b3137352c39312c34332c3235352c39382c35362c3136362c3232382c33332c3233362c3139312c37342c36322c3130332c3231392c3131342c3139322c3232372c3231332c3130342c372c3139372c3136322c3131362c31372c3132302c37342c33382c3137312c33342c3132362c32312c3135382c3131352c39322c33392c3132332c33342c3130312c3231392c39382c35362c3130352c3234342c39332c3233372c382c3233332c3137372c3131372c37372c35352c39332c35352c3233332c3137382c39312c36392c3135372c33312c3230312c382c392c39302c3234322c3133342c31382c3230352c3233312c3230352c38382c32332c31372c352c3135352c38312c33342c3135322c3131392c36382c3135382c3134362c3137362c3138352c3135342c3130392c3232372c37382c32332c3134342c33302c3233362c3230302c3138372c3235342c32325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b36392c3134382c32342c31342c36362c3130322c3133302c35302c3130372c3137362c3230352c3136392c36332c3233382c3232352c39332c3138352c3132342c3130382c39372c3139372c38352c3138302c3232392c3139302c36392c3133342c38392c3135302c3133332c32392c32322c36352c3232362c38352c3231372c36322c3232322c3132342c3230302c34312c3133312c32392c3137302c31322c39382c3131332c35352c3231312c3231352c38332c31372c33352c35302c3234362c3134352c32382c3137332c34362c322c36322c39362c33342c31305d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3136332c3135302c33352c3230382c3134302c33352c31382c3234332c39392c39342c39352c35392c36372c3230362c3230342c3230342c3235342c3135372c3134302c38322c35322c3230342c3138332c3233302c3137362c3133362c38302c32392c37302c3134322c372c3131302c31372c3131312c3136332c3233372c3135312c312c372c35322c3136362c3234302c3137352c3231362c35392c33362c3232332c3130312c32302c3235322c3235322c32302c37312c3234382c35392c3132322c3131312c3137362c31332c3130372c3232322c38342c3137332c34352c3234382c3139382c39372c36302c3132342c3139382c3233302c3230382c3231342c3231312c32372c38342c32392c3136352c3134372c36372c3234302c33312c3234372c3234392c3131352c3232302c3234392c31382c37352c302c31352c3132362c3231392c39312c3130312c3235345d2c22706f70223a5b3136392c3136392c3230332c3130382c32392c39332c3231332c3131322c3232312c3230352c392c32382c35362c332c3133332c3135312c3131312c3231332c32312c3230352c36342c3139342c3234382c3138332c3131362c35382c31372c39312c3234392c3232372c3134312c3130312c39362c34382c35372c3131382c332c39322c33332c3137352c3137382c3139312c36392c3135342c3139302c3231312c34382c352c3133332c3134322c34342c312c3135312c3135342c37352c3233372c3132382c33332c3138352c32322c3232372c3135322c3234352c3137322c31342c3132382c3138382c3134362c34362c362c3133392c3235332c32332c302c36392c3132342c37322c34392c3233372c38362c3131352c3232342c39342c3232382c3132322c32322c39372c3131342c3233332c3132352c38392c38312c3230392c3233312c3233352c3138335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138332c3232312c32392c3135322c3234382c3234352c3139352c38362c33332c3138302c3133382c3131302c3136332c32342c3130332c39312c3133362c3232362c37332c3136392c38322c3235352c39312c35392c3233362c3131392c3134352c33332c34322c32332c3233372c3231322c3136372c3137332c3137352c32332c3137342c352c3138392c31372c36342c38382c3233382c3232332c3139312c36372c3130372c35362c3139382c39342c3234352c3138322c31312c3136332c3231302c3131322c31352c3136372c34332c3235352c3139362c3135342c3138352c31325d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3133322c3234382c3136322c36392c3132302c31312c35322c3234382c312c3231312c39392c35392c36342c3136312c3136352c3133382c3230352c3138322c3139342c34352c31382c3138392c3230312c3130342c3137392c35302c39362c3133362c36372c3138302c37332c34342c36342c34332c3136362c3135302c3232332c302c32312c3230362c332c362c3138362c3134302c3130352c3131342c3130322c3235352c362c34302c3139312c3235352c35382c3136362c36302c34392c3138382c3139312c34372c31302c3230392c3232352c37372c32362c34312c3137362c3232372c3139332c342c3232302c34342c3135382c35332c3235312c3139352c3134352c39312c3232392c31302c33392c39372c33302c3139362c3231322c3139342c3132302c31302c32332c3133362c3131342c3136302c3134382c38392c35312c38332c3134355d2c22706f70223a5b3138312c382c3135322c3130352c34332c392c3138372c38322c3135352c32322c3235312c3136312c3230372c32342c34342c3135342c3235342c3130382c3135392c37342c3139352c3138372c3133392c37322c3133322c3130382c3137352c3132342c39312c3232372c31372c3130332c3131322c39342c35342c372c3134352c37382c39342c31342c39392c33372c3232352c3132362c32382c35342c35372c3137352c3137382c3133392c3230332c31372c3232302c3134392c3136312c32382c3135322c33322c34302c35322c33322c3232362c38352c36342c3135302c3137312c32362c32342c3134382c38392c3135312c3235302c3233382c34342c3139332c3139382c3135382c37352c3130302c3131352c3131332c3132332c3130302c3131372c35302c3136382c3232392c39312c31332c3130392c3135352c33382c3232322c3132392c3133312c3138385d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b31362c39372c32322c33362c3134342c3133352c32382c3232302c3232362c3137332c3138312c3135312c3233372c36362c35322c3137372c3130362c37372c3234372c37352c36382c38372c3137312c3139362c3231392c3233342c36342c34362c3139332c3231352c3134302c392c3134352c3230302c3132332c3232302c3231352c31352c31372c34372c3130322c322c3232372c36302c35372c3139352c3133362c3231332c3132322c392c39382c3131342c3132322c3134382c31352c35322c32322c34382c3231382c3131382c39372c36382c3232372c31325d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3136392c39302c3131322c34362c3139342c3130372c32392c3137382c37382c342c39312c3136372c3231382c36342c3230372c33392c38332c3131382c3231322c32382c32312c3139332c3134382c3130392c32352c3135342c3135362c3137352c32362c36372c39392c38312c37302c3234312c3233342c32322c39322c3131362c3139312c3230392c3131312c32332c3230322c36302c3231392c38392c35322c3132382c352c3234352c3138362c32322c362c3139332c34332c3133362c34382c32362c34372c3136342c3233342c3135332c3134392c3139392c3139362c3135362c3137312c3132322c39372c3136372c37382c36312c33352c3134362c39342c34342c39382c36352c3132372c3139322c3139312c3232312c372c3136372c3134312c3235322c312c3230352c3232362c36342c3137372c37302c3138382c3136362c34322c3131345d2c22706f70223a5b3137342c39382c3132382c3132302c3132332c3130302c3137362c37322c35362c31312c38352c3133392c38332c38392c3130342c32332c3132392c31382c3132312c3132302c3137332c34382c3230312c3232352c3232352c33322c3130372c3233382c39382c3234382c3231342c3232342c3130352c3139362c3131322c36372c39382c3233342c3135382c3235322c31352c3133362c3137322c3131392c33372c3137302c3232342c3136382c3136322c3233312c3133362c3134332c3137302c3232382c32342c3139332c3232392c35322c3233312c3132362c32322c3135322c37312c3232372c3134342c37372c3230332c3133332c3130342c3233302c3234352c37342c3130302c31392c3232332c3134352c36352c3232302c37362c32352c38362c3235302c39352c3233312c37382c3230382c3138332c3130392c332c35362c34302c3135352c3137372c3135302c38322c3134355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3135322c3135352c3235332c39392c32352c3234322c3234362c3137382c3133312c34342c32352c3234352c39382c35352c33342c36372c35372c33382c3132322c372c3233382c3235312c35382c3134362c3232392c3139372c38382c342c3137302c32332c3134352c3137382c3131362c33332c3135372c3234302c3232342c3136322c3138302c39372c32372c32352c392c3232372c3131312c3137322c3133312c35342c39382c3232362c3232392c31332c3139362c3135352c3135342c38312c3231382c3137332c34382c3139362c3130342c38362c3136312c345d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "354f245e4a4294998e8fee12966a5359747b160932b7377d6c2d6dad5aae33a7", - "certificate_hash": "c6098ace2c7cc8a5bae630f4008fe87249578abd2b1acc075302f3f31184d732", - "created_at": "2024-08-08T15:15:21.129338Z", + "hash": "308b491938f36c07502d42bd5df3648c02c3fa1fd702498867ac64aab77ccfc6", + "certificate_hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", + "created_at": "2024-09-09T12:58:58.611286978Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "46d949e8221f500632a2193069480026a890d73861fef2b4167622524f8c3f17": { - "epoch": 18, + "325fc4caddf05fc6fd76691282441520b9b2009967065c7762cd947aade7323d": { + "epoch": 55, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3134372c3131312c3134322c3233332c3235352c3137362c33312c38372c3234382c3233392c31392c3134342c3233362c36312c3138302c31362c3136392c3232362c35352c32322c37322c3231352c32382c3234342c3132322c3230302c3233362c31392c3230382c3233312c36372c3233342c3137352c3230382c34352c3235302c3232322c302c3233362c31332c382c3134342c3135312c3135382c32392c3136352c34352c33352c322c3135382c3130372c3233352c372c37332c3138322c3230382c38342c39372c3231332c3137392c3234342c3230372c3234322c3138302c36342c3138302c39382c3233392c3131372c3138332c3231392c35342c3130302c3136382c3233362c31362c342c3233372c3130352c3135342c3233322c35392c31312c37392c3139372c3132372c3139342c352c32342c3235342c392c382c3233352c3130302c3232322c3137345d2c22706f70223a5b3138302c3136332c35352c33382c3235332c39362c35312c3232302c3137382c312c3133352c3136322c3134352c3234372c3130372c3135382c3137312c3134312c35352c312c3230352c3232342c3136382c3136302c3139382c38372c39312c3135362c35312c3136382c3234312c3230382c39392c3231302c3135342c3233332c37312c3137352c36302c33362c3134332c3137322c36352c39352c3132322c3130352c36352c36302c3133392c3133362c3135372c3131302c3133372c3131332c3233302c35362c3131372c31382c3137352c33332c3134322c36382c3132332c38352c33372c3135372c33352c3136352c3131372c3136302c35322c38342c3132302c36382c3134342c3235322c39392c3135332c3139302c3234392c37332c3135312c3134382c3230332c352c38362c3234382c3136302c3234342c37332c33322c39382c3232342c3131372c36302c39315d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3139392c38382c3234322c3231322c34352c3234372c31302c39382c3133312c392c33372c37312c3135392c3137372c3232382c3234332c38372c392c3231332c32312c37382c3130352c3137372c33362c37372c32332c3233362c3231382c32342c3139322c34342c37312c3131332c3139342c3131362c3230392c34382c34332c3139352c3132372c33302c372c38372c34302c3230342c34352c3132312c3136372c3137302c34312c3131332c3235332c3233322c3130372c37352c3234322c38372c3134312c3230392c33352c342c3234332c31382c345d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3138352c33302c3235312c3133352c33372c39332c3233332c3138372c35322c3139382c3233352c3234312c32372c3134372c3137372c3132372c3135302c3233382c35332c3231382c3130372c36392c33352c3132302c3233352c3138312c3137392c3133362c32382c39312c3231302c32372c3134342c3131342c3134312c35392c3139382c32372c34322c3132332c3235332c3139322c3130392c3130312c3231342c36362c3235312c3235322c302c3135392c33302c3139302c36362c3234342c3138372c3232322c3136322c3130352c36352c36342c3131342c3235352c3134322c3230342c31322c31342c32382c3232392c3135332c33312c37302c3135312c3139382c39302c32302c3138392c3134332c3139342c3133392c35312c3132332c36332c35332c3134302c3234352c31312c3132362c3234322c3234382c3134372c3132392c3233342c37372c3135392c3136362c39355d2c22706f70223a5b3134382c3133332c3131312c3135322c3230392c3138342c342c3130332c3133372c3137372c33342c3132332c3131342c3132312c35302c3135332c38302c33332c36392c3131362c3139352c3235352c3138372c37352c352c3232332c3234382c3138302c3234372c3131342c3132302c3234352c3235352c3138352c32332c39302c3137392c3230332c35312c3235322c3230302c32302c3139352c3138382c3232382c3136352c3138362c36372c3135332c3131362c35352c31392c372c35382c32302c3233312c32392c38352c3134342c36312c332c3234392c3232372c3130312c3235342c31362c32372c35302c3136322c3133352c34302c3230302c3233392c3232302c36342c3139372c302c3234322c33322c33332c32392c3131302c3133372c3130302c3138312c3234362c33352c3233362c3135312c38312c3136362c34352c302c3232382c3232312c3135325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39322c3132372c3134332c32382c38372c3234302c38302c3135302c322c3235322c34322c3138352c3138342c37312c3232382c3139382c3132352c3137322c3130342c31322c3137392c3235312c3139302c3131382c3139382c31372c3133352c39302c3234352c342c3230372c38382c3138342c31312c3135312c3131302c32322c3130382c3231322c3234342c37392c3138392c3131362c3136342c35332c33332c3133392c35332c3135362c3231382c39332c3139312c3231362c3139382c32322c34322c3233332c3139332c36382c3131302c3235352c3232302c3233352c375d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3137372c3232382c35392c32392c3136302c3136392c3130382c3131342c3138312c3137362c31322c3135332c352c3235352c3233382c3232372c39302c3233322c3233312c3230342c3131352c38312c3137302c3139342c36322c35322c3232352c3230362c35342c3132302c3230322c3139362c3134342c3232382c3232312c35392c3130312c3135342c3232342c38362c3136302c3232392c37352c3233362c3133312c36302c3137302c35332c302c34372c3230352c392c3233302c3136382c3130342c3139362c3232332c3130342c3138352c3232332c3137352c3138302c37352c36352c3234392c37352c3130302c36342c3231352c3132382c3133312c3230322c3135362c36382c34312c3131392c3231372c3138322c3136392c3137312c31342c35312c3234342c3131342c3137392c3138382c3137332c3132362c36322c31322c35322c3232382c3137322c3134332c39352c35365d2c22706f70223a5b3133302c3231392c3135362c31342c39362c3139362c3134382c39372c36332c35352c3136362c3231382c31332c3134392c38392c3134352c35372c36322c3230322c33372c3132382c3136322c3139342c3136372c39362c37332c31392c32352c312c37382c35352c3132352c32382c3233362c3136312c3134332c34342c3235342c3134332c3138342c3132312c35322c3131302c3139382c3133322c33372c362c312c3132382c3234352c3137392c33372c34332c38362c3138322c3136372c3133322c36392c3233372c3231332c3131312c38352c3138312c3130382c3139352c3135302c39322c33352c3232382c3133372c31362c3233362c39312c34392c3131382c3137392c34332c342c3138332c3130322c302c3232302c36302c3231392c3235322c3132392c32372c362c37332c3133342c3131362c3137312c36332c3130312c3235322c3139365d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35302c362c3233362c3131352c3130342c36342c39392c3136372c3137382c36372c34382c3230392c3139312c3233312c3137312c3137382c3130302c3132322c3132302c34312c3233302c3133392c3139332c3131312c31362c3135332c3131362c3136342c31352c3132322c33312c31352c3134352c3133352c3137352c3135332c3134392c36362c35392c3134302c3134332c3134332c362c36352c3133312c32302c3139342c35322c35352c3235332c35362c3132362c3233362c3139332c37382c33302c3135342c38332c3136352c38332c3137302c31302c35372c385d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3134372c3137312c36362c34332c3130332c3234332c3231302c332c3130392c3131392c3231372c33382c3230342c35392c31342c38322c3235332c3133312c37362c3234382c37342c35342c3234362c3136392c37352c3134342c3136312c34302c34332c3235312c37332c3131302c3235312c352c37372c31352c3131372c37332c3131302c35392c34372c3137302c31382c3133302c3130332c37372c3137372c39372c322c38332c3132332c3234372c35332c3139372c37362c3135392c3235322c36342c3139382c3232332c36362c32302c3138352c3234342c3231322c3233322c302c38372c39332c3130372c3134362c3233302c3235322c3139352c3135382c3232312c37312c3131382c3135342c3134332c37362c3233322c3136302c39392c39362c3136302c35302c3134362c37372c35372c3230312c3130302c35302c3133322c38322c3133325d2c22706f70223a5b3134352c31322c3131382c31392c362c3232322c3134342c34362c32382c3135312c32392c3137382c3132372c3130382c39322c3232352c3139312c38352c3130392c3139332c3138322c3233382c3233362c302c3232362c3136372c3232302c3235312c3234332c3134382c3235342c35322c3132382c3233342c3230322c3130392c3230302c3130342c3234312c3233372c32352c3136372c31342c3231302c3231312c3232362c39352c352c3134332c33352c38352c33342c3132312c39362c3138332c3136352c332c3231392c3230382c3230302c34372c3234342c3136322c34332c3235322c3233382c3139362c39312c34342c38392c3231302c3231312c35342c34352c32392c36352c3233352c34332c3134372c3137392c3139302c34352c35312c3137382c3230352c36372c34332c36372c34382c3130382c3230382c36332c3131362c3135342c34362c3134335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b31342c3231302c3231312c392c3234302c34382c3131322c3132322c38332c39392c31342c3132362c3231362c3136352c3135372c3235352c3137312c36342c32352c3130382c33382c3138342c35392c37332c3139312c36362c3234362c38342c3134342c3230372c33392c39332c3230362c3135352c36322c31392c3133322c3137332c3135382c3130342c3130372c3137332c36352c39312c3138322c3233322c352c3233392c3135362c37322c3134352c3138352c3232312c3132392c3130332c31332c31382c34322c31352c3138372c3132342c37302c3133322c355d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "46d949e8221f500632a2193069480026a890d73861fef2b4167622524f8c3f17", - "certificate_hash": "55c9d1616a06a38cb274629f3de576b10b57d696da7494b4d7a2b425831e0772", - "created_at": "2024-08-08T15:15:09.891941Z", + "hash": "325fc4caddf05fc6fd76691282441520b9b2009967065c7762cd947aade7323d", + "certificate_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", + "created_at": "2024-09-09T12:59:25.929208404Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "4ff2fded35b81f1b9752259a9ed263261a3c6e91026994314c34d098f2221fc2": { - "epoch": 21, + "36dd031362399cff7e34ffbc7fc3143dde2c0cd30d517b5f83eca885a8d27b75": { + "epoch": 49, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3135302c3137392c3136362c3133352c3133352c3132312c3130362c3132342c3232322c33342c3139332c36392c38372c36312c39372c3233372c3230312c3233332c3138382c3234302c3135302c3232312c38352c3132382c3230372c3234362c36342c3137352c3136362c3133332c3232342c3230332c36342c35332c3234312c3231302c3130342c3139352c3230322c33362c3136342c37392c34312c3231362c3230352c302c3232322c34332c362c31372c33322c35302c3232312c3135392c3136362c32372c3234372c35382c35392c3231382c3234372c37322c3138302c32382c3136362c32392c3135352c3232392c302c3135362c3134312c3131372c3230352c3130322c3133362c3233342c3139372c3131342c3232372c32382c35372c3233342c3233342c3134392c32352c34342c3232322c36382c31332c362c3234362c3230302c38392c3131332c38302c33365d2c22706f70223a5b3135322c31322c3134362c3234392c3231312c37312c35392c3133302c3135352c3138382c3132322c3131332c3138352c342c32322c39382c34382c3134392c32362c32372c3134372c3136342c3136312c34312c3136382c3138362c39362c3130332c33312c35332c31322c3136312c3235302c3132322c3131372c3233392c35342c3234382c3137332c3131392c36302c3132302c36312c34342c3132312c3136372c3137342c3234322c3137392c3139382c3136362c39392c3136392c3131362c37322c37382c37382c302c34302c33302c3232382c3136322c3137372c39352c38332c3135382c3233312c3233312c38322c3234332c38362c3132322c3130352c32322c3137392c37302c3230352c3132372c3139392c38372c34302c3134322c342c3138352c3137322c38322c38332c37382c3133342c3231362c3135332c34352c3132362c3234342c3134352c3233385d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b32332c3235342c332c33372c3133312c3134322c38322c3133302c32372c3234312c37302c3230392c3132382c36322c3232352c3235352c33342c3131302c3233302c31312c3232342c38342c3233352c3234372c3137312c3137362c3136312c35392c38352c3137362c37372c39342c3130322c3131352c3135362c3232372c3234302c34392c39302c3138362c3138362c37382c3134302c3231342c342c3139332c33362c3130382c372c3234392c33362c39382c32332c3132392c3137302c33332c33392c3132382c34352c3232332c33332c3230302c3130342c31355d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3133362c3136382c3139362c3137392c35392c39342c36312c32382c3131352c33392c3130362c3135302c3134312c32312c3132362c3234392c3234302c33382c3135362c3136362c3235332c32322c35352c36302c3135342c3135312c3233332c33312c312c37322c372c3233372c3134312c34382c35312c38362c3134392c3233392c38392c34372c3232332c3230302c3231372c33312c39302c3136362c3137302c3131332c382c3134352c3132312c31332c36342c3137382c34332c31392c3130352c31382c32382c3137332c3230392c32392c3138342c3230332c31322c3136342c3130372c3133342c33302c31332c3139372c3130302c3138372c3133382c37302c32372c3231312c39382c36372c33392c3132372c3130322c38382c3232332c382c35392c31342c372c3139302c37312c3133322c38302c3131302c37332c38322c3135365d2c22706f70223a5b3134382c39312c3234322c35302c34372c3138312c3235332c35382c3132392c3230352c3137332c332c3132352c3132382c33372c3130382c3234342c3137382c37362c32322c3130302c3135312c34352c3131332c3232322c332c38332c3133302c3135312c3232392c37312c3131312c3139342c3234342c3130392c3135342c3139342c31322c34362c3135302c3232382c3131302c3230312c3231332c302c3234312c37322c3234372c3137302c3137382c3231372c3234372c3232312c3231362c34352c3234352c33302c372c39332c35332c3135362c33322c3136322c3234382c32352c3132392c3139382c3137302c36382c3136302c38362c3135322c36392c37302c35342c31352c3232302c3130332c32362c3133392c3232332c372c3134312c38372c3134332c35322c35372c3138332c32362c37382c34382c3131382c312c342c3137342c35385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35382c3139322c38382c31372c38352c3138372c3132352c3130362c3133322c3130392c3135392c3137322c3130312c38322c3130362c31302c3135382c39362c3230312c32392c3131372c38322c3130322c3138322c31372c3131342c3139342c37332c3135372c33352c35302c3139382c3136372c362c31372c352c3135302c3135342c3131322c36312c35382c35342c3137322c3235322c31352c3136312c3138352c3130312c3134322c3130362c33382c37372c32392c3233332c39322c34352c3232382c37372c302c3230382c352c3132352c32352c375d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3133392c3232322c3233312c3130332c37392c3133332c37372c3230302c3230322c3235322c3232382c3132372c3132322c3135382c3231342c3131312c3233352c3133342c37342c35352c3139372c3230382c32332c33302c3232322c39302c372c36332c3134352c3139372c39312c3137302c3230362c33372c3136322c31352c3232392c3137372c3135342c3133352c36352c36362c3139362c3231332c3135322c3130332c3233382c3132342c392c3131392c39312c3234302c3234332c3231332c3138312c3135322c31362c3137322c35382c3230352c392c3131312c352c3230342c3233352c342c32302c34322c3233362c32302c32312c33302c36332c35352c35382c3235322c3136352c3139342c3130382c36302c3134322c34352c36332c3234362c3230362c3230352c32312c39382c36352c31362c3136342c3134382c3138392c3134312c3138302c38355d2c22706f70223a5b3134332c3137312c36362c3137332c3139352c3138352c3135342c3135322c3132362c3230392c37312c3139382c3132372c3134392c3132382c39392c32312c3137322c31352c3138332c3131312c3133302c32312c32302c3130392c3131332c3131382c3132302c3232302c39362c35322c322c3138312c3232332c33382c3131302c34382c3230372c38302c3139352c3232352c37382c3133372c3235322c32302c32342c34322c3231332c3135302c3235322c3234362c33342c3230302c3233382c3134352c392c3137392c31312c36302c3136392c36312c3233392c3138342c38352c3230392c3231312c3132342c3139352c39382c3139362c3136382c3130362c3135372c37312c3132382c3231312c35362c3135302c3139362c33352c3137342c35302c34302c3234342c39322c3231312c3136392c39372c33322c32392c3137392c3135392c3133362c36382c3234302c3131355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b31342c3137312c3134332c37322c392c3233352c3232392c3130352c32362c3131372c3133322c3231312c39302c32302c35332c3138392c3134302c3131312c39312c31342c3232362c3233312c3137322c31362c32302c3137392c3230342c3136342c3138342c3235342c3230352c32352c3134302c33312c312c3137342c35372c3235312c3138342c3137342c35392c3139382c3134382c39302c36302c3139352c3132332c3230302c3138392c3130312c3138312c3132382c3230372c3230392c3137382c3234372c3132372c3233382c35342c36342c3233342c3138382c3135332c31315d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3138332c382c34372c33362c3130322c33322c34382c31342c3230372c32392c3132322c38352c3233382c31312c3135372c3131322c3130332c3230312c3233392c31302c3233322c372c3233342c3135332c3231392c3136312c38382c34342c38352c3138312c35322c35352c35312c3234342c3232392c3235312c3138362c3231352c3234322c3138302c3136362c35312c3132342c3132302c36362c35302c37322c3135392c32312c34352c3131342c3231352c3230382c3131322c3232382c35332c3234352c38392c31342c32352c3138392c3136382c3135372c352c3134322c3232382c3232392c3232372c3232372c3134382c31342c33382c362c3234312c3233392c3139372c3137372c3134392c3231372c3130302c3134362c3233372c37312c3234302c31362c3133322c37352c3231392c3232332c332c3136342c36392c38312c3135382c3135322c3139335d2c22706f70223a5b3137382c3233342c3232372c3139332c37302c3133372c38392c35342c3131302c3233312c35312c38322c3235312c37362c3133362c3130322c3138362c38332c3235322c3231322c3234342c372c3136352c3133332c3136302c34352c35322c3233372c3133342c38392c3133312c3231332c3134382c3133312c3138362c3135322c3234342c3134382c32332c372c322c3139362c34342c3131322c3233312c37302c3130372c3234342c3134382c3232382c3130382c35322c3137352c3139322c3134352c3133392c31302c3233322c3136362c35332c3138382c3234342c3230332c3230392c3230312c3131322c3230342c38382c34362c3130312c3231302c35342c3133382c34312c36352c3232332c32392c3138382c36392c3130352c3132342c3134382c35302c34312c32342c34352c34372c31332c3230322c3138332c3232312c32352c3231382c33342c3232312c3139355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b37362c3235302c3132372c35312c3134392c3135372c3235302c38342c36322c35392c32302c3137362c31322c39332c3234362c3231332c3139352c3135302c3134342c3132372c3132352c3230382c3231322c3139382c3133372c34332c37302c3131372c322c32372c31362c3230372c3234312c3235322c36312c392c35312c3130342c3233302c3232352c3132382c3135302c31352c36342c3136352c3232332c382c3133382c3235322c3133302c3231302c3138372c38352c34372c31352c3131312c3233332c3134302c34302c33382c39322c3234352c34312c345d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "4ff2fded35b81f1b9752259a9ed263261a3c6e91026994314c34d098f2221fc2", - "certificate_hash": "e48d141c42af3e4ea9893b95f59caff5dea3744163b7263d4cab7a4d5d669dfe", - "created_at": "2024-08-08T15:15:18.283018Z", + "hash": "36dd031362399cff7e34ffbc7fc3143dde2c0cd30d517b5f83eca885a8d27b75", + "certificate_hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", + "created_at": "2024-09-09T12:59:09.117508954Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "5084356d0fc077428acefe3030ca7d060cdcc9dae5992bed38ae1c7094fea0c6": { - "epoch": 14, + "44d0c581f5945421af350bc5ebfa2d9062e198c9b06fac430c5e0e837cff1977": { + "epoch": 46, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3133332c38322c32382c3235312c39342c3233392c3130392c32302c3131312c3137312c3232332c3136392c33352c3133362c33392c3134372c302c3232302c3232322c3134302c3131332c3233362c3136392c35312c3133382c33332c3132312c3132322c3132352c3231302c38372c39382c36302c3132372c3138362c35382c3230392c32332c3131312c34312c3134392c37322c3231332c3234372c3135312c32322c3139362c35382c332c3234372c38332c3130392c3132362c34362c31302c39332c36302c3134382c3136362c3139352c37362c39392c3232372c3135392c37352c3133322c3234392c3232352c3234342c31312c38332c37332c3231322c38312c3230352c37332c3234322c3232312c3133352c36342c3130312c3135332c3134392c33312c3138312c3230352c3130322c3132302c39342c32382c36322c31302c3137362c3137322c3134332c38345d2c22706f70223a5b3133352c3230392c35392c3230312c3131332c3138372c3231392c3130312c3139362c3135322c3230372c3138342c3136372c3233322c3233322c3233372c3133382c3138322c36352c3139332c3130382c3230382c3137352c392c3134382c3130392c36332c35312c3132302c34312c3135302c36302c36352c31362c3136372c3136382c3132332c3235342c3130392c3135372c3136312c3135342c3235302c3137352c3233312c3231322c362c35322c3137342c3135372c36312c35342c3131392c3139332c31382c3131372c3234332c3137352c39372c3136332c33302c3136372c34302c37362c3139362c3134392c3136362c33382c31372c3134382c38382c3136372c38362c3137342c3131342c3132332c3133342c3139342c3137352c3135312c39372c34312c35372c34382c3233302c3138352c3133372c3135312c3137302c3137362c3135372c3232382c3133352c3132302c3132332c37375d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3134312c38362c3134302c3231322c38382c3132382c32332c3136352c38332c33392c3233362c32352c32342c3234382c32322c3230322c37332c38352c3135312c3130382c3136302c34362c3134332c322c3139332c3130382c3133302c3138362c31362c3132332c3134312c34322c392c3136332c3138392c372c3132362c36312c39352c33362c31312c3131392c3132352c39362c36372c3131382c3232332c39332c3133382c37342c3230312c3234322c3134382c3133322c3235332c3139372c3233302c38382c3233312c3139302c3134302c3234352c3135382c365d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3138342c3130392c31392c3139332c38302c36382c3234352c3136342c3230322c34382c3231322c3139332c34352c36342c3134342c34342c3139392c33342c3230362c3234372c3233302c3138382c33302c3233342c3233352c3135342c3232302c3133392c36332c3130372c36352c3230372c3137342c3130372c3233332c32372c36382c3234312c3131372c3137362c3130382c3139362c3235312c3134352c32372c3130302c31362c3139342c382c3134342c3139342c3134332c33332c35372c3233352c37372c3135342c3131352c3139342c3136302c3131382c3135342c3139382c3139352c34392c3135352c3135322c36352c3138302c38352c3234352c3230302c3230372c39322c3133332c38372c39332c3131312c3130322c3134302c3132342c3135342c37342c3133362c3230322c3134342c3235352c3130352c3232302c3231302c39352c39302c3136322c34312c322c3230355d2c22706f70223a5b3136332c33332c34322c38312c36382c3231382c3136332c3233312c3138382c35302c362c3234362c3132392c3233382c3235332c3232382c37332c3134312c3230392c34392c3139322c3132342c37382c3233392c37302c39362c3230372c3231312c31382c3131352c3132312c3137382c3234392c3235312c3139352c3132382c38342c3231332c37332c3232352c372c3137372c34342c3137332c32362c3138382c3136372c32372c3134302c39352c3233392c3231372c3233322c31382c3231332c3139302c3232362c3138332c3232392c3131302c3130392c3132372c3231392c3136372c37322c35312c3138322c33382c32362c31362c36372c3136332c3136302c36392c3137372c37302c36362c3130302c35332c3235322c3132332c36362c3132392c3230382c3231302c3130352c32382c3132392c36312c3136312c3130362c3230342c38352c3131382c3131342c3131385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3231372c36362c3135362c38352c3138322c37372c302c35322c36332c3130352c3135342c37312c3234322c37392c3130342c3138352c31362c31332c3234342c3232372c38372c35372c3133312c36352c342c38382c31382c31382c39382c3137302c32352c3235302c3135342c3134352c3131352c3230352c3230342c35342c36352c3135332c3232382c3230372c39342c302c3137382c3134392c37322c3130382c3138342c3231392c3136302c3135322c39332c3130352c38362c3235332c3231342c3235322c33372c3130352c3133332c382c3232382c31335d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3133312c3131342c3230332c3233312c35362c3133382c38382c3131312c3231352c37352c37372c3230312c3234322c3233372c37382c31392c352c3137312c3139392c32352c3130312c3136372c3139322c38342c382c37342c3137362c34362c3233382c33372c3136392c39302c3231342c3230322c3232302c3132372c3234312c39392c35362c31352c33382c3132362c36382c3234392c3233392c302c37362c3134332c31362c3231382c3230332c3136332c3231312c3138372c3231312c33382c3131322c3136382c3137302c3139362c31342c3133332c3235332c3136352c3135322c35362c3133302c3137312c3134392c3131302c34352c3131392c3130342c3232372c3139312c3233362c36342c35352c3130322c36372c3233332c3136352c3231332c33352c34302c3231372c3233302c3231342c33392c3234302c35322c31322c3135392c39382c3134392c39365d2c22706f70223a5b3137392c32312c3234392c3234382c33342c32322c3132332c3234342c34322c34342c312c3233362c3137352c332c39352c3134342c3234342c3132342c3137382c3232302c3136352c31322c3234352c3232362c342c34392c3130372c34312c302c342c33372c3134322c39382c33392c3133382c3232342c3136342c3230382c3136352c33372c3139322c3137342c3232332c38322c3131342c3134382c36322c31352c3133392c3231342c34332c3138312c3231372c3233372c37372c3230322c312c3137352c33352c3131322c3232392c3233352c3130372c33302c39392c3234382c3235322c3133372c3232382c32332c3235302c3134352c3138372c3231352c3132362c3232372c3134372c3235302c3132302c3133342c3136362c34312c32342c3131322c31362c3132362c3137362c34302c3232382c3130312c33322c34322c372c3233392c35332c3139345d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35342c33322c38302c3133322c3139322c3130312c3232332c3136382c31382c3135352c3131342c36312c39312c3136352c3134392c3133342c3136362c3134372c35332c35362c3138302c3139392c3134332c3232362c3234332c3133372c3139382c3133382c32312c34342c3232342c3231332c3132342c3132302c32362c35332c3234372c36382c3234352c3230312c3232362c3234392c38302c3139302c3135322c3130392c3137382c35382c3139322c3130392c31352c32362c3133352c31302c31302c34302c33302c3235352c3135342c33332c3232342c3136362c38362c325d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3133312c3133352c35332c3232352c35362c35302c3135352c3136372c3231382c33332c3232392c3231352c32352c3139312c35322c3232382c36322c3132372c352c38382c38302c38312c34372c3230392c3138372c3233362c3231332c3138382c3139312c3235352c32382c31322c36332c3233372c3137352c3232372c3135362c32352c3138352c3133382c3231372c3137382c3133352c3138352c3134332c35302c3133382c36312c392c3139352c3133332c38332c3130342c34302c3139392c3232302c3234362c3230372c3133322c3133392c36342c3131332c382c3130372c32352c3138372c3234352c3139312c342c3137312c34352c3233382c3139382c3130322c39372c3134312c3133372c3133362c3235352c39302c3131352c3132352c3136302c3231342c3132342c3137322c3133362c34362c3130322c3137332c3136302c33332c3234382c3135352c3135342c3138385d2c22706f70223a5b3134352c37332c32382c3138342c3234342c3131392c3235342c3135352c3233302c31342c34332c39302c3232362c3131322c35382c37392c3230352c3232372c3130352c3134362c3136372c3137362c3132302c37382c38362c3232352c3134392c372c3230382c3231352c3233352c38302c3130372c34362c3233382c39392c3231322c3233362c372c36392c3139332c34382c3232362c39342c3131382c3139382c3133372c3139392c3136322c3232372c3135332c31342c37382c34352c3233342c34332c3232332c3234352c3232392c3139362c3235312c3235312c38302c37332c32302c32392c3130382c32302c34382c33342c31372c33322c3131322c3234332c3130342c3231312c3135322c3136362c3130382c3231312c3136312c3136352c3233372c34312c3232362c3232372c32352c35342c3139392c3233362c3133342c36312c3235352c3231322c3131302c3133365d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3231322c33342c3230362c3138352c3231332c3131362c3233322c3130342c34352c33382c39312c3232302c3130322c3231382c39382c3135352c3130352c3130342c3130352c34332c33302c3232332c3138302c3138362c3232312c3232332c3131372c37302c3130372c3138392c3233312c38312c3233322c33362c3234372c35362c3231332c3231392c3132372c36322c3234372c34312c3232392c34332c3136392c3135342c3133392c3235312c35392c3137342c3136392c3232312c39302c3230322c34322c31312c3230312c3232392c3132312c32372c3136362c38382c3130322c355d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "5084356d0fc077428acefe3030ca7d060cdcc9dae5992bed38ae1c7094fea0c6", - "certificate_hash": "200ab2987880b3e983b1113be17fefb0f1f12a2baeec3c00bab24f41b9c88687", - "created_at": "2024-08-08T15:14:58.665909Z", + "hash": "44d0c581f5945421af350bc5ebfa2d9062e198c9b06fac430c5e0e837cff1977", + "certificate_hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", + "created_at": "2024-09-09T12:59:00.656190308Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "6865c13807a0f0c35c83ed098dcf0b7c337baca7cd43ca5e7de7f314728cbdd2": { - "epoch": 11, + "4c2f40f8565355fa1bdf702c37efb1433e3b6c27dc97310c891623f7255e8a10": { + "epoch": 54, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3133322c3136362c3137302c38312c3138382c37392c34312c3131352c3137322c3139342c3131382c37322c34392c38322c38382c37312c332c35382c34302c3132362c39392c3133302c3234392c3133372c36392c33372c3134372c3139352c3130332c37392c37322c3232372c35302c35372c3136302c33332c3232312c3232342c3135312c3137352c3139312c33322c38362c3230352c32312c3132332c3230312c3130352c392c312c32312c34332c3131372c31392c37362c3136312c3230352c33302c36382c3135392c38382c3138332c3131332c3233322c32382c3139302c3132302c33312c3133342c3230382c34392c39302c3233392c3136372c37392c3232302c34342c32352c3135352c3233342c37322c3234382c3130362c3135372c3233302c3233312c3130352c3136352c372c3133332c372c34362c3139362c36392c34382c37395d2c22706f70223a5b3134382c38322c3235332c32332c3133382c36382c3130302c3235352c35302c3132302c3139352c37392c3230312c33332c3130362c3134392c3230332c3230372c32392c3230362c352c3233302c3235312c32382c3131352c33372c3231392c38362c37382c32362c3231322c3132392c39382c3134312c32382c3136312c3234392c3132342c3136312c31302c3138362c3234392c37392c3231372c3138382c3230322c35332c3139312c3133392c3139302c35372c3130392c3135302c3234392c3139332c3134342c3139362c3134332c34372c3231302c3130362c3139382c3139392c3133362c37322c35392c36312c38322c37392c39312c3132302c37352c37312c33352c31322c3234312c39332c34342c3133342c36312c3230362c3133322c31322c3232312c32382c3230312c3231352c3135312c34322c39322c35342c31332c33312c3231382c3233312c355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3133312c35392c3131352c3134382c3138342c3230332c3136392c3231322c31362c3138302c3137362c322c3132352c3135332c352c35362c37332c3131362c31352c3138322c302c3138382c3130352c3137382c31372c3136362c39322c3134392c3233312c3233322c35372c33312c3130332c3138312c32312c332c3138362c3134362c3139342c3136342c37322c3231312c3234392c3138352c33392c36392c36382c33362c3134322c342c3232382c33362c3136302c3234382c3137382c3131362c34362c3138342c3232372c3134372c3137312c3138392c32322c395d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3135302c3231382c34332c31322c3137352c312c38302c34332c34382c3230352c3135362c3136382c38342c3231332c3132322c3134332c32392c3137302c3134332c3139372c3132312c33312c3235322c32382c3231302c3231312c3231382c32302c32322c3230302c3233352c3230382c3230362c33382c3132352c3231392c3135352c3139362c3135332c3233322c3134312c3134322c35392c36312c382c3232342c32382c3137312c31322c3234342c3138352c3135372c3137342c36392c3233372c3233322c3133372c3234322c3235332c3130342c3135342c3230312c33372c3234392c3231392c38392c3137362c34302c3233382c37322c35362c38392c33342c3136392c3137302c3230382c3231322c3231342c3234312c34352c3231372c3230372c3137312c3136302c3132372c3136332c3230302c3136342c3139372c3137382c3132312c3133302c3231332c3133372c3133322c375d2c22706f70223a5b3133322c34322c3135352c3137352c3130302c3130342c3135392c31332c3136352c3136302c35392c34382c3137302c36352c3231362c3132392c3139382c3233332c302c3232352c37302c31362c32342c3130332c3137352c3134322c3231342c3138332c3133392c3232342c3132322c362c3131372c3135392c3138342c3230332c3233332c37302c38322c3133332c3136382c31382c36302c31312c39312c33342c3234362c3135302c3134382c3131342c3131332c37382c32322c39392c3139352c3232382c3130332c3232392c3231392c3135342c32312c3133392c33322c31372c34372c36302c31312c3136302c38312c3130392c3130382c3130302c3235322c3130372c32382c33352c3231332c3133362c3232302c3133332c36302c3235332c3136302c3137372c3136392c332c39322c3131372c3232342c39352c33312c3234352c3136342c35392c3233372c3235305d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39352c3130302c39392c322c3234372c34372c3136342c33352c3137372c38312c3131382c3133362c3131392c3138342c322c3137322c3230352c3232332c3138332c38322c3131302c3234362c3234332c3130332c3135362c3230342c322c3232322c3131322c3134312c38382c3135332c3233322c36312c3235342c3231382c3230382c32312c3138352c35382c3132362c33362c3136382c3133332c3137312c35352c3131312c3234372c3234322c3138382c3230342c3235352c34382c39302c3135302c32322c3231322c3131362c3235312c3130362c37302c31322c3137332c335d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3132392c3130342c32372c3132372c3134302c3232312c38362c3234342c3130332c34342c3134392c32342c3138382c3138392c3138372c3234312c39382c3137342c3135352c3230352c302c3130392c3138352c3135332c34372c3135302c3134312c3134392c3234302c35302c39372c38332c35352c36332c3138322c37302c38332c3232302c3233342c3137312c3139392c3132372c3134322c35302c34382c3234342c3134332c3232352c31332c38342c3136372c3136382c3232312c31362c3136302c3136322c3136352c33302c35302c39372c32382c35382c3234302c34382c38392c3130392c3132372c37322c35302c3234372c3132302c32322c3130382c36352c37352c3132382c33362c3230302c3136372c3136392c3139392c3231302c3235322c35362c3136332c3233342c3232332c3130372c34312c3130312c3230332c36372c3138302c3230372c322c3139335d2c22706f70223a5b3137312c3139362c35312c3233362c3233342c3235342c3232322c3132362c34322c39372c37332c3139372c39382c3139382c3132322c31332c34342c3139362c34362c3137392c3230352c37302c3138322c392c3139312c37312c3231342c3232312c3230362c3131362c3234312c3232372c3130392c35302c3130322c3135302c3233302c3135312c3134322c33322c35312c3235342c3235332c33382c322c31362c3130382c3230312c3133342c3139342c37342c3231342c3230332c3133392c3135352c38302c32312c3131362c32332c3131312c32352c3230302c31382c3232302c3136322c3132382c3138392c32382c3134352c3133342c3138332c39312c3139392c39312c35362c3137392c32382c31362c35302c3131302c3133362c3231342c33352c372c3133382c3139302c3232372c3230342c3232312c38302c33312c3132312c3134312c3231352c3133312c3137385d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3233332c31392c34392c3232372c3233382c35342c3136362c35322c3231322c3131352c35362c39322c3231312c3137322c37312c3232352c34322c3133352c3135302c38352c3134322c3136372c3230312c3130342c3135382c35382c3132372c32362c34352c36312c3232322c3134352c38322c3136302c31392c37332c3130372c3133392c37342c3234352c3131392c3131342c3235352c36302c3138342c3231332c3139342c3235302c3132372c3234312c3135362c372c372c3233332c3233382c37302c3135322c3131302c3231372c3234362c3139322c3135342c3234362c31345d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3134302c36382c3138392c3139322c3235302c3131382c3133302c3130322c3132342c352c3131352c37322c36352c3132382c3130342c3235312c33352c3130322c3233382c3231312c3136352c3137332c3135352c3134332c3231302c37392c3136322c3139312c3131302c34332c3232392c3135302c3138362c32302c3232342c39392c3139372c34352c34332c352c36342c32392c3131382c3139322c39382c33302c36342c3132352c382c32362c33352c35342c3134312c3136382c31392c3232342c36342c3131302c3233372c31342c34342c34312c34362c3130302c3133392c3135392c3135352c34372c352c3235332c3231322c39312c35302c3134392c32332c3231332c36302c3133392c3137322c382c3230352c37382c3234362c3234362c3138342c3133342c3137392c32382c37312c3231372c3134322c3137332c3233392c34302c322c3136395d2c22706f70223a5b3137352c3230382c3136352c34332c31302c3137322c35342c36382c3233322c39322c34382c3138312c3132302c34302c34382c3135362c3234302c3135332c3136392c3132392c39372c3133332c38342c3133322c332c3137362c3139372c3136342c3134302c3233332c3131342c35342c38332c31382c3139342c34372c34382c3137352c3132312c3230322c39342c32362c3138342c302c3132362c37372c31362c3233342c3133302c3139352c3131322c34372c3231302c31302c3230362c37342c3232342c33372c3130372c3234352c3139372c37302c3135332c34342c3135302c3133392c33322c3232302c35302c33312c3133352c3234352c36372c3139362c3133362c3230372c3231322c3138362c3230312c38362c3130342c3135312c32372c31352c35302c3130372c3235342c3137322c3230342c3230392c31302c3134312c3231382c3232332c3137342c31325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3136312c3138312c31372c3131372c3131312c3134362c3133392c39312c3234322c39342c3235352c3130302c3136322c3136382c3230342c38362c3136342c3133382c3139352c3234392c39312c35332c36342c33332c34382c39332c3232322c32332c31302c3133362c38342c3232312c3137322c3235342c3232332c36362c38322c34312c3138332c32352c38322c34322c3137372c3137382c3136352c36302c3138342c35342c3137352c3134312c3137382c312c36312c37312c32352c3235302c37372c3232322c3139332c3232342c34332c3133352c38372c31325d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "6865c13807a0f0c35c83ed098dcf0b7c337baca7cd43ca5e7de7f314728cbdd2", - "certificate_hash": "5185d40099ae179282ec0c77a04d0678898272d238e44e4430a6abf1cbe507af", - "created_at": "2024-08-08T15:14:50.280363Z", + "hash": "4c2f40f8565355fa1bdf702c37efb1433e3b6c27dc97310c891623f7255e8a10", + "certificate_hash": "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4", + "created_at": "2024-09-09T12:59:24.638170847Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "6fc81673dd2470ef185fdac57d2dccc477ed87b9258d52b24025d43968f01785": { - "epoch": 19, + "514cbc9ef9a90d9e641ac86005517d1d66a6f41baf1066101e6471b0f36473c7": { + "epoch": 61, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3136312c3136332c34322c34332c33302c382c3139312c34382c3235342c38352c372c3132322c3233372c3134352c3134322c3230322c31362c3139322c3134372c33352c39372c3232332c3232372c3230372c33352c3138322c3231312c3130312c38302c3134372c33302c3230392c35322c3133392c3136312c34302c3131302c3136352c3232362c37312c3130352c3233372c35312c36342c3135312c3232392c33302c3234382c352c3139352c34382c38312c3137302c3130342c35362c3233332c35362c3135392c3137352c3134372c3135352c33342c3132372c3135312c35372c31372c3131372c33352c3231332c3139342c3131312c3131392c3135302c3131352c3131372c36362c3235312c37392c3231352c3132322c3132342c3132392c34322c36392c3231312c31352c3139312c3135352c3136382c3138332c372c3233372c3233382c342c3138322c3138355d2c22706f70223a5b3133392c38312c3132342c37352c3135352c31332c3139342c35332c39342c3235352c3233312c3131312c3130382c3232362c3235332c3231322c3230302c33382c39352c3233372c32332c3138362c3139312c31372c3231332c3234352c3131362c3230342c3231382c3139332c3231342c3230302c3234372c3131322c38312c3137382c3133362c39342c3139322c3138342c31332c3232372c39342c37342c312c37302c35372c3233352c3136352c3133332c3235352c3134322c3234322c33392c3233302c32352c37372c3134352c3233362c34312c31372c3231382c3232322c3232332c39312c3135322c36312c37392c36332c3133342c37382c35362c33332c3233372c36302c36342c3231342c37352c3234322c3136322c3136312c3233352c3232312c3138332c3136372c39352c37342c3231332c3132302c3133382c33312c3130372c39362c33322c3130322c33325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3137382c32392c3133322c3232382c3135362c33352c36382c3232322c3138332c3134342c3132372c3132322c3139372c312c38332c3137392c3130302c3135312c38372c3234372c3139382c3231352c3230322c35382c3130342c3131342c3130342c3231322c3136312c33392c34392c3137312c3133382c3134392c37352c3135302c37352c3233322c3231392c3138382c39362c3132342c3233372c3235352c3232352c3137312c3135382c3232392c3135312c3232362c3136382c36352c38332c36392c3133342c3231372c39342c3233382c31352c31362c3234352c3233362c3131342c335d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3138332c322c35312c37362c3233342c37312c3131302c3133382c3234312c3232392c37362c3234372c362c3136362c3234372c3130352c3135382c39322c36392c31312c3234382c3138322c33332c32372c3133372c3136362c3232352c3230312c3135362c3234372c3230312c3138372c3138372c3133312c36362c3131342c3230372c3234322c36392c3130372c3231332c35302c3233342c35382c32392c3233382c362c31332c31342c3138352c35382c3139382c33312c3134372c3232312c33332c3232322c33342c37362c3230302c3133332c3233312c3232372c32332c352c3139312c3139372c35302c38312c3235302c37302c3137382c3136382c3139332c3232382c3134352c3134372c3135322c3136322c3130322c3136322c3234352c3231302c3230392c38392c3132352c3136342c3230332c32362c37372c37362c3130342c35312c3131382c34362c34395d2c22706f70223a5b3137352c362c36342c39342c37362c3233392c31322c31312c3232392c3136332c32362c3233392c3130312c34372c3230382c3134342c3139372c3138372c3136392c3233352c36362c3235332c3131392c36312c3230362c3135332c3134312c3131312c3234322c3132302c382c33392c32342c3232312c3230352c3138302c3133382c3133342c36382c3138322c35332c3231362c3233392c3136362c3230372c31382c35392c3130332c3133372c35392c3235352c34342c3139322c37312c3131352c3133342c3234312c3232302c38362c3134372c3134312c38352c3130302c34382c3139342c3132312c33332c33332c3230302c38332c382c37312c3137322c3137332c3132322c3231332c34322c3233332c31322c37342c39342c3230332c3133372c312c34372c3139342c3136322c3137322c3131372c3233392c3134362c37302c3234322c38332c33362c3232385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b33322c3136322c35352c3230392c3139332c3133352c3134362c3132392c3137342c3138352c3130372c36392c3136312c34392c3234352c3232362c3132302c3137322c3136342c37322c3136382c3233362c3232352c3130392c3130362c3235332c3133372c34382c3130302c35362c3230312c39342c34352c3138392c3131322c3134382c3234302c362c3133392c3133392c342c34342c39382c3138302c3235352c3137362c39392c33342c32312c3139342c3233362c33372c32392c3233352c3232342c3233362c3133312c3133302c35392c3134382c33352c36302c36392c375d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3133342c36332c3235352c39312c3131332c3235332c352c3230332c31372c3233342c3234382c3134352c3138322c3132342c3130322c36302c35372c36392c3233392c3136332c38362c3136302c3139392c3137352c3134302c3130382c31382c36372c31302c3137392c33312c3139302c3235322c3235302c3131312c3131352c32342c3131302c31372c3231392c3233382c38312c3230382c3132322c3139352c33352c3233372c34372c392c31362c33382c3135332c3136392c34342c38382c3233352c3135352c3233372c3234302c3133342c3135312c33352c31332c3137312c38332c3232352c3132342c3230322c3232332c37322c33302c3132352c3134322c3136352c3138352c31332c3232372c3231352c33342c3137382c3136352c3132302c39312c3230392c3136322c3136392c31302c3130382c31392c31392c34392c3136342c3235322c3133312c3232362c3130325d2c22706f70223a5b3137372c37332c3234352c32312c32312c32302c37392c35312c3136312c3232382c3133392c3130332c3235352c32372c3230382c3131352c3231322c3136382c32312c39322c3138322c3133342c3134372c36372c3234312c3135302c3134322c3235342c36352c3138302c38312c3235342c3136382c3139372c3133352c3139302c3234302c3134382c3231362c3131392c3234392c3233312c3133352c31372c38392c3138332c3135352c36372c3137312c3139362c3136342c3139392c34342c3131352c3135302c3231352c32342c3134392c3136392c3231332c3232392c3230372c3130362c3130372c39372c3131332c3234322c38372c3230382c3131342c33332c342c38372c3139392c31392c302c35302c38392c3137362c32392c3234332c34342c3137352c31392c3130362c3131382c3138302c3138372c3131392c3234312c33372c38302c3134322c32372c3137372c3138305d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b342c3139352c34322c39352c3130342c3139342c38302c3230362c3138352c3136382c3133322c3131352c3230352c3131342c3137372c3137322c39312c3230312c35302c3134332c342c3234372c3130352c36352c35342c3230302c3234362c37302c3139382c3233322c3134332c3137372c33372c3133332c32302c3130302c39342c3137372c3133302c3232342c36382c31342c35352c32342c3232382c3137392c3130322c3230382c332c3231382c3137342c3133352c3231332c3133372c3132342c3234342c3133312c3233382c3132362c3233302c3135342c3230352c3233392c355d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3137332c3133332c3135392c3136312c3133362c3135342c3139332c3139392c31322c3134322c3131332c35382c37332c3133332c31342c3137392c37362c3234342c3231322c3230382c3136352c3138322c3139302c3139332c33332c34362c3234322c3230302c34322c31302c32332c31372c32332c3233362c3131322c3136372c3138302c3135322c3132372c38352c3234362c34332c3132352c39302c3133312c3137372c31302c34322c31392c3234352c3136302c3132332c3133372c3131382c3136302c31312c39352c35352c3131322c3131302c31322c32382c3134392c31382c3131372c3136392c31332c39362c3233332c3233312c31352c34342c33342c3131382c38372c33362c3131392c3235322c39312c39302c38342c3134392c36342c34382c3133392c3230372c31392c3133382c33332c3132302c3133342c3130382c342c3134342c3133322c32345d2c22706f70223a5b3137342c3139392c3230362c33392c3234392c3138382c3234322c3234352c3231392c3233392c3134312c3130302c34302c3139302c3133392c3138382c38302c31302c342c3135362c3137302c3131352c3136352c3138382c3230312c3133312c3136372c34372c3136322c3135352c352c39342c35312c36372c3136342c3131372c3230302c39332c3230302c3137392c34332c37322c36382c39302c3234332c3136362c3234312c3134372c3138342c342c3135352c33392c3130362c32372c3136362c3234302c35302c36322c3230342c34312c3131312c35322c3130342c3234372c3133342c3133332c3133352c3230332c32332c342c3235322c3234312c35392c3136342c3231352c37332c3132312c35302c3135372c3132322c3232362c3231372c3138392c352c3232332c342c3133342c3132302c33392c3234382c38382c3130382c3135332c3135322c3138322c3130375d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39362c38332c3132382c3234312c3234312c35372c3232362c31392c37342c3235322c382c35312c34382c3139332c36332c37312c39302c35362c34302c32342c3136382c3137372c3231392c3132362c32362c37332c3234392c3130362c3131362c33362c31312c37342c3137352c36372c37352c3133312c3131382c3132352c3138322c3133392c31362c36312c37362c3133332c3130342c3139382c3233382c362c3234332c3231332c3235342c312c3134302c3137302c3230382c3235332c392c33342c39302c3133362c3137312c3132322c3130352c355d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "6fc81673dd2470ef185fdac57d2dccc477ed87b9258d52b24025d43968f01785", - "certificate_hash": "54ee1cd2787d47b3920bc2b90bb81e45b31a4867d2549fa8a86f12efea84affb", - "created_at": "2024-08-08T15:15:12.725023Z", + "hash": "514cbc9ef9a90d9e641ac86005517d1d66a6f41baf1066101e6471b0f36473c7", + "certificate_hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", + "created_at": "2024-09-09T12:59:44.557406440Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "7cbbd5b1bbcb735316c39145ae7e2e13e3baa0450c0ef937396395909569c053": { - "epoch": 12, + "54090b48c481828f1e84f0400f7bf96224567fb11c232be30dec56b325cf78a0": { + "epoch": 53, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3137312c34382c35382c31342c32362c36352c3134332c3130362c31342c37352c34372c37382c37372c3130392c3136382c3233312c35322c3139392c3234312c3139322c3139312c3138322c39362c372c3234362c3131332c38312c34342c3139352c33352c34362c3138352c37332c3139312c3134322c36382c3138342c37362c3230362c36332c39372c33302c3234342c33382c3235332c3234322c3130312c3137382c352c3130352c37372c34342c3232312c3230312c36322c3131382c35302c38392c3138372c3139302c3135342c33352c31302c3234362c33302c3136362c31372c35322c35372c3136302c3134312c36302c3131312c32302c3134392c3133322c37392c3231362c37342c31392c3134322c36362c3136302c32362c3135322c35352c3231372c3132342c38372c3232372c3133382c38342c3130382c3233352c3133362c36335d2c22706f70223a5b3136322c3230322c31362c33312c3131312c3133332c35382c39342c33312c3233302c3136382c3135332c37352c36352c33372c36392c36322c3130302c33302c3132372c3133362c3132332c3130392c36312c31322c3137332c3136342c34342c3131302c3135362c3136352c3130362c39302c3137332c32382c35322c3136342c31382c39342c37382c3234352c3135302c37362c3131382c35382c34362c31362c39382c3135312c38322c37352c35362c3235322c3131322c3136342c37392c31322c31312c39332c3231392c3134302c3134372c3138342c3132352c3139302c3130362c3133322c352c3132372c362c3133392c3135392c36322c34312c3230392c3137302c3131362c31372c3234352c3135312c3135312c3138342c37362c3139342c3132362c36352c37322c37352c3138332c302c3235342c3133332c3130362c36392c342c36345d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3232392c38352c3134392c3235312c3135352c36322c38392c322c39312c3137382c3230312c3232302c3233332c33372c36302c3131382c31322c39302c39372c3139302c3137332c3230362c3137342c3135372c34312c3232372c31312c3132322c332c3139372c3138362c3230382c31312c34312c3132352c3135372c3139342c32382c3231392c3131302c3132352c3235332c3134392c34352c31382c3230342c3233362c37362c3230302c3235322c36382c31342c342c35372c35352c3231312c37372c33392c3139332c36312c3134302c31342c3137392c385d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3134352c35332c3234332c35362c342c3139352c31332c3233342c3232312c3235342c3235322c3234302c36342c3232352c3133342c3134352c3133322c39362c3135332c3235322c34372c3231332c3138322c34342c33372c3137372c3133392c33332c352c3234342c3130362c33342c3137382c3139352c33302c3232312c3233322c37342c3130312c3135382c3234342c33352c36342c352c31352c3230332c3139382c36352c31312c3231392c36392c3139372c38382c362c39312c37302c3137372c3137392c34322c3134312c3232312c3232342c3232342c3130342c372c39342c3135362c372c35332c3134332c33302c35382c3130312c3231312c3133372c3132322c3231332c3235322c38302c3139312c37322c31302c31322c3230322c3138362c3234302c37362c3138352c33312c392c31322c3132332c3233392c3137392c3233342c3138345d2c22706f70223a5b3134392c3232352c32372c3231322c34392c32312c34332c35372c342c32372c3232342c3232382c33382c3132312c3138342c3135322c3230372c3133362c34372c3133322c3135352c38372c3138322c38372c3134382c3135352c3233342c37302c3231312c33332c3233362c3132302c312c37312c33312c3233322c34392c36392c322c37322c39352c37312c3139342c33342c3139362c38372c39362c36382c3136342c31382c31352c3232332c3138312c3136312c3137382c3134382c34332c3231332c3131392c39392c39362c31302c3233342c3132362c3133392c3139362c322c37372c3139342c38352c3130372c3136302c36322c31302c38312c3130322c3137302c39352c3231372c32302c3138372c31332c372c34332c3138312c37332c38362c3136392c39392c33362c3131362c39332c3232372c39312c3232332c32385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b36312c3138382c3233322c3130372c3133382c3235312c3134392c3133302c3230312c3233352c3231362c3139382c38312c34322c3231352c3230392c3133332c3139372c3139342c36302c3135392c3130342c3139332c3234352c3134382c34392c3231382c38382c3130362c32302c39322c3131322c3234392c3139332c3139362c3136312c3136302c34312c31372c36392c3135382c3134362c31332c3138312c32342c3234332c3235342c3139362c3134372c3139352c32322c37342c3231392c3230382c34342c3137392c31332c32312c3133372c3136322c3137302c3139302c3131382c355d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3136362c34392c31392c38392c3134332c36362c3235312c382c31302c3133332c33322c3230392c3139312c3138392c37302c3136382c3137382c3234302c3134312c3137302c36362c322c35332c3139362c3133352c3234372c392c38332c37362c352c382c3230332c382c3132372c3134372c3134372c32392c3231312c3131302c34312c3234392c35382c3137342c3131352c3131362c3132312c3234362c3230372c32332c35332c3233342c37382c33382c3235322c34382c3137382c3231352c39372c3133342c3231382c31372c3231302c3139312c37322c332c3136372c3139332c3230342c3232302c3235332c31342c38352c3130382c362c3233342c3132352c38302c3139362c3234352c3130342c3136392c3230392c32332c3234372c3139332c3231312c3133322c35322c36352c3138332c34362c3136382c3230352c34392c302c3135335d2c22706f70223a5b3137302c3234362c32342c3133342c32322c39342c36302c3132302c35382c3134362c3134392c3232372c3232382c3130332c3132362c3233322c34332c3230312c3139382c3137362c31342c3134362c32382c32312c3234342c3230322c31302c3135362c39382c3231312c35382c34352c3233392c35352c31392c3139352c37332c39382c3230302c3137322c39302c3231342c3232382c39312c38372c3139302c3139312c39352c3133302c3135332c34322c32392c35332c39342c32322c3234322c37322c31392c32342c35392c302c37372c37382c3132362c35382c362c3134392c3231352c34382c3135302c3135312c362c3139352c3231332c33352c3235312c3138392c3134322c36332c3130362c3134362c3132392c35332c3234322c3235342c39392c3139332c32392c3132312c35392c3131372c3134372c3132342c3135312c3133302c3232315d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b32302c37382c3134362c3232372c37322c3130382c3135312c3138342c3232322c3133392c3132372c3130332c34392c3137322c372c3230382c3233342c3234332c35372c3130352c34312c3131362c3233332c3232322c36392c3232372c3231372c33322c32352c34372c3233352c3233382c3138322c35352c3232302c31352c3231342c3232322c38342c3135332c38312c3137352c3231372c3135362c3234332c3135342c37342c37332c3132322c3136342c38372c3232312c33332c3136312c3234352c37302c3139382c3134352c3131372c3130392c34382c32352c3139352c31355d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3134392c3130312c34342c39332c34382c3139302c3131312c3137382c3130392c3230372c3131382c3131362c3130332c37332c322c3130312c3138302c3234392c3134302c3137392c34382c3139382c3139392c3134322c37352c3136302c31332c3230312c38382c37312c37332c3138382c33392c372c3231382c3135332c3135332c34322c3132342c35312c3134362c342c34312c38372c36372c3137342c3131352c35302c31362c3136302c37352c3137322c39382c3139392c3133302c32382c3139352c3233392c3233372c3135332c3233352c3230352c39382c38362c38302c36302c35352c3133342c3134342c3134322c3235352c38382c3136372c34312c3132302c3231352c3133352c33352c32372c322c36352c3136332c33302c32332c34342c3136332c34352c3234392c3137362c3231322c3232332c3232342c3232382c3232362c3137362c3132385d2c22706f70223a5b3134312c3136382c3137322c33392c3136302c31302c3138352c33382c3132362c38322c3231342c312c3230312c3231382c3234302c3132342c35342c342c3130372c3130342c3135322c3235302c35332c34352c3138392c322c3234312c3232342c3234392c312c3234322c3130302c3139332c35322c38322c3138392c37342c38372c39362c36392c39372c3233362c37392c38342c34332c3136302c3235332c37372c3132382c3132322c38312c3135352c3136322c3234302c332c332c3235322c31302c3234312c39322c3231322c3232382c302c3138302c34302c37352c3139382c322c3137332c332c3132302c39382c3134302c3130372c34362c37352c3134332c3131302c3135312c3133332c37372c34382c3135372c38332c3235342c34352c3231382c36382c3133392c3230382c3131392c35382c3132322c3135332c3137392c3232325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138332c3232352c3130332c34342c3138362c3137312c3232382c33342c39322c3132332c35372c3130392c38382c3130322c35332c3233322c36312c352c3233332c3230312c31322c3135302c3233332c32342c31392c3234392c32382c37382c37392c3234332c32372c36372c3137392c3130302c342c34342c3231392c3231372c3132342c39392c3231352c3137382c33332c31382c3133332c3136372c352c3130372c36382c3232392c3137382c3132382c38322c37302c3137352c32372c31382c3137332c3235312c3135362c3232332c3131392c3130372c335d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "7cbbd5b1bbcb735316c39145ae7e2e13e3baa0450c0ef937396395909569c053", - "certificate_hash": "968118eff75386e71874bd2388e00c0c5d3cac7ece65cebf9f60f0754341a710", - "created_at": "2024-08-08T15:14:53.112638Z", + "hash": "54090b48c481828f1e84f0400f7bf96224567fb11c232be30dec56b325cf78a0", + "certificate_hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", + "created_at": "2024-09-09T12:59:20.285538052Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "9e7363d59a2df9698957f58598739a86d3b1b1e86f403830f4ee25f3662c0b6c": { - "epoch": 15, + "5af32d5e6a51aba26937459b608f324f06e9a5f5b1717917480ebceadcc02306": { + "epoch": 60, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3137362c34352c3137302c32362c35372c31332c3131302c36352c39312c35352c35302c38362c3134332c3133392c3234362c3135342c36392c39392c3135382c3132382c38382c3131322c3232342c3233322c38322c3134382c3139332c322c3136302c3134302c3234342c3134342c3139302c36302c3135372c3233332c3230332c38342c3138302c3232322c3132332c352c32302c3133342c3232372c3134392c3231362c36342c31352c3135372c3132392c3135342c39312c3135382c32332c3230372c3132372c35342c33312c312c3134362c3231312c3232362c3139312c3230372c3137382c3136382c39392c392c3233322c3138362c38302c38302c3135302c33302c39302c32332c32342c3233352c3131342c34392c3233342c3230352c3230362c3133352c3134312c3130362c38332c3130302c372c3232392c3231352c3135302c3133382c3133302c3139325d2c22706f70223a5b3133312c38372c38342c3233342c3234392c3137312c34352c3233322c3133342c36342c32382c32302c3137362c3136392c3132382c39342c39382c3139372c3233332c3233362c3131392c3130342c3130372c3139382c3132392c3233302c3131332c36392c3139322c38332c34392c3135382c3134312c39372c34332c34312c3134302c3139392c3232322c34312c322c39312c302c3137392c3235352c3231322c3139332c3230332c3133332c3234302c3133332c3132302c31332c36342c34342c3135332c3133362c3134392c3232382c3235312c31392c35312c3138382c3234382c382c32342c3134372c3233322c3135342c32342c31302c3137382c39302c38332c31322c3232332c3233312c3233372c3235322c39342c3234312c3136342c3232322c33302c3231352c3134392c38302c3139382c3138372c38352c3232362c3134392c34322c33372c37352c3133315d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3139372c3139332c3235322c3232332c33372c35332c3234382c3231312c39392c3233382c3231342c3132352c3134352c3132372c3138352c35372c3130392c38332c3136362c31332c3235302c39302c33352c3133392c3135332c38372c3130342c33312c3132332c3136382c3234302c3133372c3130332c3134392c33322c37322c39352c3230342c3130302c3233302c3137372c3231382c3133382c36332c322c3132392c3234382c3131382c3233372c3139352c3138342c3134382c3233392c38392c3131362c3130302c3137332c38392c3231332c3131342c37362c3234392c3230342c395d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3133312c37332c33312c31302c34312c3235352c3234362c34362c3137332c3135382c31352c3136312c34352c3135392c3135392c3231302c37342c3139342c3231352c3136302c39372c3230372c3130322c36302c3135332c3138352c3138382c3231372c36382c3132392c3231352c3235302c3235332c37352c3234322c36352c3132382c34382c3130302c342c3135302c32392c33392c38312c36342c3233352c39312c3138342c31382c37392c3138392c3131352c33342c36382c3134342c3135302c34302c38362c3139362c31342c3136302c38352c37342c3230352c32352c39352c3234362c3234352c3233352c3232352c3132362c3133332c3132392c32342c3138312c39312c3133372c33322c3232322c3235322c3130352c33372c31392c3134342c35362c3136302c3134362c38372c3138302c3133382c3134332c3233392c3235352c37362c3131352c3138325d2c22706f70223a5b3135322c3134392c33302c38332c38362c33392c3132382c36352c3232302c3139362c3232352c37312c35312c31322c3133302c3136302c3133302c32302c3137372c3132342c38372c3134302c3231362c39362c3230352c36392c3133352c3133312c382c3133372c3133332c37312c3232352c36362c3232302c3138322c39352c34302c3130312c3136322c3133302c3234312c3133362c34332c3139332c37302c3231312c3233372c3134322c3136332c3232312c3133332c3234302c3135332c39362c3133342c342c3232372c39352c31322c3130322c3131352c3138392c3230322c3233392c32312c3137382c3138372c37312c3232312c3234332c3232332c3134302c362c34362c33322c35322c322c3134382c3137392c3136382c3133382c36342c3231392c32382c3230342c3139302c39362c38322c38322c3233382c3137362c3234372c322c31312c37395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3139322c33322c36342c3133352c33342c3232312c33342c3234382c37372c38302c3130332c31372c38372c31342c31372c35372c3230342c3135362c35352c3134332c3131392c37302c3134372c3138372c3138342c37362c382c33302c3234392c33322c3130392c3137302c3136382c3232322c33342c3137302c3232312c3133362c3231372c3231362c32392c3234312c38362c3234372c37352c3235342c3130302c31342c3132312c3231342c3234332c3132342c34352c3235332c3139312c36362c34362c3231392c3235312c3132372c3135392c38302c38332c355d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3133342c3130342c352c3136362c3131372c32332c36302c39362c3234332c34382c3137372c35342c32352c3134362c3136382c3134362c34372c372c31342c34322c3139312c3232392c37352c34362c392c3130342c35352c3137372c3233352c3139362c3135312c34332c352c3130372c3134302c33372c3131382c32382c3135382c32382c36372c3234342c34382c35382c3231352c3134302c3231392c3133312c31342c3234352c38352c37332c3137332c3138302c35382c3131372c3139342c39392c3133382c392c3234382c3231362c39382c3135332c3231372c3136342c3232382c3133322c3135322c3130352c3132342c3232312c31362c31392c34362c3233332c3135362c3230352c3137392c34322c3138342c3130382c31312c3137392c3136372c3139302c3136382c3131372c35382c3232372c33382c35312c3230382c3136392c3131342c32325d2c22706f70223a5b3137392c3235332c3230302c3134302c34362c32382c31302c3233382c35352c31302c3230382c3131362c3139392c31382c382c36332c3232302c3134352c3234342c36392c3135372c3234392c3235312c3230342c3133372c3139332c3135312c3139322c38302c3136332c37302c35352c32362c37392c31372c32302c3232362c39322c35372c3139392c3235352c3139392c35392c33322c3133322c3136362c3139362c3132382c3135322c32322c3130312c35312c3235332c39362c3230352c39302c33332c3131392c3132372c32382c3133362c38332c3234312c3133352c3133392c3234352c3132322c3136372c3137392c34392c3135342c37362c332c3235342c3132352c3130312c3137382c3138382c3133372c3234352c34322c3234332c3137392c3136352c3137352c32352c3136382c3231362c31392c3132392c3132302c3139342c3138362c3131302c3131332c3135395d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3130362c31372c31362c37372c36352c3231362c33382c36342c38382c35332c3131342c32342c3137332c3131392c3135392c3131342c31342c3139382c3136352c3137332c37382c3233302c31322c3136302c3131332c36312c34352c34332c3136322c3136312c3132322c3235352c31362c31392c3133332c3136312c3233362c3234322c3134372c3234362c36342c3132382c34392c37392c3137342c3234342c3132362c35322c33362c3232342c3137392c38362c31342c3131372c36332c34372c3231332c3133352c38362c37332c36382c3131372c35342c325d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3136372c3134372c33302c3235332c3133342c3136332c38382c3134332c3231312c3233342c3136392c3136392c34352c3137332c3134392c31322c3234332c3235312c3132382c3135302c3231342c3137302c3137342c31322c3138312c362c35322c3135332c3131312c39302c3134352c33352c36372c3232342c3135392c3231342c38332c3131372c33332c3230312c3131352c3133382c3131342c3234382c31342c31372c3231382c3230352c31302c3137372c3131372c3231392c34312c3233392c3233332c37332c312c3137332c3235302c3135342c3230302c3133332c35362c3138312c3233302c33382c3235352c3133322c39362c3138332c31302c3130352c332c372c39362c3132392c3137312c3234342c34342c3133352c37332c3130372c37332c3134312c3230342c3133332c3132392c3131312c38302c38342c3132342c3137332c3230372c3233362c3232392c3235335d2c22706f70223a5b3133322c3136312c32362c3230392c32382c3135352c31362c3130342c3132342c32392c36312c3130322c33312c3233352c3231322c36372c3234312c3134372c3232342c3137362c3138302c35312c3138352c3134372c3136392c3139352c35352c3135382c3138322c332c3235352c34382c3133302c3133302c3233382c32362c3137322c35312c35332c3134342c3234312c31382c3231382c39382c3232352c3135342c3132302c3235312c3137382c3130362c3135342c3138352c3139382c33382c35312c33302c372c37382c37332c39362c3137382c39342c3138372c3132382c36312c3230322c3136302c32312c3233372c3130392c33352c372c3137372c33392c37362c3130362c37362c3136372c3135352c3235352c36352c37322c3137362c3230392c37312c332c38382c362c38312c3133312c3132362c3136312c32372c36362c3134362c3133335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3230382c38332c36312c37302c3138392c34302c3134382c38352c3136312c3130392c3234312c32382c332c3132312c3130302c3136342c3230312c3230362c32392c3234342c3138342c3131372c38372c3130342c3134392c3132382c3230312c3136332c3137392c3231312c33372c3232362c3135362c3230322c37372c31322c33332c3232392c32322c3232342c3230382c33322c31322c34392c3234302c3138352c31382c3235312c35382c3135392c35392c34372c3136302c352c3138332c33362c3130342c3231342c3135352c3137362c3231302c3230312c3131392c305d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "9e7363d59a2df9698957f58598739a86d3b1b1e86f403830f4ee25f3662c0b6c", - "certificate_hash": "166055f65bda0742ea2324c70b6c529fc33cd7973b5deae8275360acd3dcd68d", - "created_at": "2024-08-08T15:15:01.470177Z", + "hash": "5af32d5e6a51aba26937459b608f324f06e9a5f5b1717917480ebceadcc02306", + "certificate_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", + "created_at": "2024-09-09T12:59:39.699484120Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "c05bb138d78b4d845547f483d6fc3dd690cd20288fda87b219ce04022ad41149": { - "epoch": 23, + "63b7b76db611d80e986c1e438f60e09a40347fec000afabc7178181c451eaf43": { + "epoch": 44, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3135302c3137352c38302c3232332c3232352c3231332c3131302c3232362c3132322c31312c392c36382c32392c3137302c34382c33322c3137392c302c3134312c3133362c39322c3231382c33372c37382c33392c3130362c32372c3136342c3134352c3130362c3131392c3234362c3234362c392c3138372c342c3131322c342c3137302c39372c39322c3234302c3139382c35352c39362c3232352c3235342c3134352c31352c35322c3131352c37392c3234342c3231392c3234312c3133372c33382c3135312c33382c3136352c37312c3130322c32342c3136362c36332c3234382c3138342c3134342c3139342c39302c3136302c3233322c3135362c3137372c3132312c3139362c3135372c38362c33312c34352c3130312c3233392c3232382c37322c3139302c35362c3234302c32372c3230322c3139342c3234352c35322c312c3137322c38352c3235325d2c22706f70223a5b3138302c37302c35332c3134352c3234322c3133302c38372c3230392c31342c3234302c3235312c37362c39312c38332c3231342c3234372c33362c39342c39322c39302c39352c3137312c38312c3134362c32332c3139372c36322c3233342c3135302c3130382c3130372c3131302c3232392c3130392c34302c38372c3131362c3233352c3137352c3134322c3230372c3233342c3233392c3230362c362c3234392c3230312c3137332c3133322c39362c36332c3138382c37362c34332c33392c35362c33312c3132392c372c3136352c35312c34332c3132322c37332c3139362c322c38392c3134372c38302c33372c3136362c32312c3135302c3133362c3234392c3235342c3138322c3130352c3231382c32322c372c3232362c3132312c35322c34392c3233382c3132342c36332c37392c34332c34312c3137372c34382c3132362c38342c3132365d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3131302c352c39342c31342c34302c3133342c3235302c32352c3130392c3232322c3234382c3233362c3132322c3135342c3130372c36352c3232302c3133332c3231382c3135362c322c3234382c37362c322c3231352c37372c31342c3137392c3130352c31322c3130342c34342c3133362c382c3136312c3234352c3134392c3233312c3232322c3133362c3130382c3133302c3139372c3232362c3137392c35312c3230312c3231332c39302c3131332c362c3133362c372c35362c3235302c39322c3139302c3231332c3132312c39322c37372c3231392c31312c385d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3134372c31322c39332c3233352c35362c3136302c3130342c38392c37332c3136342c3231372c362c3234362c37382c35302c3133332c38372c31332c3230362c3130362c31322c3132312c37372c3230322c38362c32342c39342c39302c36342c34332c3231342c3134302c35372c37342c36322c31312c3138322c3233362c3136392c3230332c3136332c39312c3230322c33322c32312c36392c3230312c3138352c31352c33352c362c31382c3135332c31372c33372c3139302c3130322c3232352c3235332c3133332c3132392c33322c35342c37332c35342c3232312c32392c39312c372c3137312c3137342c3230302c3130312c38312c34322c352c32392c3134382c3130312c3134372c3233362c3137342c3139392c3139362c3233332c3137342c3232302c3139342c3132352c31362c3235322c35352c34322c3233342c35342c315d2c22706f70223a5b3136322c3133332c31332c3130382c3133322c3135342c3230332c3133332c38382c3232392c3135332c3231302c37332c33382c322c3231382c3136302c32342c38352c3234392c3230372c332c3139382c3230352c3231382c34382c3133392c3230382c3135312c3231332c31362c3231332c31352c3231392c38362c3133332c3232362c38382c34382c37392c3231332c3235312c33392c3230322c3138382c35312c3138342c33312c3133392c3134302c3130302c3135332c32302c3133352c36332c39312c32382c3131372c3233362c3138362c3134362c3232342c36322c3134362c3231302c3235342c3136302c38382c36362c372c3135332c37332c3234332c3230312c3230372c35382c3235322c3130322c3134332c3232362c3231362c3137362c3232342c37322c3230352c39382c3136312c3131302c3130322c3138392c3233312c3233362c3131392c34342c3231362c35315d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3230382c37322c38352c3231392c3136332c3130382c3234362c39392c3230362c36302c3139322c3235342c3235312c32392c3136322c362c35312c35322c302c3131322c3139302c3234392c3230392c3231372c32372c3136342c3137392c3139312c3133382c3134312c3136302c39392c3232362c3138352c3234322c3134362c3138342c3231362c36362c3231342c37362c3137372c3234302c3232382c3230382c36322c3231392c38332c3130352c32312c3130342c3231342c3230362c3137332c32302c3135392c3139352c3136332c3134322c3233322c38392c382c322c31305d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3134382c3134392c3231322c38392c3135392c3138352c3233312c362c31362c3233392c37382c3138372c3134302c3139302c3233322c34372c392c39382c35322c3135302c3235312c3136382c31392c3132382c3131342c3232342c34362c3134362c3235352c36352c36312c3133312c34322c33352c3235322c3130312c38342c3234302c3233302c362c3131322c38322c3231322c3139392c3137302c3132322c3133352c3233352c31342c362c39322c3136362c3138392c33342c3138332c3130392c3233352c3234362c34312c39342c34352c3132322c382c33382c3235312c38322c3132362c3136372c3230352c3132362c35372c31392c3133352c37392c36302c3233302c35372c3133382c35392c33332c37312c38302c3234382c3232352c3130332c35382c3233302c3139322c35352c3135382c3138322c32342c34322c3132352c322c395d2c22706f70223a5b3137342c3232322c32392c3130352c3138362c33302c36382c3139312c3136392c3137352c34352c3134302c36322c39382c38312c3131382c33342c3137342c3136382c37332c3230342c3139352c3130332c362c31352c3131302c33312c3134302c32332c3136312c3230362c34362c34362c35352c3132362c31332c31382c3132302c3136332c3232392c3139312c32392c3233362c3232382c3133342c38302c3230392c3134312c3134342c3231362c38352c372c3232352c37352c3131382c3134332c3139392c3232342c34382c3134312c31312c3139312c3134352c3230392c34322c39342c3234342c3131332c3234362c32392c36382c3135392c3135322c33392c342c3132322c3234382c312c33382c37372c3135392c32382c3233392c34392c36312c3235302c3234332c3235302c3133342c3136332c3234352c31302c33382c3133322c3230352c33345d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3130342c32302c302c3134382c3137362c3135372c31372c3130372c36302c3133342c31372c32372c3136382c34372c33342c36342c37342c38392c3134332c3234322c3130352c37342c32382c3139332c36352c392c302c33372c3138312c36302c3230322c3138332c37322c3136322c3134382c3234392c39362c3234322c3231372c3130342c3135352c32312c3231352c35392c33392c34352c33382c3233302c3232332c3136312c32352c3131332c33302c3135372c35302c34312c31352c35362c3138352c36312c3134382c3131372c3138312c315d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3135322c3231352c3231302c3231382c3136312c37302c3136352c3132352c3136382c3234342c3134322c3137382c3133302c3134382c3132302c36382c3230352c3230382c3234302c3134312c3232362c3132372c3231342c3130342c3133302c3230332c39382c3230332c33352c3132312c31392c31342c3138352c3232332c37312c3135302c3131392c39352c3135342c39382c3137392c3130362c3233332c36332c39372c3133302c38302c3130362c352c3233382c31342c36312c36362c32302c3139302c37352c3234312c3133302c38322c3136362c3133302c312c3135302c3230342c35332c35332c3135332c3137372c33312c31342c34332c3130362c3235332c392c3130372c3138352c3136352c3231332c3139382c33322c3233372c3232342c35392c34302c3134392c38342c3230312c3131342c3132392c3234392c32372c36362c34372c3131332c3235352c3233355d2c22706f70223a5b3134342c3137312c37352c31362c38382c3135382c33372c3131342c3235332c35362c3133312c37332c35332c3231312c37362c32362c31322c3233382c3230302c3130352c3134342c3139392c3232332c3133352c34342c3234392c3130302c39352c3230332c3137342c33392c35342c35372c332c3138312c362c3231332c38322c3139382c3233332c3134312c3130302c3136372c31322c31302c3139352c3131382c3135382c3134302c3135352c32362c3133302c3132352c3231302c36372c39362c3131382c3134322c3230372c3133332c3131352c3137302c3139392c39312c3234302c38322c3137372c32372c34392c3136332c3132302c35332c38312c3138312c3133392c3136312c38312c3233372c312c31392c3139352c3138392c3233352c3136342c32362c3137332c3135332c352c3135342c3233332c3133362c3230302c3232322c3234392c3232332c3139355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b33322c3137352c342c312c32312c3137382c3231342c3130372c37392c33352c3232322c3133322c3231342c39352c3230362c3233342c34342c3139342c34362c3232352c3132382c3139372c3139382c3139332c3231332c3232392c33342c36302c33382c3136332c34352c3235312c342c3138342c3133302c34342c3234342c3132352c3134362c3133392c3138302c3139342c3137342c31312c34382c3233372c39342c3130322c36312c3135302c31332c3138372c3135322c3230382c3130312c3138382c39332c3135332c3234322c3234332c34392c3234302c392c31325d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "c05bb138d78b4d845547f483d6fc3dd690cd20288fda87b219ce04022ad41149", - "certificate_hash": "a11139300a460087942144f7ffb3242e496da504dfad3884e8c7fefa02bff8ce", - "created_at": "2024-08-08T15:15:23.973904Z", + "hash": "63b7b76db611d80e986c1e438f60e09a40347fec000afabc7178181c451eaf43", + "certificate_hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", + "created_at": "2024-09-09T12:58:55.047708346Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "d01e21c53604f74d29f6a809ed8c0439b6832de3aaec524c98b6b07aaa694f7f": { - "epoch": 16, + "7222fe6cbaae33109724c88e5659d8a2d2e1546386e760083089d0c1a1405d98": { + "epoch": 52, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3134312c3132382c31332c31372c3137302c3138342c3139362c36352c36342c3131352c35302c3133332c3135362c3133322c31302c35352c3130322c33312c3136322c3137302c39342c31332c3139342c3130302c3132372c37322c372c3138362c37332c3139372c342c39342c34352c3231362c3234372c3230322c38372c35342c3232342c3230372c36352c3234372c31392c3133322c38352c3134362c3134332c3138372c31342c37302c36392c3134342c372c32392c3234302c3137372c34382c3133362c3233372c3135332c3235332c34382c3137312c3231392c34382c38302c3136382c38322c35332c3132392c3139352c35352c36342c3232372c3231362c3133392c3135372c32302c3230322c3138372c3130382c3133362c3139302c3230372c3138302c39362c3135392c31322c332c33362c3232342c3134322c38312c38372c36362c3230385d2c22706f70223a5b3137362c38362c32372c3231392c37332c3133372c32382c35302c34342c3131392c39392c37342c32332c3231322c3137352c3133342c3133382c3139372c34332c3132372c3233362c3136302c3135382c3137382c3134352c3233352c39332c3232352c35372c3232302c3136332c342c3136302c36322c3232332c37332c39372c3137332c3133342c36312c34302c3139382c3139322c3133302c392c3133362c3131362c32362c3138342c3131362c3233362c37332c3139392c3231352c3137342c3137392c3231352c32392c37382c37352c3138372c3139332c35312c3130322c3235312c3131392c38372c332c3231392c33362c3130342c3232342c3233332c3134342c39302c302c3234382c38302c3132392c3230392c3233372c31322c3134362c36352c3231382c3233302c33322c3138312c3233362c342c36392c37382c3130382c34372c3234332c32375d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b34332c3133322c39362c37352c3130362c39332c3233322c31342c392c3130302c34362c3137322c3133342c3131342c3233372c392c3137392c35342c3234332c3233332c3137342c3136352c32392c3130322c3135352c3134342c34362c3234382c3136302c332c35332c3234342c34342c3133322c3139322c34362c35342c3234332c3231302c34342c31302c3137352c3134342c3234372c3130332c3230382c3230382c3132332c3232352c3231332c3134342c3232302c38392c34302c3137382c36382c302c392c36372c34372c3136322c3133362c38392c31305d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3134342c3234342c3233362c3230332c3130372c31362c3136312c36392c3131302c3230362c3137322c36322c342c31352c31392c3235332c33342c35312c3235322c39342c3138352c31392c3138352c3231372c3233322c3131372c3230342c3232302c36352c3233362c3134352c3234342c33362c3234392c3234312c34342c3138372c3133342c32312c3139372c33322c3234362c3230352c34332c36332c36372c3231322c3133352c31312c3134342c3235322c39342c39392c3139362c3230372c3135392c3137382c3132392c3138392c3130382c39302c302c3131322c342c3235302c3137362c3230312c39342c3233382c3230392c3138322c3230312c3233352c3130362c35312c362c3133372c39382c3136392c38322c3134342c34372c3130332c37312c3131312c35372c3134332c3139322c3231392c3136392c39312c3132362c3133392c3130362c36392c3233345d2c22706f70223a5b3137372c3139352c3132382c3130362c38312c3134382c3132382c39342c33322c37372c32342c3234352c33342c36352c37312c35372c3235352c32362c3231352c3230322c3234342c37332c3232322c3133332c3135322c34372c3139332c35362c37362c31382c3132352c33332c3132312c3133342c3136362c3234312c3132372c3133362c3138372c3233362c342c3232302c32372c34342c3235322c3135322c3234332c35342c3133302c3133352c35322c3133362c3234342c34302c38332c3231352c3137392c3137302c39312c3231322c3137352c3232302c3133352c3135392c32372c38362c3230372c3131322c3130352c3136342c34342c3234312c33382c3139372c3137392c3133342c39372c3231362c3139302c34332c3231302c36342c3138322c3234362c35322c3230342c35372c3131382c3234392c3138322c3235302c3231352c35362c38352c3231362c3138365d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3131312c372c31342c3135342c36352c3138342c3232302c3136362c3231362c38302c3139392c3131372c33382c3137312c3134382c3231322c3132332c39342c3137312c3133382c3231392c3234312c36352c3133342c3230362c34362c35352c36372c3138302c3233392c33392c3230302c3233372c3136322c322c3230392c342c3233372c3137362c3138332c3139372c31352c3232372c3132302c3232312c34342c36322c3232302c3233332c31362c38342c35312c3230362c3138352c3232362c37382c392c3233392c3139342c33322c37332c3133362c3230352c365d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3133352c3231332c3138332c3132342c3133362c33342c3131332c3231362c3135372c3233392c3132392c3134382c3138312c392c3234382c34302c3139372c3232352c36382c3235312c3136332c362c3234332c36302c3136302c3138382c3131342c39352c372c3139332c3130392c36382c3234382c35342c38302c3130332c34342c37322c34362c32302c3233362c3130382c3130342c3131392c31342c35362c3139302c31352c31362c3233302c3138372c352c3136342c3134322c3130392c3234332c39382c3138362c3234322c3137342c3139342c3135372c34302c31362c3233322c382c3135362c3132392c3233352c34332c3135352c34392c382c3230352c3232342c34392c3130392c38312c3135322c38352c36342c3231302c3138392c3232352c3230302c3134382c3133302c3131392c3231332c38392c3234302c3137352c3136302c35302c34352c3130305d2c22706f70223a5b3136392c3133322c34382c38322c3230382c3135382c3136342c3139302c3133362c32352c3135352c3137372c3139322c3231332c39342c3130372c3134332c32332c32362c3234372c36342c3235322c38302c3234372c322c3134302c37372c35342c38392c3139382c332c3133302c3233382c37382c3138382c3135372c3234382c32382c31352c38362c3134302c3137332c33352c36312c3131392c33362c3132332c3135312c3138352c3234322c3133362c39322c3138352c3231332c3231392c3136392c3230302c35312c3231392c3135362c3234312c3135332c34322c3230352c38332c3233382c3230372c3138322c3232352c3137322c3137322c3135332c3130372c3234382c34332c3133332c3139352c3139382c3131352c34392c3134392c3231382c3134312c3232332c3230312c31372c312c34362c372c35362c33312c3232302c3133322c3139392c33392c3130345d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b37302c3234372c32372c39302c3234352c38312c3133322c3138342c3231312c37322c35392c3130352c38342c3139312c3130342c37322c37372c34302c3137392c33302c3139352c36302c3230372c3130362c3139382c35352c3135352c3133342c3137362c322c32372c3132362c35392c39352c3135392c3135352c37372c39362c3231362c33352c33322c34342c35382c32372c3230322c3233392c3230312c38312c36312c3234362c33342c36312c3133352c39352c3131362c3233352c32312c3232392c3136362c31302c3232372c3230342c3139332c395d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3137372c3135312c3133332c3135352c3230372c3235312c3135382c34342c3234372c3134372c3139312c3233382c3134312c3230302c37312c39342c34372c38362c39312c39352c3232302c32322c36312c3232312c31392c3139392c34392c3231372c3137382c3133332c3132322c3135362c35322c35342c3230392c3138372c3137372c3136322c3131342c3135302c382c39332c31382c35392c3138342c3230352c37372c37372c342c3132312c31342c3230302c3234372c3134322c362c3137332c3134302c36332c3133382c3133382c37352c3230372c3232362c3131392c3231372c3233352c362c32392c37322c31392c3133352c3136362c332c38302c3133342c3234332c3136342c35392c362c3234312c3231382c3131392c3139372c3135392c3139342c3132302c3231332c3136352c3135312c3133362c3135332c33372c3234382c34312c3133332c315d2c22706f70223a5b3134342c3132352c3231372c3130362c32342c3131312c3234312c3235312c3131342c3134382c3132392c3131312c3137372c34322c3230372c38392c34332c3138332c3137372c36372c37312c3230352c32312c34312c3133322c3133352c3137342c36392c3136302c3136302c38332c3230302c36362c3139322c3139352c32372c3230382c3130302c35342c38302c3232302c3132362c31332c31342c36312c33322c3132312c3136352c3136352c3132332c3132392c3137302c39342c3138322c3138312c3232392c35322c3132352c3234342c3230322c31362c3131362c3138362c36362c3132312c38372c34302c3131372c3131352c3231382c3139362c37362c37342c31342c322c3233302c3231322c3132382c3138322c3136392c332c3133342c3232352c3230372c3233312c3232372c3135362c3135302c352c3138392c3232332c3136382c3132392c3132362c3130322c3231365d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138312c3134342c34362c3234312c39392c3133392c3138372c3230332c3230352c3134342c3133312c33322c3133322c3138362c3133362c31352c39332c3231332c31302c3136332c3138382c38382c33392c3135302c33302c32332c39372c32352c33382c3132332c37342c3230332c3230352c36342c3234332c3134302c3133392c31302c34372c3133302c382c32382c39302c3131372c3139302c3137332c38312c38392c3230362c382c36352c39352c36382c3133342c31372c3138352c3138312c3135302c3138362c31302c34392c34362c3232352c325d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "d01e21c53604f74d29f6a809ed8c0439b6832de3aaec524c98b6b07aaa694f7f", - "certificate_hash": "87490bc637ba9af3e45dac7a8c86959bb983087a393475a14a4e9067338bfc4b", - "created_at": "2024-08-08T15:15:04.268359Z", + "hash": "7222fe6cbaae33109724c88e5659d8a2d2e1546386e760083089d0c1a1405d98", + "certificate_hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", + "created_at": "2024-09-09T12:59:18.124838302Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "eb31ade786a195121edce6bbeaa410de4704925033edb67072c440da0d6933ef": { - "epoch": 17, + "83eb062b476e53103a90ffd2280e3b6ba5186cb5bfeb0e9817ec56be3e45d308": { + "epoch": 58, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3137312c3233332c3137362c3235352c3133342c3139312c36362c38372c3136312c39322c3137372c3230332c372c34302c3138312c3139342c3231362c37342c35312c3130392c3132392c3235322c3231302c35392c3135312c33322c3139372c3233382c3132312c39332c382c3133392c3137302c3138312c3137362c37392c36382c3131352c32302c32382c3135382c32322c322c35392c38312c33372c36382c35362c31342c3230312c34332c37312c3230352c3235322c382c35332c3232332c3230352c31332c39342c3137392c36322c3234332c3133322c35322c34382c36382c3133372c3131372c3235302c3130312c3132342c3133362c382c33352c362c33362c3139322c33372c33352c3133392c3234302c38362c31302c3137332c3233352c3230372c3234392c3135332c3139322c38322c3133362c34382c3136362c3230322c3233335d2c22706f70223a5b3132382c33312c3231342c33332c38302c37352c3232372c34372c3138342c3135302c3235332c3232322c3231342c3136342c33372c372c3230362c3136322c33332c3138312c35352c31362c35322c3138332c3232382c31362c3234312c39392c3137372c3138392c3231372c3136312c3130302c37382c37312c3234302c3139382c3133362c36362c3132332c3231302c3135362c34392c32392c3135332c34382c3232302c3130362c3133302c32322c32352c31322c3134322c31322c31342c35362c3137372c36362c3135322c33332c3234332c3130382c3132332c38322c39322c332c3234392c39322c33392c3138312c3134332c3130322c32302c3135312c37372c3137342c3131312c32312c33332c3139312c38312c3133392c31382c382c3231382c33332c33332c3134352c3136302c39312c3136302c3136312c3234322c31382c36382c3136345d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3232382c31302c39322c35322c38322c33392c39362c34322c35332c31302c3233312c3232312c3233312c3135332c31312c3134372c3233362c36352c3234342c38302c3136332c3232382c3137312c34362c36302c3235332c3136392c3136342c35392c31392c3230362c3136362c37322c33342c3137352c3133382c3134342c3130342c3230312c3139322c37382c33322c3139362c38352c3134312c3231342c3138312c36362c39372c3233322c3131372c38372c3234372c3233392c3132362c37362c33392c3235302c31362c3233322c3139342c3131342c36372c375d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3138312c3231302c32372c37302c32352c35322c3136362c38302c3137362c3233392c3134372c3231392c3234352c3231332c3135372c3130302c34342c3230322c3132302c38302c3133322c3134312c39342c3133332c3232362c34392c3139392c3130392c31382c3133382c3235322c39352c3233312c3131322c3132362c3134322c3230312c3131392c3139322c3137362c38302c3135322c35302c3231332c3139362c35342c3231362c3231342c31302c32352c38392c33342c3133312c3133342c3134352c38332c3137372c3138312c3135332c39302c362c3135372c3231332c3234352c33342c3139382c36332c3230342c3137382c3233352c31332c3132352c3133392c35382c3233342c3231302c3132372c32392c32332c31362c34312c36362c3232382c3137302c3234322c34342c32372c3136352c36392c3135372c3233362c33342c3133342c35392c3134382c3134335d2c22706f70223a5b3134342c3233302c35302c39382c3230342c3138382c36302c33322c35302c3136372c3134362c3131372c3232302c3136302c36312c3131382c3138382c36342c3136372c36332c3132312c33312c3135392c3134362c35302c39352c3138332c312c3232332c3137362c34312c3233322c3136332c39312c3231362c33302c3133332c3234372c3135362c33342c3230352c3231322c3136322c3230322c3136392c36362c37392c3134352c3135322c3134342c3233322c3136392c3133372c3134342c312c3138372c3136392c3138342c3132362c3131342c3131332c3137362c31342c3232302c3131372c3138302c3137332c3230352c34392c33302c3136302c39342c36352c3132322c3133322c3232372c3137352c3137342c3139382c36312c3235302c3131382c33332c3136302c3137302c38362c3136332c36312c32352c3134342c3133302c3230322c3130352c35362c38342c3131355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35352c3230312c32372c31312c3135362c3130322c31322c3234302c32312c32382c34322c3139372c3136362c31332c3235342c38302c33352c3233312c3136322c332c3231322c3130362c3232392c3134362c3139362c31322c39392c3132382c3136362c3234322c3231372c39382c3131322c3232362c32382c3230382c3230312c3135362c36322c3230392c31332c3235332c36342c33302c3139362c3133362c3232312c312c3132332c36352c32302c33342c35352c3134302c3137372c37332c3138372c3232302c3133312c3136312c3139392c3233342c3235332c345d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3137392c3131382c37362c35372c3232372c3231302c3135372c3132372c33392c3232382c3139302c3135332c3230332c38342c3130332c3138342c3139312c3137382c3234362c3132382c3233302c3133342c36302c3233372c34322c3134342c3231332c31342c3230322c37372c3133342c3139312c3137332c3234322c3139322c34372c34342c3233362c3233332c32392c3130302c33382c3139332c3130302c33372c302c3230302c3131342c31312c39362c3135382c3132342c3232382c36362c3133342c32342c37392c3233392c3133342c3138362c3136392c38332c33322c31342c3235332c34342c32372c32322c312c3130372c3233392c3134342c3133362c37312c33332c37312c3135312c3136352c3130342c3232322c3134382c31302c3135312c3232362c3230322c352c3231372c38322c3138372c3136382c3136342c3137312c3132392c3131322c3235352c33325d2c22706f70223a5b3137322c372c3137372c3130352c3133322c34382c3134322c38352c33302c37302c31382c36332c35362c3233342c3135352c3132392c33382c31382c3233312c3130312c36352c3130322c34322c3131362c342c3130392c36302c3230372c3235352c3232332c34352c36322c3130392c35372c322c3139312c39382c3231322c34332c3135362c3132392c3135342c32312c3233352c3232372c3133302c31352c3134342c3137322c3135342c392c35312c39382c34382c36342c3231352c39332c34312c34382c3131382c3232322c38302c3130372c3138342c3230352c38302c3234312c3135352c382c3135382c3230302c3131342c38332c3230312c33362c3131392c31362c3138362c3232322c38322c36342c34312c33352c3233392c3131332c38322c33332c38372c3232302c3230372c3136312c392c3232352c3231302c34362c3234375d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3136392c3234352c3234322c3139342c39332c3137332c3139342c3233342c3233322c3132312c3234352c38352c3134392c3230362c37392c38372c3138372c3133302c3135302c38382c3233332c38332c3132372c3137342c3130372c3139302c3234372c3130332c3132372c3132372c37302c39312c37352c3135322c38372c3235352c3231322c34342c35312c3233332c3139312c3133372c33362c37362c37382c3134312c352c3233342c3134382c3233322c31392c3232352c3230372c3233332c31342c312c37372c3133372c3234342c3139332c36392c31342c3137322c31355d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3136392c3134322c34392c39312c3133332c3234302c3130312c39322c3233352c3232312c3134382c31372c33302c35342c3130392c33302c3132352c35352c38312c3233382c3234302c3230392c3132322c37302c32372c3230372c3134352c3234332c3231392c3132322c3230322c39312c37392c3139302c3231342c3233322c3136322c3232352c372c36352c3138312c3234302c33382c3133372c37392c37392c35352c37352c31382c38332c3137392c38332c3131312c3234332c302c33342c3135322c3139332c3136312c3131392c372c3138352c322c36382c3139332c3131382c362c37392c36352c35342c31312c3234322c31302c3235302c3138312c38312c3137372c3230322c3139342c38382c31302c3133382c36392c36312c3135392c3137332c3139392c3132342c35382c302c3234332c3135372c35342c37312c3139312c35315d2c22706f70223a5b3134392c31372c32342c32302c35332c34342c3132382c36322c31312c3130332c39302c39332c38392c35392c3131382c3139322c3138322c3130322c3137362c3135382c3231382c3235342c31312c31312c31302c3135362c3230312c3137362c3132332c38342c3231302c32352c3131362c3135382c36372c32312c3230342c3232382c3231302c3235302c36392c3135312c36342c3233392c3234342c37382c3130302c3139342c3134312c39372c37372c39352c3232382c3233312c37372c35342c32322c33382c3133382c38372c3137312c3232332c36352c3233382c3231332c3136312c37362c312c38312c33302c31372c3232362c3139312c33382c3132392c34352c3131322c3135302c3232352c3135362c3231332c3133312c33332c34362c39362c33352c3136322c3234372c3232372c3138362c3130342c31362c33302c3134362c3233382c3136325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b36302c372c3137332c3231332c3132312c35312c3231382c39342c32362c3133392c34352c3231382c382c3235312c34312c3138392c3138342c36372c31312c3232342c3133322c35362c37392c37392c3234342c3234302c3134332c3234372c3134302c3137342c3132372c3134342c31372c3230372c322c3132362c34392c3139392c3132312c33392c36342c3139362c3230312c33392c31342c38372c3130382c3130322c3137352c32352c302c3139352c3138362c38322c3137352c36372c3234362c39322c35392c38362c3139392c3234312c322c31335d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "eb31ade786a195121edce6bbeaa410de4704925033edb67072c440da0d6933ef", - "certificate_hash": "b7466128456915070b1a65cff4ae86243b3fa194daef7b2c7978060dd8daf8ed", - "created_at": "2024-08-08T15:15:07.072893Z", + "hash": "83eb062b476e53103a90ffd2280e3b6ba5186cb5bfeb0e9817ec56be3e45d308", + "certificate_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", + "created_at": "2024-09-09T12:59:34.457723440Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "f295876cf3700ed5d293ebf35a37d47793244064c5b2979aca22b03bb2a8d5f5": { - "epoch": 20, + "88c64139d188a2c257637a53e7e81583d7d7ed96d5954ea6bb55c54a59da1b9b": { + "epoch": 59, "signers": [ { - "party_id": "pool1juuc2nt0pw642n7s0gfyz4qsfz43jfw9sa09z25xlr22sl0n8nl", - "verification_key": "7b22766b223a5b3136362c3231362c362c3233352c3139332c34342c3138332c35312c3133352c3131302c3131362c34322c3138342c3231332c3134372c3139332c35382c3231312c31342c3135352c3131342c3133332c3230382c3231352c31302c3235332c3135382c342c3137312c3231312c3132352c37322c3136332c3135302c36392c38342c32392c32302c362c36322c32342c3230342c32332c3133352c3136322c3232342c3135392c312c31312c3139372c3231312c3136392c35342c37342c3137322c31312c31302c3137352c3132332c3232372c37342c35372c3130352c3131322c3132362c35312c39312c3135352c322c382c3132312c3139372c32382c3233322c3136322c3137382c38322c3138312c3132382c3135302c3137382c39392c3135362c3136382c35372c372c31322c3130362c31342c3130382c33302c36372c3230392c36392c3230382c33335d2c22706f70223a5b3138312c3234302c3138392c3134342c3233302c3138312c3131342c3130362c39322c3230312c38382c3131352c38362c33352c3135352c3134372c3136352c32392c3230392c31392c32362c36322c36382c3234312c34382c3131372c38362c39302c3232322c3131352c3131392c3135302c3135362c3130332c35362c312c3131312c3135392c31302c3131392c39312c3136322c35352c3234392c3136362c3136332c3135322c3131332c3137372c3131342c3139372c39312c39392c3137342c37342c3233392c33332c3139312c372c3232352c3136302c3135362c3130352c33302c3233322c3231352c3134312c39342c38332c39392c31352c3131342c3138332c3135332c35382c3137362c3133332c36322c3232342c3131302c3138352c302c36362c34342c32392c3138322c34392c36312c3133362c3230312c3134392c3130342c3231392c3133302c3137362c32395d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3135382c3134352c3131392c36362c36392c37332c3130362c3138362c33362c32362c3130312c35352c31382c3138382c39302c34322c3134362c302c3135332c36362c37362c35372c3137322c31332c36312c3131372c33312c3235352c3130302c36342c36332c3132352c3130312c31382c3136362c32322c31312c3231312c3138382c3133302c3231342c3138372c332c36302c3137372c37332c3134332c31332c3235332c3135302c39372c3133332c3138302c38392c3133372c3137342c34342c3232342c39322c35322c3134372c36322c3233342c385d2c226c68735f706b223a5b31392c3232332c32372c35342c3230362c3139312c3134302c36302c3139382c3137302c31302c332c3139332c37362c3138362c39312c3230332c32332c3231322c3235302c3132312c33362c3138332c3137312c3133322c3138382c3133342c3233392c32352c36372c3139382c365d2c227268735f706b223a5b3135302c3234322c37362c35392c3234332c3134372c3231352c3130362c36302c33382c32372c3131352c31362c35312c37332c3139362c3134332c39342c3234322c3230342c31322c3137352c3135362c3235312c3132392c3133322c3131362c38302c3138302c34342c3132352c3138365d7d2c226c68735f706b223a5b34322c38342c3139302c3131342c32392c33312c3133302c3233392c3136342c32302c3132312c3137312c3231372c392c31312c3230312c36342c3133342c3134312c31342c3133362c3138352c3135352c3230392c3133372c3135322c35382c3137322c3137322c3232342c3135312c3235325d2c227268735f706b223a5b3232332c3231372c38362c3130352c31382c3139392c3137312c3232302c3130312c32362c3137302c3231332c3234352c3130352c38322c3134352c3133342c3130382c3135332c322c32342c3138302c3232342c32342c3235352c38322c32342c34392c33332c3231342c38392c34345d7d2c226c68735f706b223a5b31382c3232372c3134312c39372c31322c38312c3233302c3135312c38332c3234332c3132342c3131352c3131302c3232302c3132382c3137352c3230332c36322c3132332c36302c33332c3139372c3131332c3138302c332c3233322c3132342c39332c3134332c36322c362c3134365d2c227268735f706b223a5b3135322c3136312c352c3133342c3135312c3135382c3233302c3132372c39382c3134322c34342c33382c39382c35322c35342c3132312c3131312c3130352c3132372c38342c3132392c3235332c36352c3135372c3130352c3131352c3132382c39332c3139312c33302c35322c37365d7d2c226c68735f706b223a5b32382c3138372c3233382c37392c3130332c372c3232302c3130372c31312c3138332c3235322c35332c33342c3139312c3130342c33332c3131332c38342c37332c35382c3137382c3136382c3136362c3137372c3132342c3135312c3130392c32332c3131322c31362c3232352c3135355d2c227268735f706b223a5b36302c3139342c3134382c33372c3131302c3130312c35352c3230332c3134342c38372c35302c3133342c3230302c39322c35332c3233322c3136302c3232312c3138302c3136342c3234382c3137302c352c3137322c3231382c3230392c38372c3232362c3234372c39352c39312c34305d7d2c226c68735f706b223a5b34372c3232332c36342c3138352c3232362c3233322c34382c38362c33332c3230302c3134392c3135372c3133362c3139392c3135342c3132342c39392c38352c37312c3130362c3139362c3231382c3130392c362c32312c3135382c39392c38342c3136322c3232302c39302c3234385d2c227268735f706b223a5b3134382c3135312c3138342c3138352c38382c3139392c33302c33322c3231382c3139312c3135302c3139302c3233372c38322c32312c39362c3135382c3233302c3130332c3139382c3138352c3233332c3137352c3133352c3138372c3136332c302c3135302c3130362c36342c3139362c3233395d7d2c226c68735f706b223a5b3230342c3133302c3136312c3135372c332c3136312c3134342c3232342c3233352c35332c39392c3136362c3135322c3135352c3234392c3133302c3137382c3233362c31362c3136302c3233322c34352c3233342c39302c322c3231312c3230322c37312c3235302c3234362c33332c345d2c227268735f706b223a5b3235352c3133382c3230352c37342c3137382c3139322c3130332c3132362c36302c3136342c3135382c31352c32312c37312c3131362c34322c35332c36392c34392c33392c3234352c35362c3135322c39322c3233332c31362c3136322c34352c34342c3232362c39382c3231325d7d", - "operational_certificate": "5b5b5b3136302c38382c32332c31332c33332c3138302c31302c3139382c34352c3138312c3130392c3233312c3136382c3233382c34382c3234322c35322c3136372c312c3233302c32302c35342c33382c3235322c33332c3130362c31322c31372c37362c3134312c32342c3235315d2c302c302c5b3233372c3232342c39352c3139362c3130362c3233342c3232322c3134362c3231342c39302c3138322c32322c38342c3231372c3130372c3137352c35322c3130322c36302c38392c3137332c3137362c3235322c35322c3137322c35312c332c3230332c3233322c392c3134352c35322c38362c3137302c38372c3138352c3138382c37342c34332c3136392c3132342c35352c3230352c392c35322c32312c3136362c3137362c34382c3138342c3130302c322c32382c38362c38382c3231362c3232342c332c3130382c3138372c3235322c39372c3138342c345d5d2c5b35382c3233302c35312c3130352c3138392c3139382c32322c3234372c3136362c34372c3231392c3234342c31392c3133372c35372c3131332c3231352c35362c3138372c34332c3135332c36332c3138332c3137332c32332c3130392c3138342c32392c3234392c32332c34392c3130305d5d", + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3136322c3139322c3130322c3232352c3133312c3231352c3136382c3234342c3232362c3231382c3130302c31332c37312c39362c39382c3130342c3233382c38392c35382c3132332c3130352c31322c382c3136342c3138382c3136342c312c3233352c34382c3138362c31322c3233372c34382c3139322c3139362c34392c35312c3134322c362c35362c3131302c3231362c3232322c3132352c33382c39302c37372c3231312c31372c3134392c322c3132382c3231382c32322c3131352c37302c34352c36342c3138312c3135382c32372c3131352c3131362c3136302c3134332c3132322c3232312c37302c3133382c3232332c3132352c36392c3133362c36312c3232392c31362c35302c34302c3138312c3132382c39372c3130332c39362c3232322c3138322c3132342c3230372c3230302c3138352c32362c3234372c3136352c3231372c35322c39392c3130325d2c22706f70223a5b3136302c31312c3130352c39352c3130352c3136322c3235302c3235312c3232392c39322c3137342c3134392c31322c3135372c362c3131302c3232392c34322c3233302c3233362c36392c3232302c3133332c3133342c3135392c38312c3131362c31392c3232372c3232342c3136372c3233372c3233372c3137362c3133312c3235352c3235332c3136352c3138312c3230352c34302c3230392c3131382c3139322c3139312c3130392c33372c3138312c3133322c3133322c35362c352c3133342c3135352c352c3134312c3138302c31372c3230332c3234302c3136362c3136332c3134352c3231332c3232322c34362c3130352c3130312c3137332c3234382c3133332c3232392c3233362c3134332c3136352c3131382c37392c3138392c3132382c34322c3231322c33302c3131362c3136392c35302c31302c38312c31382c3138342c33392c3130332c3134382c3233332c37322c3233392c39305d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39382c3138302c32392c3232342c3133342c38362c3138392c3139352c38382c3134362c33392c34312c3136302c39362c3235332c3131322c392c3235332c34302c33352c35312c3235342c3130302c3231362c3139312c33312c3231342c3132302c3134322c3232392c3133362c3134372c32352c3137352c39332c32312c3138332c37382c3231312c3230302c3139362c32372c33332c3135322c3131332c3131302c352c3136372c3233312c3134382c3130302c3131362c3132392c3130362c3131352c3130352c3134372c3138332c3133302c37302c3132392c32322c3133312c305d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1ngg30xhk49sjdyu6mp22ppv73gf2rdh60sx7f47lar57z009n86", - "verification_key": "7b22766b223a5b3136382c3135342c32382c3232312c35372c3137342c36372c32342c3134382c35362c3139392c3132382c3137352c38392c382c3233352c3139392c3232302c3235332c3133362c33342c3234352c3131382c3139382c3139322c3132302c302c3138332c3136332c3138382c3233302c32382c39342c34322c3139392c3232362c3130332c3135392c3235342c3233392c38342c3232362c31322c3135382c34382c31322c33352c3234302c372c32322c39382c3132352c3130362c3132302c3230322c3231322c3231312c3233302c3232392c3136352c3231372c3133392c3136342c37382c3136332c3234372c31372c37322c3130332c3133342c3137352c3139322c3136372c3231352c34392c3230382c3136342c32372c3133312c34382c3232362c34372c3138382c3232362c3233362c32382c35362c3232312c3131322c3135382c3133322c3138372c35372c3233312c35372c3133375d2c22706f70223a5b3136362c3234352c362c3232372c3138372c3135342c32382c3130312c39342c3137392c32372c34392c38302c3230302c3138392c35352c3134312c3230352c3133332c33382c3136322c34302c39302c3137362c33302c3131392c3233312c3131382c3230362c33372c3139392c3231392c3132312c32392c32372c3133352c3131322c3235312c3133302c3131312c352c382c3230312c3134312c3134342c36342c3130342c3137362c3136302c3138372c3134332c34362c3137302c3231382c36382c3230392c35302c35362c31302c31352c38342c3136372c36362c3130372c3232382c3130372c3130352c36362c37302c3234302c37372c3139352c35362c3139342c37352c3230392c37342c3231312c3231342c332c39362c3131332c3137322c39302c37332c31312c31362c3235302c3232342c3230362c3134312c33362c3233332c3139312c35352c32325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3131392c37362c3136342c3135362c3234382c39312c3130372c3233372c3233382c3232322c39352c3136362c3131392c312c39312c3234362c35372c35342c3231332c3132392c3130332c3132342c3230342c3131362c3231322c3133362c3138312c3136382c34322c37352c36392c3138342c3234342c31332c3132342c3131332c33372c33392c3232312c3138392c3232392c33392c33352c3234312c3137302c31332c3234312c3132392c3230362c3137372c3133332c32302c3133322c3134302c3131372c32352c3233392c3232332c3136352c37302c38362c3134392c3130392c31345d2c226c68735f706b223a5b3132312c3133372c32392c31362c3139382c312c36382c3134372c3139382c36302c3231332c38332c312c3132302c3138362c31312c31312c35382c3130352c3130362c32372c36372c3231302c3235312c3230372c3131322c35342c3135312c33312c3138362c3130392c39305d2c227268735f706b223a5b39372c37382c312c35322c3134322c39362c34362c362c35382c3131342c3133322c3231362c3234302c3135312c3138362c3233332c33302c3137372c362c3139322c34362c34392c36362c302c312c3130382c38352c3138322c3131382c37362c3135382c31355d7d2c226c68735f706b223a5b3234392c3234392c3139302c39392c3234392c3131302c31392c3137332c3137342c3234332c3131382c3133362c322c3235332c32372c31392c38372c32302c3230312c3135392c33322c32302c3135332c31352c37362c38332c36342c3131382c36322c3138362c3137312c3131335d2c227268735f706b223a5b3139392c33332c3134312c3132332c3235332c3139342c3230302c3135312c302c32332c3130382c3138312c35392c3232322c3235352c3131332c3133362c3136332c3131342c32322c33332c39332c36332c3131352c3235302c3230382c3136332c3138322c322c3138352c35322c31315d7d2c226c68735f706b223a5b3234392c3132312c3134312c33322c33332c3230302c38392c37382c38382c35382c3231332c3231312c3133362c3233382c33392c33362c3133392c3135312c37362c3138332c3133322c3231372c3231382c32302c3233392c3230392c31392c37362c3230342c3235322c34382c35375d2c227268735f706b223a5b3131342c3135392c37302c3134372c3135382c3232382c32372c3235312c32342c32392c3133342c3134312c33332c3231392c3131372c33302c3234312c3231382c3232312c3134322c36312c3130382c37362c3138332c38302c3231332c3137302c3133312c3230342c3234322c3132312c32385d7d2c226c68735f706b223a5b32372c3234322c3234322c3230352c36342c34362c31362c3137362c37372c3233352c37332c35382c3133372c34392c3133382c3134352c36362c32352c312c3132342c3231362c3138312c382c39352c3132392c3130392c3135392c3131332c3135372c3139362c3233342c37375d2c227268735f706b223a5b31352c32332c3133362c3136342c3130322c3131322c3230382c3134302c3135382c31312c362c31372c3230382c3133382c3131372c33362c3235352c342c3134312c3231322c3138352c39372c382c3232312c3137302c3139352c39382c3137352c3232342c3234342c3232352c31325d7d2c226c68735f706b223a5b3134372c3133322c36312c38342c3132312c34332c3134342c35362c3136352c3134312c32332c3130372c37382c3136312c352c3133332c38302c3137352c3235302c3230322c3234382c3233342c3233302c3232392c3131382c32352c3139392c3137352c3130302c3232302c3137392c36315d2c227268735f706b223a5b3139362c37372c36332c36302c3133382c35302c3133342c36362c3138372c3137372c3137322c3139362c3137382c3130322c35382c3130322c3134332c3130322c32302c3134352c32322c37332c3130322c3132372c3136372c3132362c3232382c3234332c3133352c31352c3130302c37365d7d2c226c68735f706b223a5b39312c3135332c3235322c38302c3234322c3130362c3131392c3234352c36372c3233362c3231372c3132342c3132392c3138312c31362c3135382c3132382c3234322c3136322c3135392c3136312c36392c3235332c39382c31312c3133302c3136312c32392c3131302c3130322c34332c3137385d2c227268735f706b223a5b38312c3133352c3136372c38342c31332c34352c3234342c32382c3230312c3234382c322c35372c3232352c3137392c322c3137382c3234322c35352c3137332c3134392c3139322c3137302c3230392c3134312c33332c3135332c3233372c3131382c3135342c37332c3130362c3131305d7d", - "operational_certificate": "5b5b5b39362c3134362c3233352c38382c32322c382c36372c34312c3139362c34372c3234362c3230312c39382c3130372c35322c3232392c35362c3134312c34312c31312c38342c36312c34312c3131342c35362c3132362c3135382c39392c37302c3230332c37302c37355d2c302c302c5b3137392c34302c3134332c3133352c38322c35312c37342c3235342c33352c3232322c3138352c3132382c35362c3231382c3137362c37352c34382c38322c31382c3135352c3130342c3136372c3231302c3137382c32342c3231312c3231312c3231322c36352c3130382c39362c31362c3130332c31342c38362c3139302c3231332c3138372c3230312c34312c3139342c3234332c38362c3233312c3230392c35352c3232302c3137372c3231332c3137362c3233372c36322c3231392c362c3137372c3132302c3135372c3230322c36362c34332c3234322c3137382c3131342c31355d5d2c5b32322c3131322c312c3234392c372c3139342c3138322c3235352c3133332c3132362c37392c39332c3133312c37382c34312c35342c3138372c3130302c3138392c3235352c3231302c3233302c3234322c3235332c3231362c342c31312c3137392c3137342c3233362c35322c3230325d5d", + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3136342c3230372c332c34332c33322c3232332c3130372c3232382c36382c352c3230342c3130362c35302c3234322c3131312c32362c34312c3135332c35352c3139352c3134332c3132392c32302c3139372c3133312c32392c33312c3137342c3230362c3133382c3135342c3130392c3139362c3233312c37322c3132372c332c33322c36322c34372c3130342c322c3234392c33322c3234392c3232312c3138322c33362c322c3134332c3234312c36332c3136312c3137342c3133312c32362c3234342c3136382c322c3232372c3135352c3231392c35342c37362c3232352c312c3135372c39352c39312c3131362c3135392c3230302c3131382c3131332c31312c37312c33372c3231322c3233312c3232352c3230322c3136342c39302c322c34362c332c35322c32322c3233352c32322c3133332c38342c342c3133302c3139312c3139305d2c22706f70223a5b3136312c3130302c3132372c39352c34362c31382c35342c3133382c37392c3136332c34352c38382c39302c3230302c38352c3133362c3134352c3230352c3135312c3231382c3139322c3136302c3135312c3132312c3138342c3137392c36392c34372c3134332c3230322c3133302c3131362c36302c3134322c3138332c34382c3132302c3135352c35302c38392c3135382c3139302c3138382c3133362c3136352c3231372c3233382c3138382c3136372c3137392c3138342c3132352c35322c3231342c3130392c3133322c36382c32332c3233342c3132332c39372c3133372c3231342c38352c39332c39312c362c3137372c3233312c33322c3133392c38392c32392c3139322c3232392c3134392c3134372c3231352c3130392c35372c33362c32392c3135302c32352c3138332c3132302c3132322c3139352c3135302c3137332c3231322c362c38322c3135322c3230372c3232305d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3133392c32332c3130362c3132322c3130332c37302c3233382c3138382c34372c32362c37392c3131362c31392c3137372c3234372c33312c3131302c3230332c37362c33342c3133342c3130382c35302c3230322c35352c35362c3136352c3230312c3135372c3139382c3234372c32362c3135332c33352c3130382c3135362c3233312c34342c34302c322c3231372c33352c37302c3135312c3131362c3232362c34332c3131362c3138302c31362c3231302c34342c3139392c3131392c3231342c3130372c32322c33372c3134322c3232372c3235302c3135382c3135342c31335d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "f295876cf3700ed5d293ebf35a37d47793244064c5b2979aca22b03bb2a8d5f5", - "certificate_hash": "d0a3283d2fb32d33dfbb703033100860c2446bf5aa10b80588ce02881a641d8d", - "created_at": "2024-08-08T15:15:15.587406Z", + "hash": "88c64139d188a2c257637a53e7e81583d7d7ed96d5954ea6bb55c54a59da1b9b", + "certificate_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", + "created_at": "2024-09-09T12:59:37.219892866Z", + "protocol_parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + } + }, + "998830d208991bfbb1d1320542691bd2169aab6e022d67e2b100c43afc35975f": { + "epoch": 56, + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3134302c3131372c362c392c31362c39302c3137312c3132362c31392c3130342c3132312c3131372c36382c39372c342c3134362c3138342c362c37322c3234312c3139362c32392c3139362c39382c38332c3135372c39312c35392c3137352c3134312c3235352c3131302c332c3232332c33342c3233382c3135322c3138352c3130332c3235352c3136362c39352c3133342c31392c3234392c3135342c33342c3231392c342c36362c352c3133322c33332c3132312c3234352c3231342c3137372c3135352c3139312c3232342c35322c3133372c3230302c38322c3235322c3235322c34392c3139302c3230372c3139382c3131302c3138302c3231372c3132392c3231352c32362c3132382c3231312c3133352c3231322c3231352c3234322c3233392c36302c3136322c38372c33342c39362c36362c3137392c37362c3136372c37392c3139342c3133322c3133335d2c22706f70223a5b3137392c3139322c3232302c3133302c3234362c3138392c362c3235302c3135382c3130382c33312c3132382c31302c33372c3135302c3232372c3134332c3130342c3232312c3234382c39352c3136352c3134302c3136342c3231372c32342c362c3131332c3137302c3230322c3138322c3134342c3231352c3133352c31352c3231322c3134342c3232372c39332c3130372c31382c39372c372c3131382c34362c37382c3233372c3131392c3138302c3131322c3230372c3137342c31382c36352c3132392c32302c322c3130382c36312c36372c3130372c3233302c3137362c36322c3231382c39332c3234372c3138382c3134372c3139322c35372c3232312c3233332c3131362c3131312c3134312c32352c39352c3133342c312c3132352c3135382c3136322c3234342c38362c3131312c3231322c31382c33392c3134362c3133302c3135362c35372c3139312c3234362c3135385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b38302c3137322c3136342c31392c3136332c35312c3233302c3133312c3139382c3138302c3131332c362c36382c36372c37372c38392c3132332c38322c33372c3132382c3233382c37392c3134302c35372c3138352c3137382c37312c332c3130382c3131372c3137322c37342c3231322c3134302c31342c3234352c3232382c332c3135392c3137302c3134372c35322c3133312c3232322c3135342c3235322c37382c3232302c3231392c3138352c38352c3139372c342c34342c392c3232312c3131302c34302c37352c3233392c38382c3134322c372c385d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "kes_period": 0, + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3135312c3130322c3132352c3133382c3138362c3138372c31342c3235302c3131342c3235322c3133322c3133382c3132312c36372c312c3130392c32342c39332c332c3231352c31362c3231332c3230362c3132382c36332c3139302c3233332c3135372c3138302c3134382c3135352c3138392c3231322c3139322c34332c3131362c34302c34332c3134332c31352c3133302c38382c35332c3131302c35332c3230342c3231312c38322c322c3139362c3232372c3137312c3135342c31392c3139332c3233332c3139392c3234302c3130362c37342c3137352c3131352c3131382c3134302c3135352c3234342c39342c32322c3234352c3135332c3232302c3233312c3139372c39392c3136362c3133332c3130372c3130352c34332c38302c34362c39312c35362c34302c3232312c3132342c3136302c3134302c3135362c3232322c31302c3232382c3234392c302c3230302c3234305d2c22706f70223a5b3134332c39302c3136302c3133382c3232392c3131392c3133342c38372c3132332c3234352c3137312c3231382c3139322c35372c3233312c3131352c3230322c36382c38352c3133362c3136352c3231322c32372c3139382c37302c38392c3233392c36322c3139392c34352c35342c3135332c3230372c3136332c3137362c31322c39372c3231302c3136312c3232392c3133352c33362c32362c3232372c3136352c3130382c3231352c3230312c3136372c3233382c3234312c3235302c3136392c3139362c3132342c3233392c31302c392c31362c32322c34362c3135332c3136302c37382c35382c3139382c31392c39382c39362c3134362c3230362c38382c3139332c3135392c302c3138322c34342c34372c3234362c38302c3230382c3232382c34382c3132312c3230362c3135322c3137372c34302c3134302c3130382c3234302c31342c3139392c3231352c3230302c31335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3232382c3130372c36342c35392c34372c32392c37302c35322c3137332c34372c34372c39312c38342c37322c33302c332c3138352c3135332c36372c34392c3138312c34382c3135302c3235322c3234392c322c32362c3132372c3233362c3134392c39302c3130312c35342c342c3131382c35322c36332c33312c3134392c3137382c3138392c3235332c3130372c32382c35372c3133392c39312c3233342c32302c31302c34302c31362c3138332c38332c31362c3234372c36312c3137372c3230362c3131342c37302c3233332c39302c395d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "kes_period": 0, + "stake": 13333333334 + } + ], + "hash": "998830d208991bfbb1d1320542691bd2169aab6e022d67e2b100c43afc35975f", + "certificate_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", + "created_at": "2024-09-09T12:59:28.726128329Z", + "protocol_parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + } + }, + "99f6b6b57fc30cd2b2a2869eec097d80a07be61e4669fd38d20da3c593bc908d": { + "epoch": 47, + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3133332c3134302c32332c33312c31382c3232322c3136322c3235302c3133372c34332c3137352c3137302c3231322c3130302c31312c3230302c3137362c3234302c3132312c3135362c32302c35312c3132312c3135332c3132302c3135382c37332c35382c34302c3131322c3233342c3136382c3139302c37362c3235342c3134342c3138352c35342c38362c3135322c3231332c34312c37322c3231352c3135352c32352c37382c3131312c392c3234322c37352c3232332c3133342c38352c3135352c3133342c36362c3136382c32352c3131312c3231322c39392c36332c35392c39332c362c3232332c35312c3231362c3130372c37392c36352c3133362c3132342c36332c3131312c39302c3136332c3231342c3135342c3137352c31352c3134322c36312c3131362c3131342c322c36352c37382c3234372c3133392c3134302c3234342c35332c32332c3131315d2c22706f70223a5b3136382c3234312c3231352c3231392c36382c32312c38302c3132362c34312c3137322c3231392c3235302c36332c3233352c3230312c31322c34352c342c33322c3132372c3139302c33332c3138342c3233372c3130382c37362c332c3134382c3132372c3136392c3135322c32382c382c3230302c3134392c3132332c35352c32342c3131302c34372c34372c3130322c3131302c33322c3138302c32312c3132372c36362c3136302c36352c39332c33362c3230322c3132352c3133352c3235342c35312c3130392c3138382c38382c3232372c3230392c3133342c36332c32372c3130312c332c3134352c36312c3132312c3231302c3230312c34302c36302c3136312c3137382c3132392c35312c3135312c3137382c31342c3135312c3232302c35332c3133302c3133302c3136302c32322c3232302c3139342c3133322c37302c35302c36382c32302c36355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3234302c36392c3232312c3234352c37382c3137302c35372c33322c3136382c3231302c31362c34342c3233362c3130342c3235322c3231342c3230352c3230382c35322c31372c3233352c3130392c3134352c3130352c3232382c33352c3234302c3232362c3230372c36372c3231312c3131332c3232372c3233322c3235332c3136352c3138312c3235352c3232382c38372c3131342c3136392c3233362c37322c392c37362c32362c33372c32302c3132382c38342c3233342c3136332c31362c33352c3234352c3134372c37352c3131372c3135322c3234382c33372c3138312c31335d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "kes_period": 0, + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3137372c382c3136322c3138392c31392c312c362c36302c39302c3133322c3235342c3131332c322c3230372c3136352c3137352c3230362c35302c35342c3235322c3134322c3136392c3231392c39352c3130332c3133352c3137312c35342c3138392c3134302c3234302c37342c35312c3136392c3136372c3136312c31342c3139362c3138392c3139342c34382c3235322c37362c3134302c3233362c3137382c37302c33372c362c36322c3134332c3131372c3137302c3230392c3135302c3138312c33372c37362c31392c35342c3233352c33392c3130312c37302c39342c32362c332c37312c3235332c36362c3136392c3231302c3133322c352c3133342c32362c31372c3230382c3130372c3135362c3131372c3235322c3130392c35342c3230322c3138322c38332c3135312c352c3134332c32392c3137342c302c3233372c37392c35355d2c22706f70223a5b3133322c3234302c3135382c34382c3139312c3133302c3137332c37382c38372c3133312c39392c38382c3132322c3234312c3231382c35392c3234362c33322c3130322c3235312c3135372c3138382c33322c3235342c32362c3137322c36312c3135342c3234362c39382c37332c3230372c3139322c3133352c38372c37392c3230322c3134392c31372c31372c34392c32332c34332c3135312c36362c3133352c3233382c31382c3136332c3138372c36332c32392c38332c3233332c3130382c3139342c3139322c37332c3139372c38352c3130392c332c3136322c302c3132382c3137342c3138312c3231382c3233302c3232302c3135372c3132362c3137342c3232332c34372c36312c3139342c3135312c3234312c3135332c3130342c3230392c3231352c35302c31342c3234302c32372c39392c3234392c3231372c3136382c33322c3235322c38392c34322c3132385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35372c32382c36342c3233362c33392c36332c34312c38312c34312c35372c342c3133332c34312c33372c3137362c3135342c36332c39382c3136352c3233342c3138332c3231322c3234322c3130362c39322c3134342c3135362c3130342c3139322c32312c35372c3131312c3136382c31342c39322c3139382c3235342c3135372c3231332c35382c37322c3131332c3134362c3132352c32372c34332c3136312c3133352c3134302c38342c3231372c3233322c3130382c362c3232352c3133322c3132312c39362c31332c3231302c33382c38332c362c345d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "kes_period": 0, + "stake": 13333333334 + } + ], + "hash": "99f6b6b57fc30cd2b2a2869eec097d80a07be61e4669fd38d20da3c593bc908d", + "certificate_hash": "4d674234cd3e602f78faea111462ddf994cc91222061df8627718b572a389afb", + "created_at": "2024-09-09T12:59:04.797478558Z", + "protocol_parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + } + }, + "dc001c23bd8de6229e4427578f369dabd4d9ea1f99a87683aad0cb55e7624944": { + "epoch": 48, + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3134322c36342c3233392c3132302c38332c3132352c3134332c3138312c3133312c3130312c3232362c3231332c32302c33342c3135372c3232382c3135392c3230352c3230382c3135312c3230342c3138342c33342c3233372c38392c3131332c3137392c3233322c3130382c3231352c3232382c3235302c3134362c3134352c3134392c38382c39382c3230322c36392c36332c38372c332c3232302c3132302c3135362c3135332c34332c3132322c322c3134332c3136342c3233312c3136322c3138372c3233352c3130382c3131302c3137392c3135332c38302c3233372c3132342c3137352c3130302c3136302c37332c3232372c332c3137332c322c3234342c3232332c39362c3136352c3234362c372c3231332c3232342c3135332c37312c34382c37312c3132312c3136392c3138302c3230322c39322c3137332c3233382c39352c3230302c33372c3138382c3235322c3235332c33345d2c22706f70223a5b3137322c39302c3231372c3230372c3132362c39322c3230352c3232352c3138352c3132322c36372c3137322c3139342c3230362c3234322c352c36312c3133302c37372c3233322c33372c33312c31302c3130332c3139332c37332c37392c3130372c3135372c39372c31362c3235312c302c38312c35312c39352c3134352c3133302c3136352c3234382c3138312c3139322c342c35382c3134322c3133342c3134382c33352c3134372c3139322c3136312c3135302c38392c3133382c3132382c34362c3134312c3132322c32332c3136332c3137392c3235322c3130342c33312c3133302c3133342c3134382c3138312c3134322c37312c3130342c3234392c3138302c3136332c3134342c3134372c3139352c3139302c39322c34322c3232302c3136372c35302c39322c3130362c302c3137342c3130382c38362c32372c38312c3231352c35352c35352c3130342c3130385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3137372c38342c35382c35362c3234372c3138332c3232322c39342c3130322c3233332c3235342c3131342c332c3131392c33372c31312c39392c3137362c3130382c31382c31342c3131302c34302c3234372c37392c32372c3138342c3133382c3138302c32362c3231302c33372c3135312c322c38362c35302c37312c31322c35302c3135392c32342c3232362c32322c36392c32372c35342c3234362c3230372c38352c3131342c332c3138382c35342c3132352c3136322c31322c3232332c3134372c3232322c3136372c3231372c3230382c3230362c395d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "kes_period": 0, + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3135302c3137322c3136382c39312c34392c3135342c34362c3134372c312c3137342c3136312c3233332c3138332c37312c3234332c36382c3139312c34332c3133342c37302c332c3139332c3135372c3132302c34362c3231332c3138392c3134332c322c3137382c33362c33372c36362c3139362c3230392c3234322c3235332c3134332c3137302c39392c3132312c3232342c3235302c32382c35322c34362c35362c34392c302c31382c31312c3231312c3139362c32352c3138332c35392c3137382c3136352c35352c3233322c3231302c3130302c32382c3130372c34392c3131312c3131302c3232302c35322c3132352c3235342c36302c3233312c3232332c32382c3138372c31332c37312c3139312c3133352c34382c3235312c3130342c3131322c35332c3139352c3136352c3234352c34302c3235352c3130352c3235332c3139322c3130332c35312c37395d2c22706f70223a5b3132382c3131342c3132342c32302c3138332c362c39312c3138322c38362c33332c3131332c3234322c35372c3134312c3139322c34362c3230382c3138342c39352c33342c3133302c32352c31342c3132302c382c3230392c3138332c3138372c3138362c3135382c3230362c3139392c3231332c33322c3232332c3134332c3231302c3130372c3130372c38302c38332c33332c39312c33372c3230392c3134362c3135372c3139332c3136382c3132322c332c3130382c3135392c3136372c3133342c3136372c38382c3130392c3131322c38322c3138372c3138302c3130392c34302c3132332c3233382c3135352c3139322c3139382c31302c37362c3134382c34312c3135392c372c3130332c39322c35342c3131392c3130332c38342c36322c3234372c36372c3234352c37312c32372c3133322c35372c3136342c39362c3137342c3131382c37322c38362c3134385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39302c37372c312c3138382c3130362c31302c3132302c3133362c36322c38302c3136332c34382c37322c3138362c3139342c36352c35372c3130362c38392c38352c3133372c3235332c34302c3138352c39332c33342c34312c3231372c3135332c31362c37312c3137362c37322c3235342c3230392c38332c33332c3231322c39302c3139302c3137302c31352c3231392c3231312c3134342c3133332c3134332c3137362c35352c3139302c3133342c3131382c3130352c3133352c35312c3139312c36302c3139392c35302c3131332c37312c36322c3130312c305d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "kes_period": 0, + "stake": 13333333334 + } + ], + "hash": "dc001c23bd8de6229e4427578f369dabd4d9ea1f99a87683aad0cb55e7624944", + "certificate_hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", + "created_at": "2024-09-09T12:59:06.295359040Z", + "protocol_parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + } + }, + "e20c6549c0a92807d0dfa88acfc557a7a22bfab535c5ef47415c218b7f6c9a64": { + "epoch": 57, + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3135312c33392c33352c3133392c37362c3134352c3136362c38352c38352c34312c37362c39322c3138332c35322c332c31352c3131372c3230342c37302c3130302c3132392c332c37352c3231362c31372c31322c3139372c3133322c33322c3234302c3134312c34332c34372c34362c3138312c3131342c3231302c39312c32372c3136302c31332c33392c3130322c312c33362c302c35372c3139382c32302c3137362c31362c3232302c3232392c3130322c3139302c38392c32342c38342c3134332c34392c3233322c35302c3138372c3134302c3233352c3134332c38342c3136392c3134372c32382c3133382c3132312c3234362c3132312c3135342c3137322c3130362c3138382c3233342c3131352c3232342c36352c3135332c3136332c3139362c33342c39342c32362c3231362c3134372c37382c31342c39392c33322c3133342c31315d2c22706f70223a5b3134302c3132362c3131352c37332c3234322c3135382c3134362c3231352c3230362c3133332c3132372c36342c3134362c39392c34382c37322c3134322c3131312c39362c3134302c35312c33322c3230362c35302c3234392c3234382c3137372c3134352c34342c3133342c3232312c382c31352c3231382c36392c33362c31352c3132362c3132332c3130302c31372c3231362c332c3231332c3133342c3131342c34352c3130322c3137332c3134392c3138332c3230332c3138372c3134352c3137382c3138322c3137362c3234382c3231332c39322c39382c3139322c35362c35362c38342c39302c3133382c35312c3133302c38342c31302c39302c3134382c3233362c3230302c3131322c3232362c352c33392c3134332c31312c3138342c3230312c3132342c39352c3138342c31332c3138312c33302c38302c3231312c3137332c3135392c3131302c31362c35375d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b36392c3130382c32352c34332c3231362c3139382c35362c3137362c3231332c3232352c3139342c3139382c3138382c3233392c3231322c36342c34382c3230332c37382c332c31382c32322c3230392c3234322c37342c38342c3136392c3134342c38342c3231322c34382c34362c3137302c34322c31332c39362c3235332c3137362c3134322c37372c33312c37352c38342c3232312c31312c3134332c36392c3134332c39342c3131332c3134322c35352c35312c3135342c36382c36342c31322c32372c31352c3231302c3130312c3135332c3133362c325d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "kes_period": 0, + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3136372c32382c3231342c3134322c3135322c3234362c3234362c3133372c3132352c3130382c3138392c32392c3132352c3137302c37362c3234392c3139362c3233312c3135372c3135392c32312c3234362c38352c38362c32342c3132322c3132302c3235342c31312c3234352c3132392c31382c3137352c3234322c3137352c3131332c3234382c31382c3137302c3134352c39382c3137382c3234332c3131322c3133342c3136322c31332c3138332c32332c31302c3133322c33332c3230352c3136342c3234352c3136382c39352c3231372c362c3134322c3136322c3134332c3133342c33332c3132382c39332c3131362c302c31352c372c3138342c3138342c3137352c3232322c3139352c35342c32312c3230342c38392c38342c3136352c3135382c3231352c3230362c3234392c3139322c3234312c3135382c33382c3134332c31382c33312c3133372c3138332c3130342c3233325d2c22706f70223a5b3138322c38322c3130392c3133362c3132332c3231382c3130302c32322c3136362c3230302c3137372c3135342c3138352c35332c33302c3139302c3134342c33352c3130372c3136312c32302c32382c36332c32302c3139322c3134382c3136372c3132322c3231362c34372c382c3132302c3136382c37362c3232372c34382c32322c3130312c3234342c3138392c3133362c33322c31322c34302c32352c32342c3132352c3134332c3133392c3131312c38322c3137332c37312c3138302c3132362c3134342c3136332c36302c39332c3230312c36392c37362c32352c31352c3136362c39312c3230372c35362c34392c3138332c3135372c3134332c3136352c3232332c3230392c3234392c3139332c3138362c32362c39302c3234392c3138322c3138312c3130362c3133332c3136302c36352c3234312c3131322c38322c3132362c3131342c3137342c3136302c3233392c3138375d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b31342c3134332c34382c3136382c3133362c3231362c372c3135342c312c3135352c3131382c3136352c3139342c3134302c39342c3133312c3132332c32342c3133322c3137352c3135362c33312c3132372c3136342c3234312c3233372c33342c3234352c32362c3134382c3136372c3232372c3132322c3135302c32352c3136382c34312c31392c3231302c3234342c3136342c35392c36372c3131382c382c3133362c3232352c38342c312c39322c3230352c3138312c35322c3138372c35302c3137302c3138332c39362c3234362c3233362c3133352c312c3233332c315d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "kes_period": 0, + "stake": 13333333334 + } + ], + "hash": "e20c6549c0a92807d0dfa88acfc557a7a22bfab535c5ef47415c218b7f6c9a64", + "certificate_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", + "created_at": "2024-09-09T12:59:31.488750133Z", + "protocol_parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + } + }, + "e26e6e03e5da23dcc83ecd3645f943e97e3318e78d68c1b56e28f561db22b823": { + "epoch": 50, + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3137322c3231352c37322c33342c37342c34342c3139372c39302c38352c3231302c3139372c3139302c37342c3231342c38392c332c3132382c3138392c33362c3135392c38312c3135322c3135352c3139382c3133362c36372c3133312c342c3134322c3139352c3133322c3133392c34372c3132382c36372c3137352c3234352c31342c3136302c3130312c3132332c3138322c3138382c3233362c3137362c3133302c3138332c3138302c392c34362c3135392c3131352c39392c34352c3234322c3234342c3137382c3231372c38312c3139372c3138382c38322c3233302c3135382c3136322c3130332c332c3134362c3139352c3232362c38352c3138322c32322c3134322c3231392c3130332c3234322c382c32322c3231352c39302c3130342c33372c38392c342c302c3136322c36332c31312c3232352c3130372c322c3133312c37352c3233382c3137345d2c22706f70223a5b3134302c32322c37342c372c342c3231302c3139302c3136332c3231332c38322c3136332c3131332c3231332c3136312c31322c3230382c31342c38362c33302c39312c38382c3231392c33352c3138342c38382c332c39362c3231322c3132342c3234312c3135322c3234332c3233322c3130312c3130342c3134312c3131312c39332c3132342c33342c3137352c33392c3137382c3137322c3235352c3231372c382c3135342c3133362c37312c38322c3233332c3233392c39352c39362c3139362c3138362c3231332c352c3137382c3133362c3133352c3232392c38302c35352c33322c3231312c3135342c3139332c3131382c31372c39372c36382c34322c33392c3137372c3232312c3234352c39372c38342c33352c35312c332c37332c31322c302c35332c35312c3130382c3136392c3231352c3234342c32382c3133382c39372c34345d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b392c3230312c34322c3233382c37342c3132372c3233332c32372c3134392c3233342c3230312c3230372c3139372c3132392c3232372c31332c35392c3139312c3232352c38352c3231362c3137322c3134322c3136312c36332c34302c38392c3231372c3133352c3138322c3134352c3133332c3234352c3132302c31312c39342c35372c32312c312c3131332c36372c3134372c38322c3231332c3233312c38322c3233372c34302c3234352c3132362c31372c36342c35302c3136322c362c3131362c35322c3132332c3232312c3136312c3138312c3135382c372c31335d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "kes_period": 0, + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3138332c3234372c3231302c38362c3234332c33332c3134342c3235342c39322c3138312c3232352c36392c32392c31372c3139372c33312c33372c3132332c35352c302c3134392c3230392c31342c352c302c3130332c3231342c3231322c3139332c38362c3134332c3132372c3137322c3232312c3135382c3134382c392c3133342c3133342c35332c37312c32382c3131312c39302c3231302c3132322c3130302c3137342c362c3139302c3232312c3131332c3230332c3235352c34332c3130342c3138382c3232362c3132342c3136342c38362c3230322c3235352c36352c382c34342c362c33312c3131372c3233332c3235352c31312c3136392c3232342c3230332c3233372c36312c3234312c322c31352c392c352c3135342c3133362c37392c3132322c3233342c35392c3234372c33372c3230382c33322c31312c37322c39382c32385d2c22706f70223a5b3137382c38382c39332c3234362c34332c32352c372c3134372c3136392c33302c3134372c34392c36352c3131352c3232382c32362c3231342c3137362c37332c32352c3233342c3232322c3133332c3132352c3137302c3139322c3138302c37322c3134372c3233342c32352c33362c3137302c31392c31302c3131362c3234362c352c3133302c3134302c3231362c3137312c3137382c3138352c3130382c31382c312c37352c3137342c3233352c32372c3131312c3231352c3135342c3231322c3131312c35382c36302c36302c33312c3138302c31352c3234332c3230322c3234312c3135322c3231332c38322c3231302c3233312c3231332c372c3137322c3136302c3139382c34342c3131352c3133392c3132302c3235332c3139312c3132342c3137352c3138342c33322c31352c3134392c35352c3135322c312c3232322c32382c3138312c38342c3235312c3136375d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138302c3232392c35332c3137322c3131382c3234392c3131322c33302c3131352c3131322c3234342c36302c3139362c302c3231372c3233392c35332c3233362c36392c3232332c38392c3132352c3139302c3133342c3138382c392c32372c3234362c3234362c35352c33302c3231342c3139332c3130332c3133342c3230342c3131352c3234322c3136352c3130372c3135302c38352c34312c3134342c34372c3233332c3234342c31382c38352c3130372c3131352c3138352c34372c3138392c3231382c3232372c37392c3230322c392c3234342c3135382c3133362c3138362c31345d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "kes_period": 0, + "stake": 13333333334 + } + ], + "hash": "e26e6e03e5da23dcc83ecd3645f943e97e3318e78d68c1b56e28f561db22b823", + "certificate_hash": "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230", + "created_at": "2024-09-09T12:59:12.891594689Z", + "protocol_parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + } + }, + "f3b10ac54f7509e7e337d29bccb9e42c30854a0906e0efabbac19b68477107bf": { + "epoch": 51, + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3136362c3132352c37322c3131322c33332c3133322c3130322c3231352c37322c3231342c3233342c32302c37352c3231392c37332c3230362c3132382c33332c3232332c3136382c3230382c3133372c32372c39352c3135352c37312c3134332c3230312c32332c3235342c3139372c36342c34362c39342c38332c3231372c3138352c38332c3235312c33392c3130382c35382c34312c37392c34342c3234362c352c3137312c31362c3134382c3230342c3232392c34302c31312c31332c3132332c3136352c3131342c31312c3233352c392c3130392c3233312c3234332c3132362c3234312c38352c3233322c3134382c34362c35372c3233352c34372c3233302c3139382c3231362c3135302c3130342c3135332c31362c3138342c35362c32392c37372c332c302c33372c31332c32362c31302c3139302c31342c31322c342c3131382c3233335d2c22706f70223a5b3136382c39332c3231362c38372c3133392c31302c32322c34352c31312c34392c3139362c3231392c3230302c32382c34312c3234352c3130322c3135302c3231302c3139342c33392c3231342c3131382c3139302c3132322c3132392c39342c3131392c3231372c3130362c3230322c35322c3230392c36372c38332c39352c39392c3132312c3132372c3133312c31312c3137372c37352c3234322c3132392c3138342c35392c3139312c3133312c35352c32392c382c39302c3138362c3138372c3131312c3137332c3132342c3132342c32382c3130372c3131322c3134312c3233312c36312c3233382c3234372c3132362c3130312c322c3132392c3137352c3139342c3231342c3131302c3137342c37302c31332c35392c3233332c33392c3234332c3131312c39352c36382c3230322c35352c3133392c3131302c31322c33392c3132332c3233372c3230372c3131372c3136365d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b33342c3132312c3133332c3133352c3139352c39372c31322c3134372c3131332c3132372c36332c32362c31362c3135352c3230302c33342c3138322c3134372c32322c3132342c3139312c3234322c3233312c3138372c3130302c3231322c3133362c33312c31302c3134342c35332c3230382c3134352c3137312c38302c3130322c3136302c32332c33382c3139302c36352c35372c36302c3230372c37392c32302c34362c3130392c3131352c33322c38312c3134332c39332c3135332c3132362c3232322c3139352c3134312c32362c3234362c38362c352c3137362c305d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "kes_period": 0, + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3137382c322c32322c3136312c32372c37362c3231372c3234382c3138362c32362c3138392c3137362c3139352c3232342c36312c3134312c35352c3234352c32322c3231392c31362c39352c39392c39372c3233372c3135362c3133332c37352c35352c3130302c3136342c3232372c3230352c37372c3134342c3132352c33362c33352c3134392c322c3139362c302c382c3234392c3134312c3131352c3137342c3131322c322c38372c3137342c34362c35372c3134342c3233362c3132302c3139382c3230312c39362c3130382c3131362c38352c362c3231342c3134342c382c34302c3138302c3231382c3138372c3232342c3135392c3130362c3131302c3230352c33312c34312c3235322c32372c392c3133382c3232392c3137392c37362c3132362c37302c3133332c3133302c3233302c332c3139322c35302c36392c3132392c32362c3233345d2c22706f70223a5b3137322c3135382c3138382c3135332c37382c342c35342c31322c3234322c3231392c34312c32392c3137372c3134362c37342c39312c33352c31362c37362c3136302c3234382c39332c31362c3134362c36382c3132392c3137362c312c3132312c3138392c36372c38312c3132362c35332c3134342c34362c38312c3134302c33372c3137352c3134382c3138372c302c3138382c37382c3139302c3138302c36322c3136322c3233302c35342c32382c3134362c3230372c35302c3139372c3138362c3138362c3132342c3232342c39332c3230352c3130372c342c35342c3232382c382c38332c3235322c3232312c34342c36322c3139372c3135342c3135372c3138312c3230372c3136392c3135322c3234322c3231342c3230302c3134362c3232322c3131332c35312c3138392c3231322c3134392c3134392c39342c3131312c34352c3139302c38322c35325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35352c3131362c39332c3137392c3232312c3235342c3234322c322c3137332c3134352c32322c3136382c352c3137362c32392c37322c352c3234342c3131312c3132362c3137392c3234372c36382c3233372c37352c3232312c3139312c33372c31332c332c3130342c33322c33322c3135312c3133342c3231382c36332c3139382c31362c3134382c33302c3138362c33302c3131362c3233322c332c38302c39312c3231382c3231372c3233382c37352c3231372c36372c3130362c3232362c32382c37392c3138392c3138362c362c31352c3233332c31315d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "kes_period": 0, + "stake": 13333333334 + } + ], + "hash": "f3b10ac54f7509e7e337d29bccb9e42c30854a0906e0efabbac19b68477107bf", + "certificate_hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", + "created_at": "2024-09-09T12:59:14.521321373Z", + "protocol_parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + } + }, + "f3d1af1abcf2dac1445f828278f3e3be1f7800e28d595a312d64b9553fc6b7cb": { + "epoch": 62, + "signers": [ + { + "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "verification_key": "7b22766b223a5b3133362c37362c3130382c3235352c34312c3234392c38362c3234342c3233372c3132332c3131312c3138322c32342c3136372c32372c36382c3132362c31362c34382c3139392c3138322c3136312c31312c382c37332c3134332c3136342c33382c31362c32372c3230372c3139392c37362c39372c382c37332c382c3136332c37372c37332c3234372c3138362c3137362c3231362c32302c36322c35382c3232392c31382c3132342c3139392c3139342c34332c3135322c3232332c3136392c3136332c3235322c37342c3137342c3134362c3131362c3136362c37362c3132392c34372c382c31302c3230332c3133372c3233332c39312c39362c3134322c33302c35382c37302c3134312c3132302c3136372c3230352c3231332c3137382c37362c34332c32312c39322c3233392c3134382c38342c3133372c34372c3231322c3135382c3230382c3135385d2c22706f70223a5b3136362c312c3139362c3233392c3136372c39392c332c3138342c35302c3137342c3230302c3131352c3233372c3136342c3133362c3134392c37362c32302c342c36392c3230322c36372c34352c3134302c3139312c3234322c3230302c34392c3234332c362c3230332c32342c3132352c3234302c38322c3135392c3235332c38352c3130302c3231302c362c3235332c3132352c3130302c3139312c37392c3234382c31372c3137312c3235332c3137302c3230312c3136342c3137332c392c3130352c3233332c3230312c3235342c3132332c31392c3130322c342c3231372c37332c3139332c3230372c3233352c382c3136392c3139302c3133392c3137332c3139312c38392c37332c3233302c33382c332c39382c33372c3139372c332c3135352c3234372c3132322c302c3230302c3134352c36362c38322c3234392c33362c3234322c3138372c32325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b33312c3130312c37332c3135352c37362c3233332c3234362c3134362c3136362c3133352c31342c3234372c3231302c3231352c3132322c3134382c37372c3233312c39362c31342c39372c3130302c35332c32342c36332c3235352c3136362c3231382c38312c3134342c3134392c37362c33372c312c3136342c34352c31332c3136372c3130322c31372c39302c3130302c31352c37362c382c3132382c34382c3132312c3136372c35332c37342c3136392c33302c3137312c38362c3139332c3135322c3132302c31362c37392c3137362c35332c3230322c31325d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", + "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "kes_period": 0, + "stake": 13333333334 + }, + { + "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "verification_key": "7b22766b223a5b3137312c34312c31342c33312c35312c3235302c3134302c3134312c3133332c36352c3135342c35372c3132302c3131352c3135302c3130342c34382c3232312c3133352c3233382c34382c37342c34362c39382c32342c35312c3135352c38342c39362c3233362c3136372c37302c39362c3231372c302c37332c3137322c3231312c36332c3136342c3232312c3233382c3131302c38312c3138342c35382c37362c3131332c31352c35372c3137332c37302c3232362c37312c3130392c3232392c3233342c3230362c35362c31362c33392c3235322c36382c38382c3134302c3133352c34312c3133372c3137382c3231312c31352c322c3138362c3231392c31302c3231342c3135302c3138382c3135382c32322c35362c35342c3135382c3235322c37392c3130322c34352c39342c3235312c3138322c38302c3134332c32312c37392c3232342c3136395d2c22706f70223a5b3135332c3230322c31332c3235312c3235322c3234342c3233382c39352c34342c38352c3232382c34352c3133342c3135332c3132322c3134362c33302c3132332c3231302c322c3231392c3137312c3134302c3130332c38312c31352c35382c31332c3139362c3231392c3130302c3134362c3131392c3231352c33322c3230382c3132342c33352c3134342c3132322c38342c33322c3139372c3132302c332c31352c3131302c3132392c3137332c3131342c3230372c35362c3133332c3231382c3230322c3137382c32362c31392c3136372c3131372c3132342c35362c3234382c3139342c3130302c3231362c3230362c3131372c3230392c39392c3231342c3235312c31302c3233322c33322c3133352c3232392c31342c37382c3235302c3233322c3137322c3233302c3133362c3135382c3231352c3233302c3137342c32322c3139302c3133362c35342c3133332c3137322c3233312c3134315d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3135302c31302c3137332c3135362c34342c3131372c3230302c3136352c32312c3131392c3138312c3234322c32352c3131372c3235302c3132312c33352c3230332c31372c37382c32362c3234372c38382c3134302c3137392c33362c3230372c35352c34382c32312c37322c3232322c3137322c3134392c342c32392c3132352c3230392c3231392c38382c34382c3230302c35392c31382c3234362c34382c33342c3232312c3235342c3230372c3232332c3230302c36322c32322c3231312c3137322c3132352c32332c3134312c3139312c37392c38392c3135322c31345d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", + "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "kes_period": 0, + "stake": 13333333334 + } + ], + "hash": "f3d1af1abcf2dac1445f828278f3e3be1f7800e28d595a312d64b9553fc6b7cb", + "certificate_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", + "created_at": "2024-09-09T12:59:45.342009811Z", "protocol_parameters": { "k": 75, "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 ab0fefcbe89..ba2cbe3b742 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,226 +1,322 @@ [ { - "digest": "8f89bd27b3eed107188b1442a4a9d269f997de45e5c4cb1486847a2e145b8b7c", + "digest": "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc", "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 62, + "immutable_file_number": 20 }, - "certificate_hash": "6e24087cfd5b13ea2acfd711d2bba02d1e3cbfd01fd3fbd751b8cd89d00c481e", - "size": 300440, - "created_at": "2024-08-08T15:15:22.204572Z", + "certificate_hash": "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd", + "size": 873752, + "created_at": "2024-09-09T12:59:46.467500709Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/8f89bd27b3eed107188b1442a4a9d269f997de45e5c4cb1486847a2e145b8b7c/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "5dec5797333aa8227beb1278173d3014484d1b52b05df10cf47604ca2baa1631", + "digest": "96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12", "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 60, + "immutable_file_number": 20 }, - "certificate_hash": "43c2ada1189224af8d82fb901666eadf6915193146a136774469ff5b8109a288", - "size": 282800, - "created_at": "2024-08-08T15:15:19.098422Z", + "certificate_hash": "72624ce84ca83b2a92eafa1a4956d38c61306a1108f85e30e1c836747ff29aa0", + "size": 837999, + "created_at": "2024-09-09T12:59:40.566750714Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/5dec5797333aa8227beb1278173d3014484d1b52b05df10cf47604ca2baa1631/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "7f9dc438897683a9fb64343f5102a38d05ceba9fa857721eb1ef0cd051231fe1", + "digest": "cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312", "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 + "epoch": 58, + "immutable_file_number": 19 }, - "certificate_hash": "8bcb51cee1c1c7371607e00a1941841741a3866a9c657263b07978a08d86ed80", - "size": 267216, - "created_at": "2024-08-08T15:15:16.392814Z", + "certificate_hash": "e339157f5c81d34c325de0205a8a59dec30bc502978c8b4fb3c658ccedcbfae1", + "size": 807502, + "created_at": "2024-09-09T12:59:35.844884036Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/7f9dc438897683a9fb64343f5102a38d05ceba9fa857721eb1ef0cd051231fe1/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "45ccdb65ee7b4090511eca72232566d33f8d2c3c1c0db73cca2667cda5621a92", + "digest": "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a", "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 57, + "immutable_file_number": 19 }, - "certificate_hash": "3f4710e4e33dbf5737f52bf2bfd1817d35492bf2e0c238e36b317e7938d20ace", - "size": 250010, - "created_at": "2024-08-08T15:15:13.531010Z", + "certificate_hash": "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90", + "size": 785793, + "created_at": "2024-09-09T12:59:32.621057202Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/45ccdb65ee7b4090511eca72232566d33f8d2c3c1c0db73cca2667cda5621a92/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "50dc8a22ea0cbac7b7bb1a2d9c88ef8ec91f9968ff152eb29a70b969ac974c05", + "digest": "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a", "beacon": { "network": "devnet", - "epoch": 18, - "immutable_file_number": 5 + "epoch": 56, + "immutable_file_number": 18 }, - "certificate_hash": "b6afe575e03e028b0a8b9154dae61a0e8235aaadd23960d03ca445434864a3de", - "size": 232825, - "created_at": "2024-08-08T15:15:10.705576Z", + "certificate_hash": "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9", + "size": 771122, + "created_at": "2024-09-09T12:59:29.979306951Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/50dc8a22ea0cbac7b7bb1a2d9c88ef8ec91f9968ff152eb29a70b969ac974c05/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "f872e1a000f92e29c77f7a407f7f228cd35e1fa5ffd42081ae951cd858fc6a0c", + "digest": "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e", "beacon": { "network": "devnet", - "epoch": 17, - "immutable_file_number": 5 + "epoch": 55, + "immutable_file_number": 18 }, - "certificate_hash": "9a3bdec5364463be7bc25cdf29a9a7ea652df1b57e5a2f2685908d6637037409", - "size": 217128, - "created_at": "2024-08-08T15:15:08.268300Z", + "certificate_hash": "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b", + "size": 753093, + "created_at": "2024-09-09T12:59:27.183961132Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/f872e1a000f92e29c77f7a407f7f228cd35e1fa5ffd42081ae951cd858fc6a0c/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "ffd8474dfab70ee0f959633901baeda16cdd29357ac3faa4a86a5d08a68c0053", + "digest": "de3515f6f9ef0f2ad0a09e0acd4fa63113cf3f29f42a49a454e7c74cb943c005", "beacon": { "network": "devnet", - "epoch": 16, - "immutable_file_number": 4 + "epoch": 53, + "immutable_file_number": 17 }, - "certificate_hash": "09f24981f39bb8f26b3bca67a0bfef839ad9559d09484e6e26cff316aaf3c811", - "size": 198193, - "created_at": "2024-08-08T15:15:05.079914Z", + "certificate_hash": "e08c33b16ffd90a63bf9a90ca81e76c483f7d0e219ecb4f36772f0e835aed89e", + "size": 714104, + "created_at": "2024-09-09T12:59:21.279108001Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/ffd8474dfab70ee0f959633901baeda16cdd29357ac3faa4a86a5d08a68c0053/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/de3515f6f9ef0f2ad0a09e0acd4fa63113cf3f29f42a49a454e7c74cb943c005/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "ad6be483fbb3188a8c4f90a4235954ba0ceffa566b37a458cf0e2ab001303e76", + "digest": "82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643", "beacon": { "network": "devnet", - "epoch": 15, - "immutable_file_number": 4 + "epoch": 52, + "immutable_file_number": 17 }, - "certificate_hash": "19e22d3da92b017f270c75bd311bd8a651ef41c6b67b65dc9451bd3a1b339407", - "size": 183365, - "created_at": "2024-08-08T15:15:02.520820Z", + "certificate_hash": "4d0c84de34c476bfcc315dccb9db078c29f86811db67cf05b33bf8a950de8102", + "size": 702220, + "created_at": "2024-09-09T12:59:19.371419100Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/ad6be483fbb3188a8c4f90a4235954ba0ceffa566b37a458cf0e2ab001303e76/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "10f44fc59eb88f1844f52350ed9469526cc11df7d53a33663129421e1971c068", + "digest": "d3bae6df21ff157b79ec4ab2ed864b48d06271d103a2cd54ccec9357d27d622c", "beacon": { "network": "devnet", - "epoch": 14, - "immutable_file_number": 4 + "epoch": 51, + "immutable_file_number": 16 }, - "certificate_hash": "38eb044e2f9aa114f91e322346ae184651aba3f3811ccb17a6c6a55809e3b706", - "size": 168230, - "created_at": "2024-08-08T15:15:00.278970Z", + "certificate_hash": "d8378c77f18a605cec435443274014dffff5723b683ad7f8e71cf2c3ac37e1ce", + "size": 676520, + "created_at": "2024-09-09T12:59:15.417866661Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/10f44fc59eb88f1844f52350ed9469526cc11df7d53a33663129421e1971c068/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/d3bae6df21ff157b79ec4ab2ed864b48d06271d103a2cd54ccec9357d27d622c/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "cedce9825749007233c5e66512a41ca3fccc1cee02d3026013908d5d18183291", + "digest": "dc678af3014f4432303dbbc4f8c4e79c3e89816eacf2bbea993072c8762ac45b", "beacon": { "network": "devnet", - "epoch": 14, - "immutable_file_number": 3 + "epoch": 49, + "immutable_file_number": 16 }, - "certificate_hash": "af6b5e6d3d9b494ee91f28eac406a905092f1cc499c5fea080bb58bb5ba374fa", - "size": 162648, - "created_at": "2024-08-08T15:14:59.477397Z", + "certificate_hash": "73011314dab467c86785ed30e896113f9149f0260a8f0d092f03e6f56edf23b9", + "size": 756816, + "created_at": "2024-09-09T12:59:09.970897156Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/cedce9825749007233c5e66512a41ca3fccc1cee02d3026013908d5d18183291/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/dc678af3014f4432303dbbc4f8c4e79c3e89816eacf2bbea993072c8762ac45b/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "a7ffb9f9bf0a6c92bc4f702d26a6b4dfc7eb76e36d7fd8a9f6e1b440686fa92f", + "digest": "8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742", "beacon": { "network": "devnet", - "epoch": 13, - "immutable_file_number": 3 + "epoch": 48, + "immutable_file_number": 15 }, - "certificate_hash": "eaf17b47677317907e20297540fbec717031621295a82a00e6fd6916bd583082", - "size": 146192, - "created_at": "2024-08-08T15:14:56.673553Z", + "certificate_hash": "d10068a231936c1994e9451ecd5f6dfde399869181ee392361bccaa43af9a066", + "size": 741761, + "created_at": "2024-09-09T12:59:07.553024831Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/a7ffb9f9bf0a6c92bc4f702d26a6b4dfc7eb76e36d7fd8a9f6e1b440686fa92f/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "5d9ba2d185d9a37979f5c0f64d97fb38e0d354148e6c649266de086c0bf687d7", + "digest": "a2b3c174c539fee3af0df5e70c5696622ab85417b3cd538dbebc68c100b36907", "beacon": { "network": "devnet", - "epoch": 12, - "immutable_file_number": 3 + "epoch": 46, + "immutable_file_number": 15 }, - "certificate_hash": "28954190408384ec332a56190cbb457bdb296096e077168dd7287378ab5a1085", - "size": 129742, - "created_at": "2024-08-08T15:14:54.048353Z", + "certificate_hash": "35f80cd7030b44a215a0e5de94b8fea892f7fd668dc51abe1e09b0bca799f2c1", + "size": 706820, + "created_at": "2024-09-09T12:59:01.916326654Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/5d9ba2d185d9a37979f5c0f64d97fb38e0d354148e6c649266de086c0bf687d7/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/a2b3c174c539fee3af0df5e70c5696622ab85417b3cd538dbebc68c100b36907/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "1b8b0f1a1cdadd7a9600fe0a546ca19ef39b4488899b1974bd0a6bb58009ed0d", + "digest": "2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc", "beacon": { "network": "devnet", - "epoch": 11, - "immutable_file_number": 3 + "epoch": 45, + "immutable_file_number": 14 }, - "certificate_hash": "a01077829baeec7971f115f3f84eaedb2c9ecf7aef856b1f0a4f2b3e7e3c8316", - "size": 120336, - "created_at": "2024-08-08T15:14:52.179904Z", + "certificate_hash": "06b4bf0a413b8f066c82b6d1cece32dcd843a03133c1d0d224f70ef67787174a", + "size": 692063, + "created_at": "2024-09-09T12:58:59.484694820Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/1b8b0f1a1cdadd7a9600fe0a546ca19ef39b4488899b1974bd0a6bb58009ed0d/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, { - "digest": "ccac13f3d318647925ab45f6ea9a7cd340439aa1df5b6a0e0b8adced65b7c5bb", + "digest": "3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd", "beacon": { "network": "devnet", - "epoch": 11, - "immutable_file_number": 2 + "epoch": 44, + "immutable_file_number": 14 }, - "certificate_hash": "8eeb903354d9a98ed0758c165a179ff58478a0f2084f95cd2989c44a692a044d", - "size": 114024, - "created_at": "2024-08-08T15:14:51.092985Z", + "certificate_hash": "abd22dc580ac6cfd94ccf1f4eb1bdf53056ff78fd8e243da886b3a0a1142d24c", + "size": 672251, + "created_at": "2024-09-09T12:58:56.323361523Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/ccac13f3d318647925ab45f6ea9a7cd340439aa1df5b6a0e0b8adced65b7c5bb/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" + }, + { + "digest": "8035c6f09d157b2587680344d25ddb0d4629cdf44aa3d54e86b59d71a7c341fd", + "beacon": { + "network": "devnet", + "epoch": 43, + "immutable_file_number": 14 + }, + "certificate_hash": "a7f1202c8f8a07db6bd6de70c9a5e8031f268be1d3c20f91721edcf04c3e6a57", + "size": 653483, + "created_at": "2024-09-09T12:58:53.269727269Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/8035c6f09d157b2587680344d25ddb0d4629cdf44aa3d54e86b59d71a7c341fd/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + { + "digest": "d23e8489473cf1f3ca0777c8534d0021c85927077a9918deb8970ec500a04048", + "beacon": { + "network": "devnet", + "epoch": 42, + "immutable_file_number": 13 + }, + "certificate_hash": "5f3effd9b5affda25669a7cec34e51c2fcd49534f070b68e6d9e12f299fdbdc1", + "size": 640298, + "created_at": "2024-09-09T12:58:51.174315185Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/d23e8489473cf1f3ca0777c8534d0021c85927077a9918deb8970ec500a04048/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + { + "digest": "557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326", + "beacon": { + "network": "devnet", + "epoch": 41, + "immutable_file_number": 13 + }, + "certificate_hash": "304ae8a325e648d02f92d80be6734281cb729d4bab42ddb464bf15f66690f9ba", + "size": 620277, + "created_at": "2024-09-09T12:58:47.914941935Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + { + "digest": "04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307", + "beacon": { + "network": "devnet", + "epoch": 40, + "immutable_file_number": 13 + }, + "certificate_hash": "df2d6cefa95e2f90671555f2c5d611f3aa21c71ebd57cf47a66397dc4ee49ea8", + "size": 600367, + "created_at": "2024-09-09T12:58:44.693627797Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + { + "digest": "1d819bc6f4e565ca0e4f3b87ca6cd2ea6b0e3dcd0d159dc6af26945eaffd9b2f", + "beacon": { + "network": "devnet", + "epoch": 39, + "immutable_file_number": 12 + }, + "certificate_hash": "8e066a60bf13f02745a9b7b865d22340ea15b7114c9b271243758bad03099fba", + "size": 587633, + "created_at": "2024-09-09T12:58:42.598203223Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/1d819bc6f4e565ca0e4f3b87ca6cd2ea6b0e3dcd0d159dc6af26945eaffd9b2f/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + { + "digest": "5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4", + "beacon": { + "network": "devnet", + "epoch": 38, + "immutable_file_number": 12 + }, + "certificate_hash": "c98c0c706f10f62c99bb7ef93bcbdeec62359a3d9fcb9f7efc5dc6e11c0da0b9", + "size": 567823, + "created_at": "2024-09-09T12:58:39.466244772Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" } ] 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 ad3f07feac1..2cf3efc6668 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots.json @@ -1,226 +1,322 @@ { - "10f44fc59eb88f1844f52350ed9469526cc11df7d53a33663129421e1971c068": { - "digest": "10f44fc59eb88f1844f52350ed9469526cc11df7d53a33663129421e1971c068", + "04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307": { + "digest": "04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307", "beacon": { "network": "devnet", - "epoch": 14, - "immutable_file_number": 4 + "epoch": 40, + "immutable_file_number": 13 }, - "certificate_hash": "38eb044e2f9aa114f91e322346ae184651aba3f3811ccb17a6c6a55809e3b706", - "size": 168230, - "created_at": "2024-08-08T15:15:00.278970Z", + "certificate_hash": "df2d6cefa95e2f90671555f2c5d611f3aa21c71ebd57cf47a66397dc4ee49ea8", + "size": 600367, + "created_at": "2024-09-09T12:58:44.693627797Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/10f44fc59eb88f1844f52350ed9469526cc11df7d53a33663129421e1971c068/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "1b8b0f1a1cdadd7a9600fe0a546ca19ef39b4488899b1974bd0a6bb58009ed0d": { - "digest": "1b8b0f1a1cdadd7a9600fe0a546ca19ef39b4488899b1974bd0a6bb58009ed0d", + "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc": { + "digest": "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc", "beacon": { "network": "devnet", - "epoch": 11, - "immutable_file_number": 3 + "epoch": 62, + "immutable_file_number": 20 }, - "certificate_hash": "a01077829baeec7971f115f3f84eaedb2c9ecf7aef856b1f0a4f2b3e7e3c8316", - "size": 120336, - "created_at": "2024-08-08T15:14:52.179904Z", + "certificate_hash": "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd", + "size": 873752, + "created_at": "2024-09-09T12:59:46.467500709Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/1b8b0f1a1cdadd7a9600fe0a546ca19ef39b4488899b1974bd0a6bb58009ed0d/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "45ccdb65ee7b4090511eca72232566d33f8d2c3c1c0db73cca2667cda5621a92": { - "digest": "45ccdb65ee7b4090511eca72232566d33f8d2c3c1c0db73cca2667cda5621a92", + "1d819bc6f4e565ca0e4f3b87ca6cd2ea6b0e3dcd0d159dc6af26945eaffd9b2f": { + "digest": "1d819bc6f4e565ca0e4f3b87ca6cd2ea6b0e3dcd0d159dc6af26945eaffd9b2f", "beacon": { "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "epoch": 39, + "immutable_file_number": 12 }, - "certificate_hash": "3f4710e4e33dbf5737f52bf2bfd1817d35492bf2e0c238e36b317e7938d20ace", - "size": 250010, - "created_at": "2024-08-08T15:15:13.531010Z", + "certificate_hash": "8e066a60bf13f02745a9b7b865d22340ea15b7114c9b271243758bad03099fba", + "size": 587633, + "created_at": "2024-09-09T12:58:42.598203223Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/45ccdb65ee7b4090511eca72232566d33f8d2c3c1c0db73cca2667cda5621a92/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/1d819bc6f4e565ca0e4f3b87ca6cd2ea6b0e3dcd0d159dc6af26945eaffd9b2f/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "50dc8a22ea0cbac7b7bb1a2d9c88ef8ec91f9968ff152eb29a70b969ac974c05": { - "digest": "50dc8a22ea0cbac7b7bb1a2d9c88ef8ec91f9968ff152eb29a70b969ac974c05", + "2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc": { + "digest": "2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc", "beacon": { "network": "devnet", - "epoch": 18, - "immutable_file_number": 5 + "epoch": 45, + "immutable_file_number": 14 }, - "certificate_hash": "b6afe575e03e028b0a8b9154dae61a0e8235aaadd23960d03ca445434864a3de", - "size": 232825, - "created_at": "2024-08-08T15:15:10.705576Z", + "certificate_hash": "06b4bf0a413b8f066c82b6d1cece32dcd843a03133c1d0d224f70ef67787174a", + "size": 692063, + "created_at": "2024-09-09T12:58:59.484694820Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/50dc8a22ea0cbac7b7bb1a2d9c88ef8ec91f9968ff152eb29a70b969ac974c05/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "5d9ba2d185d9a37979f5c0f64d97fb38e0d354148e6c649266de086c0bf687d7": { - "digest": "5d9ba2d185d9a37979f5c0f64d97fb38e0d354148e6c649266de086c0bf687d7", + "3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd": { + "digest": "3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd", "beacon": { "network": "devnet", - "epoch": 12, - "immutable_file_number": 3 + "epoch": 44, + "immutable_file_number": 14 }, - "certificate_hash": "28954190408384ec332a56190cbb457bdb296096e077168dd7287378ab5a1085", - "size": 129742, - "created_at": "2024-08-08T15:14:54.048353Z", + "certificate_hash": "abd22dc580ac6cfd94ccf1f4eb1bdf53056ff78fd8e243da886b3a0a1142d24c", + "size": 672251, + "created_at": "2024-09-09T12:58:56.323361523Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/5d9ba2d185d9a37979f5c0f64d97fb38e0d354148e6c649266de086c0bf687d7/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "5dec5797333aa8227beb1278173d3014484d1b52b05df10cf47604ca2baa1631": { - "digest": "5dec5797333aa8227beb1278173d3014484d1b52b05df10cf47604ca2baa1631", + "557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326": { + "digest": "557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326", "beacon": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "epoch": 41, + "immutable_file_number": 13 }, - "certificate_hash": "43c2ada1189224af8d82fb901666eadf6915193146a136774469ff5b8109a288", - "size": 282800, - "created_at": "2024-08-08T15:15:19.098422Z", + "certificate_hash": "304ae8a325e648d02f92d80be6734281cb729d4bab42ddb464bf15f66690f9ba", + "size": 620277, + "created_at": "2024-09-09T12:58:47.914941935Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/5dec5797333aa8227beb1278173d3014484d1b52b05df10cf47604ca2baa1631/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "7f9dc438897683a9fb64343f5102a38d05ceba9fa857721eb1ef0cd051231fe1": { - "digest": "7f9dc438897683a9fb64343f5102a38d05ceba9fa857721eb1ef0cd051231fe1", + "5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4": { + "digest": "5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4", "beacon": { "network": "devnet", - "epoch": 20, - "immutable_file_number": 6 + "epoch": 38, + "immutable_file_number": 12 }, - "certificate_hash": "8bcb51cee1c1c7371607e00a1941841741a3866a9c657263b07978a08d86ed80", - "size": 267216, - "created_at": "2024-08-08T15:15:16.392814Z", + "certificate_hash": "c98c0c706f10f62c99bb7ef93bcbdeec62359a3d9fcb9f7efc5dc6e11c0da0b9", + "size": 567823, + "created_at": "2024-09-09T12:58:39.466244772Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/7f9dc438897683a9fb64343f5102a38d05ceba9fa857721eb1ef0cd051231fe1/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "8f89bd27b3eed107188b1442a4a9d269f997de45e5c4cb1486847a2e145b8b7c": { - "digest": "8f89bd27b3eed107188b1442a4a9d269f997de45e5c4cb1486847a2e145b8b7c", + "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e": { + "digest": "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e", "beacon": { "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "epoch": 55, + "immutable_file_number": 18 }, - "certificate_hash": "6e24087cfd5b13ea2acfd711d2bba02d1e3cbfd01fd3fbd751b8cd89d00c481e", - "size": 300440, - "created_at": "2024-08-08T15:15:22.204572Z", + "certificate_hash": "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b", + "size": 753093, + "created_at": "2024-09-09T12:59:27.183961132Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/8f89bd27b3eed107188b1442a4a9d269f997de45e5c4cb1486847a2e145b8b7c/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "a7ffb9f9bf0a6c92bc4f702d26a6b4dfc7eb76e36d7fd8a9f6e1b440686fa92f": { - "digest": "a7ffb9f9bf0a6c92bc4f702d26a6b4dfc7eb76e36d7fd8a9f6e1b440686fa92f", + "8035c6f09d157b2587680344d25ddb0d4629cdf44aa3d54e86b59d71a7c341fd": { + "digest": "8035c6f09d157b2587680344d25ddb0d4629cdf44aa3d54e86b59d71a7c341fd", "beacon": { "network": "devnet", - "epoch": 13, - "immutable_file_number": 3 + "epoch": 43, + "immutable_file_number": 14 }, - "certificate_hash": "eaf17b47677317907e20297540fbec717031621295a82a00e6fd6916bd583082", - "size": 146192, - "created_at": "2024-08-08T15:14:56.673553Z", + "certificate_hash": "a7f1202c8f8a07db6bd6de70c9a5e8031f268be1d3c20f91721edcf04c3e6a57", + "size": 653483, + "created_at": "2024-09-09T12:58:53.269727269Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/a7ffb9f9bf0a6c92bc4f702d26a6b4dfc7eb76e36d7fd8a9f6e1b440686fa92f/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/8035c6f09d157b2587680344d25ddb0d4629cdf44aa3d54e86b59d71a7c341fd/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "ad6be483fbb3188a8c4f90a4235954ba0ceffa566b37a458cf0e2ab001303e76": { - "digest": "ad6be483fbb3188a8c4f90a4235954ba0ceffa566b37a458cf0e2ab001303e76", + "82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643": { + "digest": "82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643", "beacon": { "network": "devnet", - "epoch": 15, - "immutable_file_number": 4 + "epoch": 52, + "immutable_file_number": 17 }, - "certificate_hash": "19e22d3da92b017f270c75bd311bd8a651ef41c6b67b65dc9451bd3a1b339407", - "size": 183365, - "created_at": "2024-08-08T15:15:02.520820Z", + "certificate_hash": "4d0c84de34c476bfcc315dccb9db078c29f86811db67cf05b33bf8a950de8102", + "size": 702220, + "created_at": "2024-09-09T12:59:19.371419100Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/ad6be483fbb3188a8c4f90a4235954ba0ceffa566b37a458cf0e2ab001303e76/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "ccac13f3d318647925ab45f6ea9a7cd340439aa1df5b6a0e0b8adced65b7c5bb": { - "digest": "ccac13f3d318647925ab45f6ea9a7cd340439aa1df5b6a0e0b8adced65b7c5bb", + "8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742": { + "digest": "8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742", "beacon": { "network": "devnet", - "epoch": 11, - "immutable_file_number": 2 + "epoch": 48, + "immutable_file_number": 15 }, - "certificate_hash": "8eeb903354d9a98ed0758c165a179ff58478a0f2084f95cd2989c44a692a044d", - "size": 114024, - "created_at": "2024-08-08T15:14:51.092985Z", + "certificate_hash": "d10068a231936c1994e9451ecd5f6dfde399869181ee392361bccaa43af9a066", + "size": 741761, + "created_at": "2024-09-09T12:59:07.553024831Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/ccac13f3d318647925ab45f6ea9a7cd340439aa1df5b6a0e0b8adced65b7c5bb/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "cedce9825749007233c5e66512a41ca3fccc1cee02d3026013908d5d18183291": { - "digest": "cedce9825749007233c5e66512a41ca3fccc1cee02d3026013908d5d18183291", + "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a": { + "digest": "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a", "beacon": { "network": "devnet", - "epoch": 14, - "immutable_file_number": 3 + "epoch": 56, + "immutable_file_number": 18 }, - "certificate_hash": "af6b5e6d3d9b494ee91f28eac406a905092f1cc499c5fea080bb58bb5ba374fa", - "size": 162648, - "created_at": "2024-08-08T15:14:59.477397Z", + "certificate_hash": "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9", + "size": 771122, + "created_at": "2024-09-09T12:59:29.979306951Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/cedce9825749007233c5e66512a41ca3fccc1cee02d3026013908d5d18183291/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "f872e1a000f92e29c77f7a407f7f228cd35e1fa5ffd42081ae951cd858fc6a0c": { - "digest": "f872e1a000f92e29c77f7a407f7f228cd35e1fa5ffd42081ae951cd858fc6a0c", + "96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12": { + "digest": "96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12", "beacon": { "network": "devnet", - "epoch": 17, - "immutable_file_number": 5 + "epoch": 60, + "immutable_file_number": 20 }, - "certificate_hash": "9a3bdec5364463be7bc25cdf29a9a7ea652df1b57e5a2f2685908d6637037409", - "size": 217128, - "created_at": "2024-08-08T15:15:08.268300Z", + "certificate_hash": "72624ce84ca83b2a92eafa1a4956d38c61306a1108f85e30e1c836747ff29aa0", + "size": 837999, + "created_at": "2024-09-09T12:59:40.566750714Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/f872e1a000f92e29c77f7a407f7f228cd35e1fa5ffd42081ae951cd858fc6a0c/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" }, - "ffd8474dfab70ee0f959633901baeda16cdd29357ac3faa4a86a5d08a68c0053": { - "digest": "ffd8474dfab70ee0f959633901baeda16cdd29357ac3faa4a86a5d08a68c0053", + "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a": { + "digest": "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a", "beacon": { "network": "devnet", - "epoch": 16, - "immutable_file_number": 4 + "epoch": 57, + "immutable_file_number": 19 }, - "certificate_hash": "09f24981f39bb8f26b3bca67a0bfef839ad9559d09484e6e26cff316aaf3c811", - "size": 198193, - "created_at": "2024-08-08T15:15:05.079914Z", + "certificate_hash": "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90", + "size": 785793, + "created_at": "2024-09-09T12:59:32.621057202Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/ffd8474dfab70ee0f959633901baeda16cdd29357ac3faa4a86a5d08a68c0053/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.0" + "cardano_node_version": "9.1.1" + }, + "a2b3c174c539fee3af0df5e70c5696622ab85417b3cd538dbebc68c100b36907": { + "digest": "a2b3c174c539fee3af0df5e70c5696622ab85417b3cd538dbebc68c100b36907", + "beacon": { + "network": "devnet", + "epoch": 46, + "immutable_file_number": 15 + }, + "certificate_hash": "35f80cd7030b44a215a0e5de94b8fea892f7fd668dc51abe1e09b0bca799f2c1", + "size": 706820, + "created_at": "2024-09-09T12:59:01.916326654Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/a2b3c174c539fee3af0df5e70c5696622ab85417b3cd538dbebc68c100b36907/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + "cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312": { + "digest": "cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312", + "beacon": { + "network": "devnet", + "epoch": 58, + "immutable_file_number": 19 + }, + "certificate_hash": "e339157f5c81d34c325de0205a8a59dec30bc502978c8b4fb3c658ccedcbfae1", + "size": 807502, + "created_at": "2024-09-09T12:59:35.844884036Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + "d23e8489473cf1f3ca0777c8534d0021c85927077a9918deb8970ec500a04048": { + "digest": "d23e8489473cf1f3ca0777c8534d0021c85927077a9918deb8970ec500a04048", + "beacon": { + "network": "devnet", + "epoch": 42, + "immutable_file_number": 13 + }, + "certificate_hash": "5f3effd9b5affda25669a7cec34e51c2fcd49534f070b68e6d9e12f299fdbdc1", + "size": 640298, + "created_at": "2024-09-09T12:58:51.174315185Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/d23e8489473cf1f3ca0777c8534d0021c85927077a9918deb8970ec500a04048/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + "d3bae6df21ff157b79ec4ab2ed864b48d06271d103a2cd54ccec9357d27d622c": { + "digest": "d3bae6df21ff157b79ec4ab2ed864b48d06271d103a2cd54ccec9357d27d622c", + "beacon": { + "network": "devnet", + "epoch": 51, + "immutable_file_number": 16 + }, + "certificate_hash": "d8378c77f18a605cec435443274014dffff5723b683ad7f8e71cf2c3ac37e1ce", + "size": 676520, + "created_at": "2024-09-09T12:59:15.417866661Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/d3bae6df21ff157b79ec4ab2ed864b48d06271d103a2cd54ccec9357d27d622c/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + "dc678af3014f4432303dbbc4f8c4e79c3e89816eacf2bbea993072c8762ac45b": { + "digest": "dc678af3014f4432303dbbc4f8c4e79c3e89816eacf2bbea993072c8762ac45b", + "beacon": { + "network": "devnet", + "epoch": 49, + "immutable_file_number": 16 + }, + "certificate_hash": "73011314dab467c86785ed30e896113f9149f0260a8f0d092f03e6f56edf23b9", + "size": 756816, + "created_at": "2024-09-09T12:59:09.970897156Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/dc678af3014f4432303dbbc4f8c4e79c3e89816eacf2bbea993072c8762ac45b/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" + }, + "de3515f6f9ef0f2ad0a09e0acd4fa63113cf3f29f42a49a454e7c74cb943c005": { + "digest": "de3515f6f9ef0f2ad0a09e0acd4fa63113cf3f29f42a49a454e7c74cb943c005", + "beacon": { + "network": "devnet", + "epoch": 53, + "immutable_file_number": 17 + }, + "certificate_hash": "e08c33b16ffd90a63bf9a90ca81e76c483f7d0e219ecb4f36772f0e835aed89e", + "size": 714104, + "created_at": "2024-09-09T12:59:21.279108001Z", + "locations": [ + "http://0.0.0.0:8080/aggregator/artifact/snapshot/de3515f6f9ef0f2ad0a09e0acd4fa63113cf3f29f42a49a454e7c74cb943c005/download" + ], + "compression_algorithm": "zstandard", + "cardano_node_version": "9.1.1" } } diff --git a/openapi.yaml b/openapi.yaml index c12490b1dba..40822ccb130 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.28 + version: 0.1.29 title: Mithril Aggregator Server description: | The REST API provided by a Mithril Aggregator Node in a Mithril network. @@ -714,6 +714,8 @@ components: - epoch - protocol - next_protocol + - current_signers + - next_signers properties: epoch: $ref: "#/components/schemas/Epoch" @@ -721,11 +723,53 @@ components: $ref: "#/components/schemas/ProtocolParameters" next_protocol: $ref: "#/components/schemas/ProtocolParameters" + current_signers: + type: array + items: + $ref: "#/components/schemas/Signer" + next_signers: + type: array + items: + $ref: "#/components/schemas/Signer" example: { "epoch": 329, "protocol": { "k": 857, "m": 6172, "phi_f": 0.2 }, - "next_protocol": { "k": 2422, "m": 20973, "phi_f": 0.2 } + "next_protocol": { "k": 2422, "m": 20973, "phi_f": 0.2 }, + "current_signers": + [ + { + "party_id": "1234567890", + "verification_key": "7b12766b223a5c342b39302c32392c39392c39382c3131313138342c32252c32352c31353", + "verification_key_signature": "7b5473693727369676d61223a7b227369676d6d61223a7b261223a9b227369676d61213a", + "operational_certificate": "5b73136372c38302c37342c3136362c313535b5b3232352c3230332c3235352c313030262c38322c39382c32c39332c3138342c3135362c3136362c32312c3131312c3232312c36332c3137372c3232332c3232332c31392c3537", + "kes_period": 123 + }, + { + "party_id": "2345678900", + "verification_key": "7b392c39392c13131312766b223a5c39382c313342b39302c252c32352c31353328342c32", + "verification_key_signature": "2c33302c3133312c3138322c34362c3133352c372c3139302c3235322c35352c32322c39", + "operational_certificate": "3231342c3137372c37312c3232352c3233332c3135335d2c322c3139322c5b3133352c34312c3230332c3131332c3c33352c3234302c3230392c312c32392c3233332c33342c3138382c3134312c3130342c3234382c3231392c3", + "kes_period": 456 + } + ], + "next_signers": + [ + { + "party_id": "3456789000", + "verification_key": "7b22766b223a5b3133382c32392c3137332c3134342c36332c3233352c39372c3138302c3", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d612239", + "operational_certificate": "5b5b5b3232352c3230332c3235352c3130302c3136372c38302c37342c3136362c3135362c38322c39382c3232312c36332c3137372c3232332c3232332c31392c35372c39332c312c35302c3133392c3233342c3137332c32352", + "kes_period": 789 + }, + { + "party_id": "4567890000", + "verification_key": "34302c3132332c3139302c3134352c3132342c35342c3133302c37302c3136332c3139332", + "verification_key_signature": "302c3230312c38362c3139312c36302c3234352c3138332c3134342c3139392c3130335f", + "operational_certificate": "2c38382c3138372c3233332c34302c37322c31362c36365d2c312c3132332c5b31362c3136392c3134312c3138332c32322c3137342c3131312c33322c36342c35322c2c3232382c37392c3137352c32395312c3838282c323030", + "kes_period": 876 + } + ] } ProtocolParameters: @@ -799,14 +843,20 @@ components: entity_type: $ref: "#/components/schemas/SignedEntityType" protocol: - $ref: "#/components/schemas/ProtocolParameters" + deprecated: true + allOf: + - $ref: "#/components/schemas/ProtocolParameters" next_protocol: - $ref: "#/components/schemas/ProtocolParameters" + deprecated: true + allOf: + - $ref: "#/components/schemas/ProtocolParameters" signers: + deprecated: true type: array items: $ref: "#/components/schemas/Signer" next_signers: + deprecated: true type: array items: $ref: "#/components/schemas/Signer"