diff --git a/CHANGELOG.md b/CHANGELOG.md index e54bed16b2a..799b40798bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ As a minor extension, we have adopted a slightly different versioning convention ## Mithril Distribution [XXXX] - UNRELEASED +- **BREAKING** changes in Mithril client Lib, CLI, and WASM: + + - Remove deprecated `beacon` field from mithril certificates. + - Clients from distribution [`2430`](#mithril-distribution-24300---2024-07-30) and above are compatible with this change. + - Support for Prometheus metrics endpoint in aggregator - Fix an issue that caused unnecessary re-scan of the Cardano chain when importing transactions. diff --git a/Cargo.lock b/Cargo.lock index 9d2608b75c0..69668784b2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3552,7 +3552,7 @@ dependencies = [ [[package]] name = "mithril-aggregator" -version = "0.5.91" +version = "0.5.92" dependencies = [ "anyhow", "async-trait", @@ -3600,7 +3600,7 @@ dependencies = [ [[package]] name = "mithril-aggregator-fake" -version = "0.3.10" +version = "0.3.11" dependencies = [ "anyhow", "axum", @@ -3632,7 +3632,7 @@ dependencies = [ [[package]] name = "mithril-client" -version = "0.9.4" +version = "0.10.0" dependencies = [ "anyhow", "async-recursion", @@ -3664,7 +3664,7 @@ dependencies = [ [[package]] name = "mithril-client-cli" -version = "0.9.18" +version = "0.10.0" dependencies = [ "anyhow", "async-trait", @@ -3693,7 +3693,7 @@ dependencies = [ [[package]] name = "mithril-client-wasm" -version = "0.5.3" +version = "0.6.0" dependencies = [ "async-trait", "futures", @@ -3709,7 +3709,7 @@ dependencies = [ [[package]] name = "mithril-common" -version = "0.4.75" +version = "0.4.76" dependencies = [ "anyhow", "async-trait", diff --git a/mithril-aggregator/Cargo.toml b/mithril-aggregator/Cargo.toml index 2c98db69f85..f8bb72140f3 100644 --- a/mithril-aggregator/Cargo.toml +++ b/mithril-aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-aggregator" -version = "0.5.91" +version = "0.5.92" description = "A Mithril Aggregator server" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-aggregator/src/database/migration.rs b/mithril-aggregator/src/database/migration.rs index ebeee03cb2b..86f2252c12c 100644 --- a/mithril-aggregator/src/database/migration.rs +++ b/mithril-aggregator/src/database/migration.rs @@ -804,5 +804,13 @@ pragma foreign_key_check; pragma foreign_keys=true; "#, ), + // Migration 29 + // Drop `immutable_file_number` column `certificate` table` + SqlMigration::new( + 29, + r#" +alter table certificate drop column immutable_file_number; + "#, + ), ] } diff --git a/mithril-aggregator/src/database/query/certificate/insert_certificate.rs b/mithril-aggregator/src/database/query/certificate/insert_certificate.rs index 5e73533f2e3..52b9b5b524e 100644 --- a/mithril-aggregator/src/database/query/certificate/insert_certificate.rs +++ b/mithril-aggregator/src/database/query/certificate/insert_certificate.rs @@ -25,7 +25,6 @@ impl InsertCertificateRecordQuery { aggregate_verification_key, \ epoch, \ network, \ - immutable_file_number, \ signed_entity_type_id, \ signed_entity_beacon, \ protocol_version, \ @@ -35,7 +34,7 @@ impl InsertCertificateRecordQuery { initiated_at, \ sealed_at)"; let values_columns: Vec<&str> = - repeat("(?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*)") + repeat("(?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*, ?*)") .take(certificates_records.len()) .collect(); @@ -53,7 +52,6 @@ impl InsertCertificateRecordQuery { Value::String(certificate_record.aggregate_verification_key), Value::Integer(certificate_record.epoch.try_into().unwrap()), Value::String(certificate_record.network), - Value::Integer(certificate_record.immutable_file_number as i64), Value::Integer(certificate_record.signed_entity_type.index() as i64), Value::String( certificate_record diff --git a/mithril-aggregator/src/database/record/certificate.rs b/mithril-aggregator/src/database/record/certificate.rs index c12ec89dcc8..edd7bb211b8 100644 --- a/mithril-aggregator/src/database/record/certificate.rs +++ b/mithril-aggregator/src/database/record/certificate.rs @@ -1,23 +1,24 @@ use chrono::{DateTime, Utc}; use mithril_common::entities::{ - CardanoDbBeacon, Certificate, CertificateMetadata, CertificateSignature, Epoch, - HexEncodedAggregateVerificationKey, HexEncodedKey, ImmutableFileNumber, ProtocolMessage, - ProtocolParameters, ProtocolVersion, SignedEntityType, StakeDistributionParty, + Certificate, CertificateMetadata, CertificateSignature, Epoch, + HexEncodedAggregateVerificationKey, HexEncodedKey, ProtocolMessage, ProtocolParameters, + ProtocolVersion, SignedEntityType, StakeDistributionParty, }; -use mithril_common::era_deprecate; use mithril_common::messages::{ CertificateListItemMessage, CertificateListItemMessageMetadata, CertificateMessage, CertificateMetadataMessagePart, }; #[cfg(test)] -use mithril_common::test_utils::{fake_data, fake_keys}; +use mithril_common::{ + entities::{CardanoDbBeacon, ImmutableFileNumber}, + test_utils::{fake_data, fake_keys}, +}; use mithril_persistence::{ database::Hydrator, sqlite::{HydrationError, Projection, SqLiteEntity}, }; -era_deprecate!("Remove immutable_file_number"); /// Certificate record is the representation of a stored certificate. #[derive(Debug, PartialEq, Clone)] pub struct CertificateRecord { @@ -44,9 +45,6 @@ pub struct CertificateRecord { /// Cardano network of the certificate. pub network: String, - /// Immutable file number at the time the certificate was created - pub immutable_file_number: ImmutableFileNumber, - /// Signed entity type of the message pub signed_entity_type: SignedEntityType, @@ -71,21 +69,11 @@ pub struct CertificateRecord { #[cfg(test)] impl CertificateRecord { - pub fn dummy_genesis( - id: &str, - epoch: Epoch, - immutable_file_number: ImmutableFileNumber, - ) -> Self { + pub fn dummy_genesis(id: &str, epoch: Epoch) -> Self { Self { parent_certificate_id: None, signature: fake_keys::genesis_signature()[0].to_owned(), - ..Self::dummy( - id, - "", - epoch, - immutable_file_number, - SignedEntityType::genesis(epoch), - ) + ..Self::dummy(id, "", epoch, SignedEntityType::genesis(epoch)) } } @@ -99,7 +87,6 @@ impl CertificateRecord { id, parent_id, epoch, - immutable_file_number, SignedEntityType::CardanoImmutableFilesFull(CardanoDbBeacon::new( fake_data::network().to_string(), *epoch, @@ -108,17 +95,11 @@ impl CertificateRecord { ) } - pub fn dummy_msd( - id: &str, - parent_id: &str, - epoch: Epoch, - immutable_file_number: ImmutableFileNumber, - ) -> Self { + pub fn dummy_msd(id: &str, parent_id: &str, epoch: Epoch) -> Self { Self::dummy( id, parent_id, epoch, - immutable_file_number, SignedEntityType::MithrilStakeDistribution(epoch), ) } @@ -127,7 +108,6 @@ impl CertificateRecord { id: &str, parent_id: &str, epoch: Epoch, - immutable_file_number: ImmutableFileNumber, signed_entity_type: SignedEntityType, ) -> Self { Self { @@ -138,7 +118,6 @@ impl CertificateRecord { aggregate_verification_key: fake_keys::aggregate_verification_key()[0].to_owned(), epoch, network: fake_data::network().to_string(), - immutable_file_number, signed_entity_type, protocol_version: "protocol_version".to_string(), protocol_parameters: ProtocolParameters { @@ -158,20 +137,6 @@ impl CertificateRecord { } } -impl CertificateRecord { - era_deprecate!( - "remove this method when the immutable_file_number is removed from the metadata" - ); - /// Deduce a [CardanoDbBeacon] from this record values. - fn as_cardano_db_beacon(&self) -> CardanoDbBeacon { - CardanoDbBeacon::new( - self.network.clone(), - *self.epoch, - self.immutable_file_number, - ) - } -} - impl From for CertificateRecord { fn from(other: Certificate) -> Self { let signed_entity_type = other.signed_entity_type(); @@ -182,7 +147,6 @@ impl From for CertificateRecord { } }; - #[allow(deprecated)] CertificateRecord { certificate_id: other.hash, parent_certificate_id, @@ -191,7 +155,6 @@ impl From for CertificateRecord { aggregate_verification_key: other.aggregate_verification_key.to_json_hex().unwrap(), epoch: other.epoch, network: other.metadata.network, - immutable_file_number: other.metadata.immutable_file_number, signed_entity_type, protocol_version: other.metadata.protocol_version, protocol_parameters: other.metadata.protocol_parameters, @@ -207,7 +170,6 @@ impl From for Certificate { fn from(other: CertificateRecord) -> Self { let certificate_metadata = CertificateMetadata::new( other.network, - other.immutable_file_number, other.protocol_version, other.protocol_parameters, other.initiated_at, @@ -243,7 +205,6 @@ impl From for Certificate { impl From for CertificateMessage { fn from(value: CertificateRecord) -> Self { - let beacon = Some(value.as_cardano_db_beacon()); let metadata = CertificateMetadataMessagePart { network: value.network, protocol_version: value.protocol_version, @@ -258,13 +219,11 @@ impl From for CertificateMessage { (value.signature, String::new()) }; - #[allow(deprecated)] CertificateMessage { hash: value.certificate_id, previous_hash: value.parent_certificate_id.unwrap_or_default(), epoch: value.epoch, signed_entity_type: value.signed_entity_type, - beacon, metadata, protocol_message: value.protocol_message, signed_message: value.message, @@ -277,7 +236,6 @@ impl From for CertificateMessage { impl From for CertificateListItemMessage { fn from(value: CertificateRecord) -> Self { - let beacon = Some(value.as_cardano_db_beacon()); let metadata = CertificateListItemMessageMetadata { network: value.network, protocol_version: value.protocol_version, @@ -287,13 +245,11 @@ impl From for CertificateListItemMessage { total_signers: value.signers.len(), }; - #[allow(deprecated)] CertificateListItemMessage { hash: value.certificate_id, previous_hash: value.parent_certificate_id.unwrap_or_default(), epoch: value.epoch, signed_entity_type: value.signed_entity_type, - beacon, metadata, protocol_message: value.protocol_message, signed_message: value.message, @@ -314,15 +270,14 @@ impl SqLiteEntity for CertificateRecord { let aggregate_verification_key = row.read::<&str, _>(4).to_string(); let epoch_int = row.read::(5); let network = row.read::<&str, _>(6).to_string(); - let immutable_file_number = row.read::(7); - let signed_entity_type_id = row.read::(8); - let signed_entity_beacon_string = Hydrator::read_signed_entity_beacon_column(&row, 9); - let protocol_version = row.read::<&str, _>(10).to_string(); - let protocol_parameters_string = row.read::<&str, _>(11); - let protocol_message_string = row.read::<&str, _>(12); - let signers_string = row.read::<&str, _>(13); - let initiated_at = row.read::<&str, _>(14); - let sealed_at = row.read::<&str, _>(15); + let signed_entity_type_id = row.read::(7); + let signed_entity_beacon_string = Hydrator::read_signed_entity_beacon_column(&row, 8); + let protocol_version = row.read::<&str, _>(9).to_string(); + let protocol_parameters_string = row.read::<&str, _>(10); + let protocol_message_string = row.read::<&str, _>(11); + let signers_string = row.read::<&str, _>(12); + let initiated_at = row.read::<&str, _>(13); + let sealed_at = row.read::<&str, _>(14); let certificate_record = Self { certificate_id, @@ -336,11 +291,6 @@ impl SqLiteEntity for CertificateRecord { )) })?), network, - immutable_file_number: immutable_file_number.try_into().map_err(|e| { - HydrationError::InvalidData(format!( - "Could not cast i64 ({immutable_file_number}) to u64. Error: '{e}'" - )) - })?, signed_entity_type: Hydrator::hydrate_signed_entity_type( signed_entity_type_id.try_into().map_err(|e| { HydrationError::InvalidData(format!( @@ -407,11 +357,6 @@ impl SqLiteEntity for CertificateRecord { ); projection.add_field("epoch", "{:certificate:}.epoch", "integer"); projection.add_field("network", "{:certificate:}.network", "text"); - projection.add_field( - "immutable_file_number", - "{:certificate:}.immutable_file_number", - "integer", - ); projection.add_field( "signed_entity_type_id", "{:certificate:}.signed_entity_type_id", @@ -468,7 +413,7 @@ mod tests { #[test] fn converting_certificate_record_to_certificate_should_not_recompute_hash() { let expected_hash = "my_hash"; - let record = CertificateRecord::dummy_genesis(expected_hash, Epoch(1), 1); + let record = CertificateRecord::dummy_genesis(expected_hash, Epoch(1)); let certificate: Certificate = record.into(); assert_eq!(expected_hash, &certificate.hash); diff --git a/mithril-aggregator/src/database/repository/certificate_repository.rs b/mithril-aggregator/src/database/repository/certificate_repository.rs index 84885667390..c00dbe04e73 100644 --- a/mithril-aggregator/src/database/repository/certificate_repository.rs +++ b/mithril-aggregator/src/database/repository/certificate_repository.rs @@ -146,7 +146,6 @@ mod tests { '7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37372c3230382c3138392c3138372c37362c3136322c36382c3233382c3134342c31372c3131342c3137352c36302c3136352c3230322c3134362c3139342c31332c37332c3233392c3233372c3232322c3136392c3230362c352c3130392c3132332c35322c3235342c39382c3133312c37395d2c226e725f6c6561766573223a332c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32383439323639303636317d', 241, 'preview', - 4823, 0, 241, '0.1.0', @@ -176,7 +175,6 @@ mod tests { '7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c31332c3135352c3134312c3136332c372c38362c3232372c34372c31392c3138302c3132372c3139362c3130382c3137312c3135382c3134302c37372c3137352c3135392c3133362c3139332c3130382c34322c3134322c3234342c38352c3131362c3235322c3135362c3233352c35305d2c226e725f6c6561766573223a312c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a313030393439373433323536397d', 142, 'preview', - 2838, 2, '{"network":"preview","epoch":142,"immutable_file_number":2838}', '0.1.0', @@ -288,7 +286,7 @@ mod tests { #[tokio::test] async fn get_master_certificate_one_cert_in_current_epoch_recorded_returns_that_one() { let connection = Arc::new(main_db_connection().unwrap()); - let certificate = CertificateRecord::dummy_genesis("1", Epoch(1), 1); + let certificate = CertificateRecord::dummy_genesis("1", Epoch(1)); let expected_certificate: Certificate = certificate.clone().into(); insert_certificate_records(&connection, vec![certificate]); @@ -307,7 +305,7 @@ mod tests { { let connection = Arc::new(main_db_connection().unwrap()); let certificates = vec![ - CertificateRecord::dummy_genesis("1", Epoch(1), 1), + CertificateRecord::dummy_genesis("1", Epoch(1)), CertificateRecord::dummy_db_snapshot("2", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("3", "1", Epoch(1), 3), ]; @@ -329,7 +327,7 @@ mod tests { ) { let connection = Arc::new(main_db_connection().unwrap()); let certificates = vec![ - CertificateRecord::dummy_genesis("1", Epoch(1), 1), + CertificateRecord::dummy_genesis("1", Epoch(1)), CertificateRecord::dummy_db_snapshot("2", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("3", "1", Epoch(1), 3), ]; @@ -351,7 +349,7 @@ mod tests { ) { let connection = Arc::new(main_db_connection().unwrap()); let certificates = vec![ - CertificateRecord::dummy_genesis("1", Epoch(1), 1), + CertificateRecord::dummy_genesis("1", Epoch(1)), CertificateRecord::dummy_db_snapshot("2", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("3", "1", Epoch(1), 3), CertificateRecord::dummy_db_snapshot("4", "1", Epoch(2), 4), @@ -374,7 +372,7 @@ mod tests { ) { let connection = Arc::new(main_db_connection().unwrap()); let certificates = vec![ - CertificateRecord::dummy_genesis("1", Epoch(1), 1), + CertificateRecord::dummy_genesis("1", Epoch(1)), CertificateRecord::dummy_db_snapshot("2", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("3", "1", Epoch(1), 3), CertificateRecord::dummy_db_snapshot("4", "1", Epoch(2), 4), @@ -398,7 +396,7 @@ mod tests { ) { let connection = Arc::new(main_db_connection().unwrap()); let certificates = vec![ - CertificateRecord::dummy_genesis("1", Epoch(1), 1), + CertificateRecord::dummy_genesis("1", Epoch(1)), CertificateRecord::dummy_db_snapshot("2", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("3", "1", Epoch(1), 3), ]; @@ -418,10 +416,10 @@ mod tests { ) { let connection = Arc::new(main_db_connection().unwrap()); let certificates = vec![ - CertificateRecord::dummy_genesis("1", Epoch(1), 1), + CertificateRecord::dummy_genesis("1", Epoch(1)), CertificateRecord::dummy_db_snapshot("2", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("3", "1", Epoch(1), 3), - CertificateRecord::dummy_genesis("4", Epoch(1), 3), + CertificateRecord::dummy_genesis("4", Epoch(1)), ]; let expected_certificate: Certificate = certificates.last().unwrap().clone().into(); insert_certificate_records(&connection, certificates); @@ -441,12 +439,12 @@ mod tests { ) { let connection = Arc::new(main_db_connection().unwrap()); let certificates = vec![ - CertificateRecord::dummy_genesis("1", Epoch(1), 1), + CertificateRecord::dummy_genesis("1", Epoch(1)), CertificateRecord::dummy_db_snapshot("2", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("3", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("4", "1", Epoch(2), 4), CertificateRecord::dummy_db_snapshot("5", "1", Epoch(2), 5), - CertificateRecord::dummy_genesis("6", Epoch(2), 5), + CertificateRecord::dummy_genesis("6", Epoch(2)), ]; let expected_certificate: Certificate = certificates.last().unwrap().clone().into(); insert_certificate_records(&connection, certificates); @@ -466,10 +464,10 @@ mod tests { ) { let connection = Arc::new(main_db_connection().unwrap()); let certificates = vec![ - CertificateRecord::dummy_genesis("1", Epoch(1), 1), + CertificateRecord::dummy_genesis("1", Epoch(1)), CertificateRecord::dummy_db_snapshot("2", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("3", "1", Epoch(1), 3), - CertificateRecord::dummy_genesis("4", Epoch(2), 3), + CertificateRecord::dummy_genesis("4", Epoch(2)), ]; let expected_certificate: Certificate = certificates.last().unwrap().clone().into(); insert_certificate_records(&connection, certificates); @@ -530,7 +528,7 @@ mod tests { let connection = Arc::new(main_db_connection().unwrap()); let repository = CertificateRepository::new(connection.clone()); let records = vec![ - CertificateRecord::dummy_genesis("1", Epoch(1), 1), + CertificateRecord::dummy_genesis("1", Epoch(1)), CertificateRecord::dummy_db_snapshot("2", "1", Epoch(1), 2), CertificateRecord::dummy_db_snapshot("3", "1", Epoch(1), 3), ]; diff --git a/mithril-aggregator/src/dependency_injection/builder.rs b/mithril-aggregator/src/dependency_injection/builder.rs index f2edef6b288..574141457e6 100644 --- a/mithril-aggregator/src/dependency_injection/builder.rs +++ b/mithril-aggregator/src/dependency_injection/builder.rs @@ -1579,7 +1579,6 @@ impl DependenciesBuilder { let certificate_verifier = self.get_certificate_verifier().await?; let genesis_verifier = self.get_genesis_verifier().await?; let multi_signer = self.get_multi_signer().await?; - let ticker_service = self.get_ticker_service().await?; let epoch_service = self.get_epoch_service().await?; let logger = self.root_logger(); @@ -1591,7 +1590,6 @@ impl DependenciesBuilder { certificate_verifier, genesis_verifier, multi_signer, - ticker_service, epoch_service, logger, )); diff --git a/mithril-aggregator/src/services/certifier/certifier_service.rs b/mithril-aggregator/src/services/certifier/certifier_service.rs index 73932d4355e..a51c21afbfc 100644 --- a/mithril-aggregator/src/services/certifier/certifier_service.rs +++ b/mithril-aggregator/src/services/certifier/certifier_service.rs @@ -12,7 +12,7 @@ use mithril_common::entities::{ }; use mithril_common::logging::LoggerExtensions; use mithril_common::protocol::ToMessage; -use mithril_common::{CardanoNetwork, StdResult, TickerService}; +use mithril_common::{CardanoNetwork, StdResult}; use crate::database::record::{OpenMessageRecord, OpenMessageWithSingleSignaturesRecord}; use crate::database::repository::{ @@ -32,8 +32,6 @@ pub struct MithrilCertifierService { certificate_verifier: Arc, genesis_verifier: Arc, multi_signer: Arc, - // todo: should be removed after removing immutable file number from the certificate metadata - ticker_service: Arc, epoch_service: EpochServiceWrapper, logger: Logger, } @@ -49,7 +47,6 @@ impl MithrilCertifierService { certificate_verifier: Arc, genesis_verifier: Arc, multi_signer: Arc, - ticker_service: Arc, epoch_service: EpochServiceWrapper, logger: Logger, ) -> Self { @@ -61,7 +58,6 @@ impl MithrilCertifierService { multi_signer, certificate_verifier, genesis_verifier, - ticker_service, epoch_service, logger: logger.new_with_component_name::(), } @@ -287,15 +283,8 @@ impl CertifierService for MithrilCertifierService { let protocol_version = PROTOCOL_VERSION.to_string(); let initiated_at = open_message.created_at; let sealed_at = Utc::now(); - let immutable_file_number = self - .ticker_service - .get_current_time_point() - .await - .with_context(|| "Could not retrieve current beacon to create certificate")? - .immutable_file_number; let metadata = CertificateMetadata::new( self.network.to_string(), - immutable_file_number, protocol_version, epoch_service.current_protocol_parameters()?.clone(), initiated_at, @@ -422,7 +411,6 @@ mod tests { let certificate_verifier = dependency_builder.get_certificate_verifier().await.unwrap(); let genesis_verifier = dependency_builder.get_genesis_verifier().await.unwrap(); let multi_signer = dependency_builder.get_multi_signer().await.unwrap(); - let ticker_service = dependency_builder.get_ticker_service().await.unwrap(); let epoch_service = dependency_builder.get_epoch_service().await.unwrap(); Self::new( @@ -433,7 +421,6 @@ mod tests { certificate_verifier, genesis_verifier, multi_signer, - ticker_service, epoch_service, TestLogger::stdout(), ) @@ -747,7 +734,7 @@ mod tests { .unwrap(); let genesis_certificate = - fixture.create_genesis_certificate(network.to_string(), beacon.epoch - 1, 1); + fixture.create_genesis_certificate(network.to_string(), beacon.epoch - 1); certifier_service .certificate_repository .create_certificate(genesis_certificate) diff --git a/mithril-aggregator/src/services/message.rs b/mithril-aggregator/src/services/message.rs index a0ea8c04811..12f40a533a4 100644 --- a/mithril-aggregator/src/services/message.rs +++ b/mithril-aggregator/src/services/message.rs @@ -287,7 +287,7 @@ mod tests { let repository = dep_builder.get_certificate_repository().await.unwrap(); let service = dep_builder.get_message_service().await.unwrap(); let fixture = MithrilFixtureBuilder::default().with_signers(3).build(); - let genesis_certificate = fixture.create_genesis_certificate("whatever", Epoch(2), 1); + let genesis_certificate = fixture.create_genesis_certificate("whatever", Epoch(2)); repository .create_certificate(genesis_certificate.clone()) .await @@ -312,7 +312,7 @@ mod tests { let certificates: Vec = [2, 3] .into_iter() - .map(|epoch| fixture.create_genesis_certificate("whatever", Epoch(epoch), 1)) + .map(|epoch| fixture.create_genesis_certificate("whatever", Epoch(epoch))) .collect(); let last_certificate_hash = certificates[1].hash.clone(); repository diff --git a/mithril-aggregator/src/tools/certificates_hash_migrator.rs b/mithril-aggregator/src/tools/certificates_hash_migrator.rs index 871f1aafcd2..93ae3853394 100644 --- a/mithril-aggregator/src/tools/certificates_hash_migrator.rs +++ b/mithril-aggregator/src/tools/certificates_hash_migrator.rs @@ -245,11 +245,7 @@ mod test { } fn dummy_genesis(certificate_hash: &str, time_point: TimePoint) -> Certificate { - let certificate = CertificateRecord::dummy_genesis( - certificate_hash, - time_point.epoch, - time_point.immutable_file_number, - ); + let certificate = CertificateRecord::dummy_genesis(certificate_hash, time_point.epoch); certificate.into() } @@ -264,7 +260,6 @@ mod test { certificate_hash, previous_hash, time_point.epoch, - time_point.immutable_file_number, SignedEntityConfig::dummy() .time_point_to_signed_entity(signed_entity_type, &time_point) .unwrap(), diff --git a/mithril-aggregator/src/tools/genesis.rs b/mithril-aggregator/src/tools/genesis.rs index 0ea2ae0370e..62955987e17 100644 --- a/mithril-aggregator/src/tools/genesis.rs +++ b/mithril-aggregator/src/tools/genesis.rs @@ -181,7 +181,6 @@ impl GenesisTools { self.genesis_protocol_parameters.clone(), self.network.to_string(), self.time_point.epoch, - self.time_point.immutable_file_number, self.genesis_avk.clone(), genesis_signature, )?; diff --git a/mithril-aggregator/tests/cardano_stake_distribution_verify_stakes.rs b/mithril-aggregator/tests/cardano_stake_distribution_verify_stakes.rs index a968f212ef3..e3c6ee82dda 100644 --- a/mithril-aggregator/tests/cardano_stake_distribution_verify_stakes.rs +++ b/mithril-aggregator/tests/cardano_stake_distribution_verify_stakes.rs @@ -4,7 +4,7 @@ use mithril_aggregator::Configuration; use mithril_common::entities::SignerWithStake; use mithril_common::{ entities::{ - BlockNumber, CardanoDbBeacon, ChainPoint, Epoch, ProtocolParameters, SignedEntityType, + BlockNumber, ChainPoint, Epoch, ProtocolParameters, SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, StakeDistribution, StakeDistributionParty, TimePoint, }, @@ -52,10 +52,7 @@ async fn cardano_stake_distribution_verify_stakes() { assert_last_certificate_eq!( tester, - ExpectedCertificate::new_genesis( - CardanoDbBeacon::new("devnet".to_string(), 2, 1), - fixture.compute_and_encode_avk() - ) + ExpectedCertificate::new_genesis(Epoch(2), fixture.compute_and_encode_avk()) ); comment!("Start the runtime state machine and register signers"); @@ -95,15 +92,11 @@ async fn cardano_stake_distribution_verify_stakes() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 3, 1), + Epoch(3), StakeDistributionParty::from_signers(fixture.signers_with_stake()).as_slice(), fixture.compute_and_encode_avk(), SignedEntityType::MithrilStakeDistribution(Epoch(3)), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 2, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(2)), ) ); @@ -143,7 +136,7 @@ async fn cardano_stake_distribution_verify_stakes() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 4, 1), + Epoch(4), StakeDistributionParty::from_signers(fixture.signers_with_stake()).as_slice(), fixture.compute_and_encode_avk(), SignedEntityType::MithrilStakeDistribution(Epoch(4)), @@ -165,7 +158,7 @@ async fn cardano_stake_distribution_verify_stakes() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 4, 1), + Epoch(4), StakeDistributionParty::from_signers(fixture.signers_with_stake()).as_slice(), fixture.compute_and_encode_avk(), SignedEntityType::CardanoStakeDistribution(Epoch(3)), diff --git a/mithril-aggregator/tests/certificate_chain.rs b/mithril-aggregator/tests/certificate_chain.rs index 03b09e4ba98..2fb3fbfe33d 100644 --- a/mithril-aggregator/tests/certificate_chain.rs +++ b/mithril-aggregator/tests/certificate_chain.rs @@ -56,10 +56,7 @@ async fn certificate_chain() { assert_last_certificate_eq!( tester, - ExpectedCertificate::new_genesis( - CardanoDbBeacon::new("devnet".to_string(), 1, 1), - initial_fixture.compute_and_encode_avk() - ) + ExpectedCertificate::new_genesis(Epoch(1), initial_fixture.compute_and_encode_avk()) ); comment!("Increase immutable number"); @@ -83,15 +80,11 @@ async fn certificate_chain() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 2), + Epoch(1), StakeDistributionParty::from_signers(initial_fixture.signers_with_stake()).as_slice(), initial_fixture.compute_and_encode_avk(), SignedEntityType::MithrilStakeDistribution(Epoch(1)), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -110,7 +103,7 @@ async fn certificate_chain() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 3), + Epoch(1), StakeDistributionParty::from_signers(initial_fixture.signers_with_stake()).as_slice(), initial_fixture.compute_and_encode_avk(), SignedEntityType::CardanoImmutableFilesFull(CardanoDbBeacon::new( @@ -118,11 +111,7 @@ async fn certificate_chain() { 1, 3 )), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -143,7 +132,7 @@ async fn certificate_chain() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 4), + Epoch(1), StakeDistributionParty::from_signers(initial_fixture.signers_with_stake()).as_slice(), initial_fixture.compute_and_encode_avk(), SignedEntityType::CardanoImmutableFilesFull(CardanoDbBeacon::new( @@ -151,11 +140,7 @@ async fn certificate_chain() { 1, 4 )), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -215,15 +200,11 @@ async fn certificate_chain() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 2, 4), + Epoch(2), StakeDistributionParty::from_signers(initial_fixture.signers_with_stake()).as_slice(), initial_fixture.compute_and_encode_avk(), SignedEntityType::MithrilStakeDistribution(Epoch(2)), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -250,7 +231,7 @@ async fn certificate_chain() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 3, 5), + Epoch(3), StakeDistributionParty::from_signers(initial_fixture.signers_with_stake()).as_slice(), initial_fixture.compute_and_encode_avk(), SignedEntityType::MithrilStakeDistribution(Epoch(3)), @@ -281,7 +262,7 @@ async fn certificate_chain() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 4, 6), + Epoch(4), StakeDistributionParty::from_signers(next_fixture.signers_with_stake()).as_slice(), next_fixture.compute_and_encode_avk(), SignedEntityType::MithrilStakeDistribution(Epoch(4)), @@ -312,7 +293,7 @@ async fn certificate_chain() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 4, 7), + Epoch(4), StakeDistributionParty::from_signers(next_fixture.signers_with_stake()).as_slice(), next_fixture.compute_and_encode_avk(), SignedEntityType::CardanoImmutableFilesFull(CardanoDbBeacon::new( diff --git a/mithril-aggregator/tests/create_certificate.rs b/mithril-aggregator/tests/create_certificate.rs index 1afecad5137..7396dcc93d0 100644 --- a/mithril-aggregator/tests/create_certificate.rs +++ b/mithril-aggregator/tests/create_certificate.rs @@ -57,10 +57,7 @@ async fn create_certificate() { assert_last_certificate_eq!( tester, - ExpectedCertificate::new_genesis( - CardanoDbBeacon::new("devnet".to_string(), 1, 1), - fixture.compute_and_encode_avk() - ) + ExpectedCertificate::new_genesis(Epoch(1), fixture.compute_and_encode_avk()) ); comment!("Increase immutable number"); @@ -91,15 +88,11 @@ async fn create_certificate() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 2), + Epoch(1), StakeDistributionParty::from_signers(fixture.signers_with_stake()).as_slice(), fixture.compute_and_encode_avk(), SignedEntityType::MithrilStakeDistribution(Epoch(1)), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -124,7 +117,7 @@ async fn create_certificate() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 3), + Epoch(1), &signers_for_immutables .iter() .map(|s| s.signer_with_stake.clone().into()) @@ -135,11 +128,7 @@ async fn create_certificate() { 1, 3 )), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -166,18 +155,14 @@ async fn create_certificate() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 3), + Epoch(1), &signers_for_transaction .iter() .map(|s| s.signer_with_stake.clone().into()) .collect::>(), fixture.compute_and_encode_avk(), SignedEntityType::CardanoTransactions(Epoch(1), BlockNumber(179)), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -204,18 +189,14 @@ async fn create_certificate() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 3), + Epoch(1), &signers_for_transaction .iter() .map(|s| s.signer_with_stake.clone().into()) .collect::>(), fixture.compute_and_encode_avk(), SignedEntityType::CardanoTransactions(Epoch(1), BlockNumber(119)), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); diff --git a/mithril-aggregator/tests/create_certificate_with_buffered_signatures.rs b/mithril-aggregator/tests/create_certificate_with_buffered_signatures.rs index 7a9c7656cec..bdc1600c482 100644 --- a/mithril-aggregator/tests/create_certificate_with_buffered_signatures.rs +++ b/mithril-aggregator/tests/create_certificate_with_buffered_signatures.rs @@ -3,9 +3,9 @@ mod test_extensions; use mithril_aggregator::Configuration; use mithril_common::{ entities::{ - BlockNumber, CardanoDbBeacon, CardanoTransactionsSigningConfig, ChainPoint, Epoch, - ProtocolParameters, SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, - StakeDistributionParty, TimePoint, + BlockNumber, CardanoTransactionsSigningConfig, ChainPoint, Epoch, ProtocolParameters, + SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, StakeDistributionParty, + TimePoint, }, test_utils::MithrilFixtureBuilder, }; @@ -57,10 +57,7 @@ async fn create_certificate_with_buffered_signatures() { assert_last_certificate_eq!( tester, - ExpectedCertificate::new_genesis( - CardanoDbBeacon::new("devnet".to_string(), 1, 1), - fixture.compute_and_encode_avk() - ) + ExpectedCertificate::new_genesis(Epoch(1), fixture.compute_and_encode_avk()) ); comment!("Increase immutable number"); @@ -90,15 +87,11 @@ async fn create_certificate_with_buffered_signatures() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 2), + Epoch(1), StakeDistributionParty::from_signers(fixture.signers_with_stake()).as_slice(), fixture.compute_and_encode_avk(), SignedEntityType::MithrilStakeDistribution(Epoch(1)), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); diff --git a/mithril-aggregator/tests/genesis_to_signing.rs b/mithril-aggregator/tests/genesis_to_signing.rs index bee9bf7c98c..ffebdec7293 100644 --- a/mithril-aggregator/tests/genesis_to_signing.rs +++ b/mithril-aggregator/tests/genesis_to_signing.rs @@ -2,9 +2,7 @@ mod test_extensions; use mithril_aggregator::Configuration; use mithril_common::{ - entities::{ - BlockNumber, CardanoDbBeacon, ChainPoint, ProtocolParameters, SlotNumber, TimePoint, - }, + entities::{BlockNumber, ChainPoint, Epoch, ProtocolParameters, SlotNumber, TimePoint}, test_utils::MithrilFixtureBuilder, }; use test_extensions::{utilities::get_test_dir, ExpectedCertificate, RuntimeTester}; @@ -45,10 +43,7 @@ async fn genesis_to_signing() { assert_last_certificate_eq!( tester, - ExpectedCertificate::new_genesis( - CardanoDbBeacon::new("devnet".to_string(), 1, 1), - fixture.compute_and_encode_avk() - ) + ExpectedCertificate::new_genesis(Epoch(1), fixture.compute_and_encode_avk()) ); comment!("Increase immutable number"); diff --git a/mithril-aggregator/tests/open_message_expiration.rs b/mithril-aggregator/tests/open_message_expiration.rs index f610704c3d1..2c3ef01a16e 100644 --- a/mithril-aggregator/tests/open_message_expiration.rs +++ b/mithril-aggregator/tests/open_message_expiration.rs @@ -5,7 +5,7 @@ use std::time::Duration; use mithril_aggregator::Configuration; use mithril_common::{ entities::{ - BlockNumber, CardanoDbBeacon, ChainPoint, ProtocolParameters, SignedEntityType, + BlockNumber, CardanoDbBeacon, ChainPoint, Epoch, ProtocolParameters, SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, TimePoint, }, test_utils::MithrilFixtureBuilder, @@ -49,10 +49,7 @@ async fn open_message_expiration() { assert_last_certificate_eq!( tester, - ExpectedCertificate::new_genesis( - CardanoDbBeacon::new("devnet".to_string(), 1, 1), - fixture.compute_and_encode_avk() - ) + ExpectedCertificate::new_genesis(Epoch(1), fixture.compute_and_encode_avk()) ); comment!("Increase immutable number"); @@ -95,10 +92,7 @@ async fn open_message_expiration() { cycle!(tester, "ready"); assert_last_certificate_eq!( tester, - ExpectedCertificate::new_genesis( - CardanoDbBeacon::new("devnet".to_string(), 1, 1), - fixture.compute_and_encode_avk() - ) + ExpectedCertificate::new_genesis(Epoch(1), fixture.compute_and_encode_avk()) ); comment!("Increase the immutable file number"); @@ -120,7 +114,7 @@ async fn open_message_expiration() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 3), + Epoch(1), &signers_for_immutables .iter() .map(|s| s.signer_with_stake.clone().into()) @@ -131,11 +125,7 @@ async fn open_message_expiration() { 1, 3 )), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); diff --git a/mithril-aggregator/tests/open_message_newer_exists.rs b/mithril-aggregator/tests/open_message_newer_exists.rs index 0f9531c8f00..b2c5b4fcb4f 100644 --- a/mithril-aggregator/tests/open_message_newer_exists.rs +++ b/mithril-aggregator/tests/open_message_newer_exists.rs @@ -47,10 +47,7 @@ async fn open_message_newer_exists() { assert_last_certificate_eq!( tester, - ExpectedCertificate::new_genesis( - CardanoDbBeacon::new("devnet".to_string(), 1, 1), - fixture.compute_and_encode_avk() - ) + ExpectedCertificate::new_genesis(Epoch(1), fixture.compute_and_encode_avk()) ); comment!("Increase immutable number"); @@ -81,15 +78,11 @@ async fn open_message_newer_exists() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 2), + Epoch(1), StakeDistributionParty::from_signers(fixture.signers_with_stake()).as_slice(), fixture.compute_and_encode_avk(), SignedEntityType::MithrilStakeDistribution(Epoch(1)), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); @@ -124,7 +117,7 @@ async fn open_message_newer_exists() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet".to_string(), 1, 4), + Epoch(1), &signers_for_immutables .iter() .map(|s| s.signer_with_stake.clone().into()) @@ -135,11 +128,7 @@ async fn open_message_newer_exists() { 1, 4 )), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new( - "devnet".to_string(), - 1, - 1 - )), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); diff --git a/mithril-aggregator/tests/prove_transactions.rs b/mithril-aggregator/tests/prove_transactions.rs index faf1044bed0..af6bd7b0d2e 100644 --- a/mithril-aggregator/tests/prove_transactions.rs +++ b/mithril-aggregator/tests/prove_transactions.rs @@ -1,9 +1,8 @@ use mithril_aggregator::Configuration; use mithril_common::{ entities::{ - BlockNumber, CardanoDbBeacon, CardanoTransactionsSigningConfig, ChainPoint, Epoch, - ProtocolMessagePartKey, ProtocolParameters, SignedEntityType, - SignedEntityTypeDiscriminants, SlotNumber, TimePoint, + BlockNumber, CardanoTransactionsSigningConfig, ChainPoint, Epoch, ProtocolMessagePartKey, + ProtocolParameters, SignedEntityType, SignedEntityTypeDiscriminants, SlotNumber, TimePoint, }, test_utils::MithrilFixtureBuilder, }; @@ -62,10 +61,7 @@ async fn prove_transactions() { assert_last_certificate_eq!( tester, - ExpectedCertificate::new_genesis( - CardanoDbBeacon::new("devnet", 1, 1), - fixture.compute_and_encode_avk() - ) + ExpectedCertificate::new_genesis(Epoch(1), fixture.compute_and_encode_avk()) ); // Lock all signed entity types except CardanoTransactions to limit the scope of the test @@ -106,14 +102,14 @@ async fn prove_transactions() { assert_last_certificate_eq!( tester, ExpectedCertificate::new( - CardanoDbBeacon::new("devnet", 1, 1), + Epoch(1), &signers .iter() .map(|s| s.signer_with_stake.clone().into()) .collect::>(), fixture.compute_and_encode_avk(), SignedEntityType::CardanoTransactions(Epoch(1), BlockNumber(179)), - ExpectedCertificate::genesis_identifier(&CardanoDbBeacon::new("devnet", 1, 1)), + ExpectedCertificate::genesis_identifier(Epoch(1)), ) ); diff --git a/mithril-aggregator/tests/test_extensions/expected_certificate.rs b/mithril-aggregator/tests/test_extensions/expected_certificate.rs index 2dc0ffeb47b..1b784317944 100644 --- a/mithril-aggregator/tests/test_extensions/expected_certificate.rs +++ b/mithril-aggregator/tests/test_extensions/expected_certificate.rs @@ -1,5 +1,5 @@ use mithril_common::entities::{ - CardanoDbBeacon, HexEncodedAggregateVerificationKey, PartyId, SignedEntityType, Stake, + Epoch, HexEncodedAggregateVerificationKey, PartyId, SignedEntityType, Stake, StakeDistributionParty, }; use std::collections::BTreeMap; @@ -8,7 +8,7 @@ use std::collections::BTreeMap; pub struct ExpectedCertificate { identifier: String, previous_identifier: Option, - beacon: CardanoDbBeacon, + epoch: Epoch, signers: BTreeMap, avk: HexEncodedAggregateVerificationKey, signed_type: Option, @@ -16,7 +16,7 @@ pub struct ExpectedCertificate { impl ExpectedCertificate { pub fn new( - beacon: CardanoDbBeacon, + epoch: Epoch, signers: &[StakeDistributionParty], avk: HexEncodedAggregateVerificationKey, signed_type: SignedEntityType, @@ -25,18 +25,18 @@ impl ExpectedCertificate { Self { identifier: Self::identifier(&signed_type), previous_identifier: Some(previous_identifier), - beacon, + epoch, signers: BTreeMap::from_iter(signers.iter().map(|s| (s.party_id.clone(), s.stake))), avk, signed_type: Some(signed_type), } } - pub fn new_genesis(beacon: CardanoDbBeacon, avk: HexEncodedAggregateVerificationKey) -> Self { + pub fn new_genesis(epoch: Epoch, avk: HexEncodedAggregateVerificationKey) -> Self { Self { - identifier: Self::genesis_identifier(&beacon), + identifier: Self::genesis_identifier(epoch), previous_identifier: None, - beacon, + epoch, signers: BTreeMap::new(), avk, signed_type: None, @@ -44,11 +44,11 @@ impl ExpectedCertificate { } pub fn identifier(signed_types: &SignedEntityType) -> String { - format!("certificate-{:?}", signed_types) + format!("certificate-{signed_types:?}") } - pub fn genesis_identifier(beacon: &CardanoDbBeacon) -> String { - format!("genesis-{:?}", beacon) + pub fn genesis_identifier(epoch: Epoch) -> String { + format!("genesis-{epoch:?}") } pub fn get_signed_type(&self) -> Option { diff --git a/mithril-aggregator/tests/test_extensions/runtime_tester.rs b/mithril-aggregator/tests/test_extensions/runtime_tester.rs index e32268648d7..b27f874f11e 100644 --- a/mithril-aggregator/tests/test_extensions/runtime_tester.rs +++ b/mithril-aggregator/tests/test_extensions/runtime_tester.rs @@ -240,11 +240,8 @@ impl RuntimeTester { fixture: &MithrilFixture, ) -> StdResult<()> { let time_point = self.observer.current_time_point().await; - let genesis_certificate = fixture.create_genesis_certificate( - &self.network, - time_point.epoch, - time_point.immutable_file_number, - ); + let genesis_certificate = + fixture.create_genesis_certificate(&self.network, time_point.epoch); debug!("genesis_certificate: {:?}", genesis_certificate); self.dependencies .certificate_repository @@ -615,7 +612,7 @@ impl RuntimeTester { let expected_certificate = match signed_entity_record { None if certificate.is_genesis() => ExpectedCertificate::new_genesis( - certificate.as_cardano_db_beacon(), + certificate.epoch, certificate.aggregate_verification_key.try_into().unwrap(), ), None => { @@ -627,7 +624,7 @@ impl RuntimeTester { .await?; ExpectedCertificate::new( - certificate.as_cardano_db_beacon(), + certificate.epoch, certificate.metadata.signers.as_slice(), certificate.aggregate_verification_key.try_into().unwrap(), record.signed_entity_type, @@ -664,7 +661,7 @@ impl RuntimeTester { "A genesis certificate should exist with hash {}", certificate_hash ))?; - ExpectedCertificate::genesis_identifier(&genesis_certificate.as_cardano_db_beacon()) + ExpectedCertificate::genesis_identifier(genesis_certificate.epoch) } }; diff --git a/mithril-client-cli/Cargo.toml b/mithril-client-cli/Cargo.toml index 0afe2e65397..653aeb83b4f 100644 --- a/mithril-client-cli/Cargo.toml +++ b/mithril-client-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-client-cli" -version = "0.9.18" +version = "0.10.0" description = "A Mithril Client" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-client-cli/src/commands/cardano_db/download.rs b/mithril-client-cli/src/commands/cardano_db/download.rs index ebfa6b1b084..ceb075b4eae 100644 --- a/mithril-client-cli/src/commands/cardano_db/download.rs +++ b/mithril-client-cli/src/commands/cardano_db/download.rs @@ -372,12 +372,10 @@ mod tests { ); let beacon = CardanoDbBeacon::new("testnet".to_string(), 10, 100); - #[allow(deprecated)] MithrilCertificate { hash: "hash".to_string(), previous_hash: "previous_hash".to_string(), epoch: beacon.epoch, - beacon: Some(beacon.clone()), signed_entity_type: SignedEntityType::CardanoImmutableFilesFull(beacon), metadata: MithrilCertificateMetadata::dummy(), protocol_message: protocol_message.clone(), diff --git a/mithril-client-wasm/Cargo.toml b/mithril-client-wasm/Cargo.toml index 5f9790f7706..2dc70aa8d4c 100644 --- a/mithril-client-wasm/Cargo.toml +++ b/mithril-client-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-client-wasm" -version = "0.5.3" +version = "0.6.0" description = "Mithril client WASM" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-client/Cargo.toml b/mithril-client/Cargo.toml index 3e5d8120821..d3f269652b5 100644 --- a/mithril-client/Cargo.toml +++ b/mithril-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-client" -version = "0.9.4" +version = "0.10.0" description = "Mithril client library" authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-common/Cargo.toml b/mithril-common/Cargo.toml index e1f615ce7ee..8c2777ff390 100644 --- a/mithril-common/Cargo.toml +++ b/mithril-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mithril-common" -version = "0.4.75" +version = "0.4.76" description = "Common types, interfaces, and utilities for Mithril nodes." authors = { workspace = true } edition = { workspace = true } diff --git a/mithril-common/src/certificate_chain/certificate_genesis.rs b/mithril-common/src/certificate_chain/certificate_genesis.rs index 6da5b306ef9..4a4dee76f60 100644 --- a/mithril-common/src/certificate_chain/certificate_genesis.rs +++ b/mithril-common/src/certificate_chain/certificate_genesis.rs @@ -11,10 +11,9 @@ use crate::{ PROTOCOL_VERSION, }, entities::{ - Certificate, CertificateMetadata, CertificateSignature, Epoch, ImmutableFileNumber, - ProtocolMessage, ProtocolMessagePartKey, ProtocolParameters, + Certificate, CertificateMetadata, CertificateSignature, Epoch, ProtocolMessage, + ProtocolMessagePartKey, ProtocolParameters, }, - era_deprecate, protocol::ToMessage, StdResult, }; @@ -74,13 +73,11 @@ impl CertificateGenesisProducer { .sign(genesis_message.to_message().as_bytes())) } - era_deprecate!("Remove immutable_file_number"); /// Create a Genesis Certificate pub fn create_genesis_certificate>( protocol_parameters: ProtocolParameters, network: T, epoch: Epoch, - immutable_file_number: ImmutableFileNumber, genesis_avk: ProtocolAggregateVerificationKey, genesis_signature: ProtocolGenesisSignature, ) -> StdResult { @@ -90,7 +87,6 @@ impl CertificateGenesisProducer { let signers = vec![]; let metadata = CertificateMetadata::new( network, - immutable_file_number, protocol_version, protocol_parameters.clone(), initiated_at, diff --git a/mithril-common/src/entities/certificate.rs b/mithril-common/src/entities/certificate.rs index 5b389039e73..f94ce800fe6 100644 --- a/mithril-common/src/entities/certificate.rs +++ b/mithril-common/src/entities/certificate.rs @@ -1,12 +1,9 @@ use crate::crypto_helper::{ ProtocolAggregateVerificationKey, ProtocolGenesisSignature, ProtocolMultiSignature, }; -use crate::entities::{ - CardanoDbBeacon, CertificateMetadata, Epoch, ProtocolMessage, SignedEntityType, -}; +use crate::entities::{CertificateMetadata, Epoch, ProtocolMessage, SignedEntityType}; use std::fmt::{Debug, Formatter}; -use crate::era_deprecate; use sha2::{Digest, Sha256}; /// The signature of a [Certificate] @@ -133,19 +130,6 @@ impl Certificate { CertificateSignature::MultiSignature(entity_type, _) => entity_type.clone(), } } - - era_deprecate!( - "remove this method when the immutable_file_number is removed from the metadata" - ); - /// Deduce a [CardanoDbBeacon] from this certificate values. - pub fn as_cardano_db_beacon(&self) -> CardanoDbBeacon { - #[allow(deprecated)] - CardanoDbBeacon::new( - self.metadata.network.clone(), - *self.epoch, - self.metadata.immutable_file_number, - ) - } } impl PartialEq for Certificate { @@ -238,7 +222,6 @@ mod tests { Epoch(10), CertificateMetadata::new( "testnet", - 100, "0.1.0", ProtocolParameters::new(1000, 100, 0.123), initiated_at, @@ -355,7 +338,6 @@ mod tests { Epoch(10), CertificateMetadata::new( "testnet", - 100, "0.1.0".to_string(), ProtocolParameters::new(1000, 100, 0.123), initiated_at, diff --git a/mithril-common/src/entities/certificate_metadata.rs b/mithril-common/src/entities/certificate_metadata.rs index 15e901e3a02..3045b2dfe2a 100644 --- a/mithril-common/src/entities/certificate_metadata.rs +++ b/mithril-common/src/entities/certificate_metadata.rs @@ -2,10 +2,7 @@ use chrono::{DateTime, Utc}; use serde::{Deserialize, Serialize}; use sha2::{Digest, Sha256}; -use crate::entities::{ - ImmutableFileNumber, ProtocolParameters, ProtocolVersion, SignerWithStake, StakeDistribution, -}; -use crate::era_deprecate; +use crate::entities::{ProtocolParameters, ProtocolVersion, SignerWithStake, StakeDistribution}; use super::{PartyId, Stake}; @@ -44,20 +41,12 @@ impl StakeDistributionParty { } } -era_deprecate!("Remove immutable file number as it's here only for message backward-compatibility"); /// CertificateMetadata represents the metadata associated to a Certificate #[derive(Clone, Debug, PartialEq)] pub struct CertificateMetadata { /// Cardano network pub network: String, - /// Number of the last included immutable files for the digest computation - #[deprecated( - since = "0.3.25", - note = "Exist only for backward-compatibility, will be removed in the future" - )] - pub immutable_file_number: ImmutableFileNumber, - /// Protocol Version (semver) /// Useful to achieve backward compatibility of the certificates (including of the multi signature) /// part of METADATA(p,n) @@ -86,17 +75,14 @@ impl CertificateMetadata { /// CertificateMetadata factory pub fn new, U: Into>( network: T, - immutable_file_number: ImmutableFileNumber, protocol_version: U, protocol_parameters: ProtocolParameters, initiated_at: DateTime, sealed_at: DateTime, signers: Vec, ) -> CertificateMetadata { - #[allow(deprecated)] CertificateMetadata { network: network.into(), - immutable_file_number, protocol_version: protocol_version.into(), protocol_parameters, initiated_at, @@ -161,7 +147,6 @@ mod tests { } #[test] - #[allow(deprecated)] fn test_certificate_metadata_compute_hash() { let hash_expected = "f16631f048b33746aa0141cf607ee53ddb76308725e6912530cc41cc54834206"; @@ -173,8 +158,7 @@ mod tests { let sealed_at = initiated_at + Duration::try_seconds(100).unwrap(); let metadata = CertificateMetadata::new( "devnet", - 1, - "0.1.0".to_string(), + "0.1.0", ProtocolParameters::new(1000, 100, 0.123), initiated_at, sealed_at, @@ -183,16 +167,6 @@ mod tests { assert_eq!(hash_expected, metadata.compute_hash()); - // immutable_file_number shouldn't impact the hash since its deprecated - assert_eq!( - hash_expected, - CertificateMetadata { - immutable_file_number: metadata.immutable_file_number + 10, - ..metadata.clone() - } - .compute_hash(), - ); - assert_ne!( hash_expected, CertificateMetadata { diff --git a/mithril-common/src/messages/certificate.rs b/mithril-common/src/messages/certificate.rs index 0e4facf02ff..c8bab951f1f 100644 --- a/mithril-common/src/messages/certificate.rs +++ b/mithril-common/src/messages/certificate.rs @@ -3,16 +3,14 @@ use std::fmt::{Debug, Formatter}; use anyhow::Context; use serde::{Deserialize, Serialize}; -#[cfg(any(test, feature = "test_tools"))] -use crate::entities::ProtocolMessagePartKey; use crate::entities::{ - CardanoDbBeacon, Certificate, CertificateMetadata, CertificateSignature, Epoch, - ProtocolMessage, SignedEntityType, + Certificate, CertificateMetadata, CertificateSignature, Epoch, ProtocolMessage, + SignedEntityType, }; use crate::messages::CertificateMetadataMessagePart; -#[cfg(any(test, feature = "test_tools"))] -use crate::test_utils::fake_keys; use crate::StdError; +#[cfg(any(test, feature = "test_tools"))] +use crate::{entities::ProtocolMessagePartKey, test_utils::fake_keys}; /// Message structure of a certificate #[derive(Clone, PartialEq, Serialize, Deserialize)] @@ -35,11 +33,6 @@ pub struct CertificateMessage { /// aka BEACON(p,n) pub signed_entity_type: SignedEntityType, - /// Mithril beacon on the Cardano chain - #[deprecated(since = "0.3.25", note = "use epoch and/or signed_entity_type instead")] - #[serde(skip_serializing_if = "Option::is_none")] - pub beacon: Option, - /// Certificate metadata /// aka METADATA(p,n) pub metadata: CertificateMetadataMessagePart, @@ -81,13 +74,11 @@ impl CertificateMessage { ); let epoch = Epoch(10); - #[allow(deprecated)] Self { hash: "hash".to_string(), previous_hash: "previous_hash".to_string(), epoch, signed_entity_type: SignedEntityType::MithrilStakeDistribution(epoch), - beacon: Some(CardanoDbBeacon::new("testnet".to_string(), *epoch, 100)), metadata: CertificateMetadataMessagePart::dummy(), protocol_message: protocol_message.clone(), signed_message: "signed_message".to_string(), @@ -141,15 +132,8 @@ impl TryFrom for Certificate { type Error = StdError; fn try_from(certificate_message: CertificateMessage) -> Result { - #[allow(deprecated)] let metadata = CertificateMetadata { network: certificate_message.metadata.network, - // This field is deprecated and will be removed in the future so use 0 as default - // value is fine. - immutable_file_number: certificate_message - .beacon - .map(|b| b.immutable_file_number) - .unwrap_or(0), protocol_version: certificate_message.metadata.protocol_version, protocol_parameters: certificate_message.metadata.protocol_parameters, initiated_at: certificate_message.metadata.initiated_at, @@ -200,7 +184,6 @@ impl TryFrom for CertificateMessage { type Error = StdError; fn try_from(certificate: Certificate) -> Result { - let beacon = Some(certificate.as_cardano_db_beacon()); let signed_entity_type = certificate.signed_entity_type(); let metadata = CertificateMetadataMessagePart { network: certificate.metadata.network, @@ -223,13 +206,11 @@ impl TryFrom for CertificateMessage { ), }; - #[allow(deprecated)] let message = CertificateMessage { hash: certificate.hash, previous_hash: certificate.previous_hash, epoch: certificate.epoch, signed_entity_type, - beacon, metadata, protocol_message: certificate.protocol_message, signed_message: certificate.signed_message, @@ -251,18 +232,59 @@ impl TryFrom for CertificateMessage { mod tests { use chrono::{DateTime, Utc}; - use crate::entities::{ProtocolParameters, StakeDistributionParty}; + use crate::entities::{CardanoDbBeacon, ProtocolParameters, StakeDistributionParty}; use super::*; + const ACTUAL_JSON: &str = r#"{ + "hash": "hash", + "previous_hash": "previous_hash", + "epoch": 10, + "signed_entity_type": { "MithrilStakeDistribution": 10 }, + "metadata": { + "network": "testnet", + "version": "0.1.0", + "parameters": { + "k": 1000, + "m": 100, + "phi_f": 0.123 + }, + "initiated_at": "2024-02-12T13:11:47Z", + "sealed_at": "2024-02-12T13:12:57Z", + "signers": [ + { + "party_id": "1", + "verification_key": "7b22766b223a5b3134332c3136312c3235352c34382c37382c35372c3230342c3232302c32352c3232312c3136342c3235322c3234382c31342c35362c3132362c3138362c3133352c3232382c3138382c3134352c3138312c35322c3230302c39372c39392c3231332c34362c302c3139392c3139332c38392c3138372c38382c32392c3133352c3137332c3234342c38362c33362c38332c35342c36372c3136342c362c3133372c39342c37322c362c3130352c3132382c3132382c39332c34382c3137362c31312c342c3234362c3133382c34382c3138302c3133332c39302c3134322c3139322c32342c3139332c3131312c3134322c33312c37362c3131312c3131302c3233342c3135332c39302c3230382c3139322c33312c3132342c39352c3130322c34392c3135382c39392c35322c3232302c3136352c39342c3235312c36382c36392c3132312c31362c3232342c3139345d2c22706f70223a5b3136382c35302c3233332c3139332c31352c3133362c36352c37322c3132332c3134382c3132392c3137362c33382c3139382c3230392c34372c32382c3230342c3137362c3134342c35372c3235312c34322c32382c36362c37362c38392c39372c3135382c36332c35342c3139382c3139342c3137362c3133352c3232312c31342c3138352c3139372c3232352c3230322c39382c3234332c37342c3233332c3232352c3134332c3135312c3134372c3137372c3137302c3131372c36362c3136352c36362c36322c33332c3231362c3233322c37352c36382c3131342c3139352c32322c3130302c36352c34342c3139382c342c3136362c3130322c3233332c3235332c3234302c35392c3137352c36302c3131372c3134322c3131342c3134302c3132322c31372c38372c3131302c3138372c312c31372c31302c3139352c3135342c31332c3234392c38362c35342c3232365d7d", + "stake": 10 + }, + { + "party_id": "2", + "verification_key": "7b22766b223a5b3134352c35362c3137352c33322c3132322c3138372c3231342c3232362c3235312c3134382c38382c392c312c3130332c3135392c3134362c38302c3136362c3130372c3234332c3235312c3233362c34312c32382c3131312c3132382c3230372c3136342c3133322c3134372c3232382c38332c3234362c3232382c3137302c36382c38392c37382c36302c32382c3132332c3133302c38382c3233342c33382c39372c34322c36352c312c3130302c35332c31382c37382c3133312c382c36312c3132322c3133312c3233382c38342c3233332c3232332c3135342c3131382c3131382c37332c32382c32372c3130312c37382c38302c3233332c3132332c3230362c3232302c3137342c3133342c3230352c37312c3131302c3131322c3138302c39372c39382c302c3131332c36392c3134352c3233312c3136382c34332c3137332c3137322c35362c3130342c3230385d2c22706f70223a5b3133372c3231342c37352c37352c3134342c3136312c3133372c37392c39342c3134302c3138312c34372c33312c38312c3231332c33312c3137312c3231362c32342c3137342c37382c3234382c3133302c37352c3235352c31312c3134352c3132342c36312c38302c3139302c32372c3231362c3130352c3130362c3234382c39312c3134332c3230342c3130322c3230332c3136322c37362c3130372c31352c35322c36312c38322c3134362c3133302c3132342c37342c382c33342c3136342c3138372c3230332c38322c36342c3130382c3139312c3138352c3138382c37372c3132322c352c3234362c3235352c3130322c3131392c3234372c3139392c3131372c36372c3234312c3134332c32392c3136382c36372c39342c3135312c37382c3132392c3133312c33302c3130312c3137332c31302c36392c36382c3137352c39382c33372c3233392c3139342c32395d7d", + "stake": 20 + } + ] + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "snapshot-digest-123", + "next_aggregate_verification_key": "next-avk-123" + } + }, + "signed_message": "signed_message", + "aggregate_verification_key": "aggregate_verification_key", + "multi_signature": "multi_signature", + "genesis_signature": "genesis_signature" + }"#; + + // Supported structure until OpenAPI version 0.1.32. #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] - struct CertificateMessagePreviousVersion { + struct CertificateMessageUntilV0_1_32 { pub hash: String, pub previous_hash: String, pub epoch: Epoch, pub signed_entity_type: SignedEntityType, - #[deprecated(since = "0.3.25", note = "use epoch and/or signed_entity_type instead")] - pub beacon: CardanoDbBeacon, + #[serde(skip_serializing_if = "Option::is_none")] + pub beacon: Option, pub metadata: CertificateMetadataMessagePart, pub protocol_message: ProtocolMessage, pub signed_message: String, @@ -271,7 +293,7 @@ mod tests { pub genesis_signature: String, } - fn golden_previous_message() -> CertificateMessagePreviousVersion { + fn golden_message_until_open_api_0_1_32() -> CertificateMessageUntilV0_1_32 { let mut protocol_message = ProtocolMessage::new(); protocol_message.set_message_part( ProtocolMessagePartKey::SnapshotDigest, @@ -283,13 +305,12 @@ mod tests { ); let beacon = CardanoDbBeacon::new("testnet", 10, 100); - #[allow(deprecated)] - CertificateMessagePreviousVersion { + CertificateMessageUntilV0_1_32 { hash: "hash".to_string(), previous_hash: "previous_hash".to_string(), epoch: beacon.epoch, signed_entity_type: SignedEntityType::MithrilStakeDistribution(beacon.epoch), - beacon: beacon.clone(), + beacon: None, metadata: CertificateMetadataMessagePart { network: beacon.network, protocol_version: "0.1.0".to_string(), @@ -329,17 +350,15 @@ mod tests { ProtocolMessagePartKey::NextAggregateVerificationKey, "next-avk-123".to_string(), ); - let beacon = CardanoDbBeacon::new("testnet", 10, 100); + let epoch = Epoch(10); - #[allow(deprecated)] CertificateMessage { hash: "hash".to_string(), previous_hash: "previous_hash".to_string(), - epoch: beacon.epoch, - signed_entity_type: SignedEntityType::MithrilStakeDistribution(beacon.epoch), - beacon: Some(beacon.clone()), + epoch, + signed_entity_type: SignedEntityType::MithrilStakeDistribution(epoch), metadata: CertificateMetadataMessagePart { - network: beacon.network, + network: "testnet".to_string(), protocol_version: "0.1.0".to_string(), protocol_parameters: ProtocolParameters::new(1000, 100, 0.123), initiated_at: DateTime::parse_from_rfc3339("2024-02-12T13:11:47Z") @@ -367,57 +386,12 @@ mod tests { } } - const ACTUAL_JSON: &str = r#"{ - "hash": "hash", - "previous_hash": "previous_hash", - "epoch": 10, - "signed_entity_type": { "MithrilStakeDistribution": 10 }, - "beacon": { - "network": "testnet", - "epoch": 10, - "immutable_file_number": 100 - }, - "metadata": { - "network": "testnet", - "version": "0.1.0", - "parameters": { - "k": 1000, - "m": 100, - "phi_f": 0.123 - }, - "initiated_at": "2024-02-12T13:11:47Z", - "sealed_at": "2024-02-12T13:12:57Z", - "signers": [ - { - "party_id": "1", - "verification_key": "7b22766b223a5b3134332c3136312c3235352c34382c37382c35372c3230342c3232302c32352c3232312c3136342c3235322c3234382c31342c35362c3132362c3138362c3133352c3232382c3138382c3134352c3138312c35322c3230302c39372c39392c3231332c34362c302c3139392c3139332c38392c3138372c38382c32392c3133352c3137332c3234342c38362c33362c38332c35342c36372c3136342c362c3133372c39342c37322c362c3130352c3132382c3132382c39332c34382c3137362c31312c342c3234362c3133382c34382c3138302c3133332c39302c3134322c3139322c32342c3139332c3131312c3134322c33312c37362c3131312c3131302c3233342c3135332c39302c3230382c3139322c33312c3132342c39352c3130322c34392c3135382c39392c35322c3232302c3136352c39342c3235312c36382c36392c3132312c31362c3232342c3139345d2c22706f70223a5b3136382c35302c3233332c3139332c31352c3133362c36352c37322c3132332c3134382c3132392c3137362c33382c3139382c3230392c34372c32382c3230342c3137362c3134342c35372c3235312c34322c32382c36362c37362c38392c39372c3135382c36332c35342c3139382c3139342c3137362c3133352c3232312c31342c3138352c3139372c3232352c3230322c39382c3234332c37342c3233332c3232352c3134332c3135312c3134372c3137372c3137302c3131372c36362c3136352c36362c36322c33332c3231362c3233322c37352c36382c3131342c3139352c32322c3130302c36352c34342c3139382c342c3136362c3130322c3233332c3235332c3234302c35392c3137352c36302c3131372c3134322c3131342c3134302c3132322c31372c38372c3131302c3138372c312c31372c31302c3139352c3135342c31332c3234392c38362c35342c3232365d7d", - "stake": 10 - }, - { - "party_id": "2", - "verification_key": "7b22766b223a5b3134352c35362c3137352c33322c3132322c3138372c3231342c3232362c3235312c3134382c38382c392c312c3130332c3135392c3134362c38302c3136362c3130372c3234332c3235312c3233362c34312c32382c3131312c3132382c3230372c3136342c3133322c3134372c3232382c38332c3234362c3232382c3137302c36382c38392c37382c36302c32382c3132332c3133302c38382c3233342c33382c39372c34322c36352c312c3130302c35332c31382c37382c3133312c382c36312c3132322c3133312c3233382c38342c3233332c3232332c3135342c3131382c3131382c37332c32382c32372c3130312c37382c38302c3233332c3132332c3230362c3232302c3137342c3133342c3230352c37312c3131302c3131322c3138302c39372c39382c302c3131332c36392c3134352c3233312c3136382c34332c3137332c3137322c35362c3130342c3230385d2c22706f70223a5b3133372c3231342c37352c37352c3134342c3136312c3133372c37392c39342c3134302c3138312c34372c33312c38312c3231332c33312c3137312c3231362c32342c3137342c37382c3234382c3133302c37352c3235352c31312c3134352c3132342c36312c38302c3139302c32372c3231362c3130352c3130362c3234382c39312c3134332c3230342c3130322c3230332c3136322c37362c3130372c31352c35322c36312c38322c3134362c3133302c3132342c37342c382c33342c3136342c3138372c3230332c38322c36342c3130382c3139312c3138352c3138382c37372c3132322c352c3234362c3235352c3130322c3131392c3234372c3139392c3131372c36372c3234312c3134332c32392c3136382c36372c39342c3135312c37382c3132392c3133312c33302c3130312c3137332c31302c36392c36382c3137352c39382c33372c3233392c3139342c32395d7d", - "stake": 20 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "snapshot-digest-123", - "next_aggregate_verification_key": "next-avk-123" - } - }, - "signed_message": "signed_message", - "aggregate_verification_key": "aggregate_verification_key", - "multi_signature": "multi_signature", - "genesis_signature": "genesis_signature" - }"#; - #[test] - fn test_actual_json_deserialized_into_previous_message() { + fn test_actual_json_deserialized_into_message_supported_until_open_api_0_1_32() { let json = ACTUAL_JSON; - let message: CertificateMessagePreviousVersion = serde_json::from_str(json).unwrap(); + let message: CertificateMessageUntilV0_1_32 = serde_json::from_str(json).unwrap(); - assert_eq!(golden_previous_message(), message); + assert_eq!(golden_message_until_open_api_0_1_32(), message); } #[test] @@ -427,58 +401,4 @@ mod tests { assert_eq!(golden_actual_message(), message); } - - #[test] - fn test_json_next_version_deserialized_into_actual_message() { - let json = r#"{ - "hash": "hash", - "previous_hash": "previous_hash", - "epoch": 10, - "signed_entity_type": { "MithrilStakeDistribution": 10 }, - "metadata": { - "network": "testnet", - "version": "0.1.0", - "parameters": { - "k": 1000, - "m": 100, - "phi_f": 0.123 - }, - "initiated_at": "2024-02-12T13:11:47Z", - "sealed_at": "2024-02-12T13:12:57Z", - "signers": [ - { - "party_id": "1", - "verification_key": "7b22766b223a5b3134332c3136312c3235352c34382c37382c35372c3230342c3232302c32352c3232312c3136342c3235322c3234382c31342c35362c3132362c3138362c3133352c3232382c3138382c3134352c3138312c35322c3230302c39372c39392c3231332c34362c302c3139392c3139332c38392c3138372c38382c32392c3133352c3137332c3234342c38362c33362c38332c35342c36372c3136342c362c3133372c39342c37322c362c3130352c3132382c3132382c39332c34382c3137362c31312c342c3234362c3133382c34382c3138302c3133332c39302c3134322c3139322c32342c3139332c3131312c3134322c33312c37362c3131312c3131302c3233342c3135332c39302c3230382c3139322c33312c3132342c39352c3130322c34392c3135382c39392c35322c3232302c3136352c39342c3235312c36382c36392c3132312c31362c3232342c3139345d2c22706f70223a5b3136382c35302c3233332c3139332c31352c3133362c36352c37322c3132332c3134382c3132392c3137362c33382c3139382c3230392c34372c32382c3230342c3137362c3134342c35372c3235312c34322c32382c36362c37362c38392c39372c3135382c36332c35342c3139382c3139342c3137362c3133352c3232312c31342c3138352c3139372c3232352c3230322c39382c3234332c37342c3233332c3232352c3134332c3135312c3134372c3137372c3137302c3131372c36362c3136352c36362c36322c33332c3231362c3233322c37352c36382c3131342c3139352c32322c3130302c36352c34342c3139382c342c3136362c3130322c3233332c3235332c3234302c35392c3137352c36302c3131372c3134322c3131342c3134302c3132322c31372c38372c3131302c3138372c312c31372c31302c3139352c3135342c31332c3234392c38362c35342c3232365d7d", - "stake": 10 - }, - { - "party_id": "2", - "verification_key": "7b22766b223a5b3134352c35362c3137352c33322c3132322c3138372c3231342c3232362c3235312c3134382c38382c392c312c3130332c3135392c3134362c38302c3136362c3130372c3234332c3235312c3233362c34312c32382c3131312c3132382c3230372c3136342c3133322c3134372c3232382c38332c3234362c3232382c3137302c36382c38392c37382c36302c32382c3132332c3133302c38382c3233342c33382c39372c34322c36352c312c3130302c35332c31382c37382c3133312c382c36312c3132322c3133312c3233382c38342c3233332c3232332c3135342c3131382c3131382c37332c32382c32372c3130312c37382c38302c3233332c3132332c3230362c3232302c3137342c3133342c3230352c37312c3131302c3131322c3138302c39372c39382c302c3131332c36392c3134352c3233312c3136382c34332c3137332c3137322c35362c3130342c3230385d2c22706f70223a5b3133372c3231342c37352c37352c3134342c3136312c3133372c37392c39342c3134302c3138312c34372c33312c38312c3231332c33312c3137312c3231362c32342c3137342c37382c3234382c3133302c37352c3235352c31312c3134352c3132342c36312c38302c3139302c32372c3231362c3130352c3130362c3234382c39312c3134332c3230342c3130322c3230332c3136322c37362c3130372c31352c35322c36312c38322c3134362c3133302c3132342c37342c382c33342c3136342c3138372c3230332c38322c36342c3130382c3139312c3138352c3138382c37372c3132322c352c3234362c3235352c3130322c3131392c3234372c3139392c3131372c36372c3234312c3134332c32392c3136382c36372c39342c3135312c37382c3132392c3133312c33302c3130312c3137332c31302c36392c36382c3137352c39382c33372c3233392c3139342c32395d7d", - "stake": 20 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "snapshot-digest-123", - "next_aggregate_verification_key": "next-avk-123" - } - }, - "signed_message": "signed_message", - "aggregate_verification_key": "aggregate_verification_key", - "multi_signature": "multi_signature", - "genesis_signature": "genesis_signature" - }"#; - let message: CertificateMessage = serde_json::from_str(json).expect( - "This JSON is expected to be successfully parsed into a CertificateMessage instance.", - ); - - #[allow(deprecated)] - let golden_message = CertificateMessage { - beacon: None, - ..golden_actual_message() - }; - - assert_eq!(golden_message, message); - } } diff --git a/mithril-common/src/messages/certificate_list.rs b/mithril-common/src/messages/certificate_list.rs index 68fb481c62f..31b1dba73f9 100644 --- a/mithril-common/src/messages/certificate_list.rs +++ b/mithril-common/src/messages/certificate_list.rs @@ -3,8 +3,8 @@ use serde::{Deserialize, Serialize}; use std::fmt::{Debug, Formatter}; use crate::entities::{ - CardanoDbBeacon, Epoch, ProtocolMessage, ProtocolMessagePartKey, ProtocolParameters, - ProtocolVersion, SignedEntityType, + Epoch, ProtocolMessage, ProtocolMessagePartKey, ProtocolParameters, ProtocolVersion, + SignedEntityType, }; /// Message structure of a certificate list @@ -64,11 +64,6 @@ pub struct CertificateListItemMessage { /// aka BEACON(p,n) pub signed_entity_type: SignedEntityType, - /// Mithril beacon on the Cardano chain - #[deprecated(since = "0.3.25", note = "use epoch and/or signed_entity_type instead")] - #[serde(skip_serializing_if = "Option::is_none")] - pub beacon: Option, - /// Certificate metadata /// aka METADATA(p,n) pub metadata: CertificateListItemMessageMetadata, @@ -101,13 +96,11 @@ impl CertificateListItemMessage { ); let epoch = Epoch(10); - #[allow(deprecated)] Self { hash: "hash".to_string(), previous_hash: "previous_hash".to_string(), epoch, signed_entity_type: SignedEntityType::MithrilStakeDistribution(epoch), - beacon: Some(CardanoDbBeacon::new("testnet", *epoch, 100)), metadata: CertificateListItemMessageMetadata { network: "testnet".to_string(), protocol_version: "0.1.0".to_string(), @@ -160,25 +153,54 @@ impl Debug for CertificateListItemMessage { #[cfg(test)] mod tests { + use crate::entities::CardanoDbBeacon; + use super::*; - type CertificateListMessagePreviousVersion = Vec; + const ACTUAL_JSON: &str = r#"[{ + "hash": "hash", + "previous_hash": "previous_hash", + "epoch": 10, + "signed_entity_type": { "MithrilStakeDistribution": 10 }, + "metadata": { + "network": "testnet", + "version": "0.1.0", + "parameters": { + "k": 1000, + "m": 100, + "phi_f": 0.123 + }, + "initiated_at": "2024-02-12T13:11:47Z", + "sealed_at": "2024-02-12T13:12:57Z", + "total_signers": 2 + }, + "protocol_message": { + "message_parts": { + "snapshot_digest": "snapshot-digest-123", + "next_aggregate_verification_key": "next-avk-123" + } + }, + "signed_message": "signed_message", + "aggregate_verification_key": "aggregate_verification_key" + }]"#; + + type CertificateListMessageUntilV0_1_32 = Vec; #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] - struct CertificateListItemMessagePreviousVersion { + struct CertificateListItemMessageUntilV0_1_32 { pub hash: String, pub previous_hash: String, pub epoch: Epoch, pub signed_entity_type: SignedEntityType, - #[deprecated(since = "0.3.25", note = "use epoch and/or signed_entity_type instead")] - pub beacon: CardanoDbBeacon, + #[serde(skip_serializing_if = "Option::is_none")] + pub beacon: Option, pub metadata: CertificateListItemMessageMetadata, pub protocol_message: ProtocolMessage, pub signed_message: String, pub aggregate_verification_key: String, } - fn golden_previous_message() -> CertificateListItemMessagePreviousVersion { + fn golden_message_until_open_api_0_1_32() -> CertificateListItemMessageUntilV0_1_32 { let mut protocol_message = ProtocolMessage::new(); protocol_message.set_message_part( ProtocolMessagePartKey::SnapshotDigest, @@ -190,13 +212,12 @@ mod tests { ); let epoch = Epoch(10); - #[allow(deprecated)] - CertificateListItemMessagePreviousVersion { + CertificateListItemMessageUntilV0_1_32 { hash: "hash".to_string(), previous_hash: "previous_hash".to_string(), epoch, signed_entity_type: SignedEntityType::MithrilStakeDistribution(epoch), - beacon: CardanoDbBeacon::new("testnet", *epoch, 100), + beacon: None, metadata: CertificateListItemMessageMetadata { network: "testnet".to_string(), protocol_version: "0.1.0".to_string(), @@ -227,13 +248,11 @@ mod tests { ); let epoch = Epoch(10); - #[allow(deprecated)] CertificateListItemMessage { hash: "hash".to_string(), previous_hash: "previous_hash".to_string(), epoch, signed_entity_type: SignedEntityType::MithrilStakeDistribution(epoch), - beacon: Some(CardanoDbBeacon::new("testnet", *epoch, 100)), metadata: CertificateListItemMessageMetadata { network: "testnet".to_string(), protocol_version: "0.1.0".to_string(), @@ -252,44 +271,12 @@ mod tests { } } - const ACTUAL_JSON: &str = r#"[{ - "hash": "hash", - "previous_hash": "previous_hash", - "epoch": 10, - "signed_entity_type": { "MithrilStakeDistribution": 10 }, - "beacon": { - "network": "testnet", - "epoch": 10, - "immutable_file_number": 100 - }, - "metadata": { - "network": "testnet", - "version": "0.1.0", - "parameters": { - "k": 1000, - "m": 100, - "phi_f": 0.123 - }, - "initiated_at": "2024-02-12T13:11:47Z", - "sealed_at": "2024-02-12T13:12:57Z", - "total_signers": 2 - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "snapshot-digest-123", - "next_aggregate_verification_key": "next-avk-123" - } - }, - "signed_message": "signed_message", - "aggregate_verification_key": "aggregate_verification_key" - }]"#; - #[test] - fn test_actual_json_deserialized_into_previous_message() { + fn test_actual_json_deserialized_into_message_supported_until_open_api_0_1_32() { let json = ACTUAL_JSON; - let message: CertificateListMessagePreviousVersion = serde_json::from_str(json).unwrap(); + let message: CertificateListMessageUntilV0_1_32 = serde_json::from_str(json).unwrap(); - assert_eq!(vec![golden_previous_message()], message); + assert_eq!(vec![golden_message_until_open_api_0_1_32()], message); } #[test] @@ -299,46 +286,4 @@ mod tests { assert_eq!(vec![golden_actual_message()], message); } - - #[test] - fn test_json_next_version_deserialized_into_actual_message() { - let json = r#"[{ - "hash": "hash", - "previous_hash": "previous_hash", - "epoch": 10, - "signed_entity_type": { "MithrilStakeDistribution": 10 }, - "metadata": { - "network": "testnet", - "version": "0.1.0", - "parameters": { - "k": 1000, - "m": 100, - "phi_f": 0.123 - }, - "initiated_at": "2024-02-12T13:11:47Z", - "sealed_at": "2024-02-12T13:12:57Z", - "total_signers": 2 - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "snapshot-digest-123", - "next_aggregate_verification_key": "next-avk-123" - } - }, - "signed_message": "signed_message", - "aggregate_verification_key": "aggregate_verification_key" - }]"#; - - let message: CertificateListMessage = serde_json::from_str(json).expect( - "This JSON is expected to be successfully parsed into a CertificateListMessage instance.", - ); - - #[allow(deprecated)] - let golden_message = vec![CertificateListItemMessage { - beacon: None, - ..golden_actual_message() - }]; - - assert_eq!(golden_message, message); - } } diff --git a/mithril-common/src/messages/epoch_settings.rs b/mithril-common/src/messages/epoch_settings.rs index f85421e5959..58cf6168a55 100644 --- a/mithril-common/src/messages/epoch_settings.rs +++ b/mithril-common/src/messages/epoch_settings.rs @@ -94,7 +94,7 @@ mod tests { // Supported structure until OpenAPI version 0.1.28. #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] - pub struct EpochSettingsMessageUntilV0_1_28 { + struct EpochSettingsMessageUntilV0_1_28 { /// Current Epoch pub epoch: Epoch, @@ -109,7 +109,7 @@ mod tests { // Supported structure until OpenAPI version 0.1.29. #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] - pub struct EpochSettingsMessageUntilV0_1_29 { + struct EpochSettingsMessageUntilV0_1_29 { /// Current Epoch pub epoch: Epoch, diff --git a/mithril-common/src/messages/register_signer.rs b/mithril-common/src/messages/register_signer.rs index 11b3f46b809..0fcabf2b774 100644 --- a/mithril-common/src/messages/register_signer.rs +++ b/mithril-common/src/messages/register_signer.rs @@ -104,7 +104,7 @@ mod tests { // Supported structure until OpenAPI version 0.1.8. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] - pub struct RegisterSignerMessageUntilV0_1_8 { + struct RegisterSignerMessageUntilV0_1_8 { pub party_id: PartyId, pub verification_key: HexEncodedVerificationKey, #[serde(skip_serializing_if = "Option::is_none")] @@ -117,7 +117,7 @@ mod tests { // Supported structure until OpenAPI version 0.1.32. #[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] - pub struct RegisterSignerMessageUntilV0_1_32 { + struct RegisterSignerMessageUntilV0_1_32 { #[serde(skip_serializing_if = "Option::is_none")] pub epoch: Option, pub party_id: PartyId, diff --git a/mithril-common/src/test_utils/certificate_chain_builder.rs b/mithril-common/src/test_utils/certificate_chain_builder.rs index b1b39b25cc7..870da69c69d 100644 --- a/mithril-common/src/test_utils/certificate_chain_builder.rs +++ b/mithril-common/src/test_utils/certificate_chain_builder.rs @@ -331,7 +331,6 @@ impl<'a> CertificateChainBuilder<'a> { fn build_base_certificate(&self, context: &CertificateChainBuilderContext) -> Certificate { let index_certificate = context.index_certificate; let epoch = context.epoch; - let immutable_file_number = index_certificate as u64 * 10; let certificate_hash = format!("certificate_hash-{index_certificate}"); let avk = Self::compute_avk_for_signers(&context.fixture.signers_fixture()); let protocol_parameters = context.fixture.protocol_parameters().to_owned(); @@ -345,9 +344,7 @@ impl<'a> CertificateChainBuilder<'a> { previous_hash: "".to_string(), protocol_message, signed_message, - #[allow(deprecated)] metadata: CertificateMetadata { - immutable_file_number, protocol_parameters, ..base_certificate.metadata }, @@ -380,8 +377,6 @@ impl<'a> CertificateChainBuilder<'a> { certificate.metadata.protocol_parameters, certificate.metadata.network, certificate.epoch, - #[allow(deprecated)] - certificate.metadata.immutable_file_number, next_avk, genesis_signature, ) diff --git a/mithril-common/src/test_utils/fake_data.rs b/mithril-common/src/test_utils/fake_data.rs index 4f7ae052e29..31fbf29bb4c 100644 --- a/mithril-common/src/test_utils/fake_data.rs +++ b/mithril-common/src/test_utils/fake_data.rs @@ -142,7 +142,6 @@ pub fn certificate(certificate_hash: String) -> entities::Certificate { .with_timezone(&Utc); let metadata = CertificateMetadata::new( &beacon.network, - beacon.immutable_file_number, protocol_version, protocol_parameters, initiated_at, diff --git a/mithril-common/src/test_utils/mithril_fixture.rs b/mithril-common/src/test_utils/mithril_fixture.rs index cdbc177b607..f2b300077fd 100644 --- a/mithril-common/src/test_utils/mithril_fixture.rs +++ b/mithril-common/src/test_utils/mithril_fixture.rs @@ -14,8 +14,8 @@ use crate::{ ProtocolSignerVerificationKeySignature, ProtocolStakeDistribution, }, entities::{ - Certificate, Epoch, HexEncodedAggregateVerificationKey, ImmutableFileNumber, PartyId, - ProtocolParameters, Signer, SignerWithStake, SingleSignatures, Stake, StakeDistribution, + Certificate, Epoch, HexEncodedAggregateVerificationKey, PartyId, ProtocolParameters, + Signer, SignerWithStake, SingleSignatures, Stake, StakeDistribution, StakeDistributionParty, }, protocol::{SignerBuilder, ToMessage}, @@ -169,13 +169,11 @@ impl MithrilFixture { avk.to_json_hex().unwrap() } - era_deprecate!("Remove immutable_file_number"); /// Create a genesis certificate using the fixture signers for the given beacon pub fn create_genesis_certificate>( &self, network: T, epoch: Epoch, - immutable_file_number: ImmutableFileNumber, ) -> Certificate { let genesis_avk = self.compute_avk(); let genesis_signer = ProtocolGenesisSigner::create_deterministic_genesis_signer(); @@ -194,7 +192,6 @@ impl MithrilFixture { self.protocol_parameters.clone(), network, epoch, - immutable_file_number, genesis_avk, genesis_signature, ) diff --git a/mithril-test-lab/mithril-aggregator-fake/Cargo.toml b/mithril-test-lab/mithril-aggregator-fake/Cargo.toml index e9ae7d88cbc..72fb0b536bd 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.10" +version = "0.3.11" description = "Mithril Fake Aggregator for client testing" authors = { workspace = true } documentation = { workspace = true } 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 865cd3214ef..7e000581c99 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,122 +1,56 @@ [ { - "epoch": 61, - "hash": "d5954a1b69a070ec00f80b2f0de1ac254800a9b3f9cd6820280b214408f1faf0", - "certificate_hash": "f8ca3cf68c39f45c29d12e29c3642453ecffcb6d18bfcf5d559b915d8df8c07c", - "created_at": "2024-09-09T12:59:45.874287749Z" + "epoch": 20, + "hash": "d81afbeeb686fa6106ef15e28679ed90353c1f508954cc8a8f87a051b5cf82b0", + "certificate_hash": "e71776e71a6246fce8c1e8af66db2230ac27319a3332584f00d15cf318068577", + "created_at": "2024-10-28T13:28:51.961906251Z" }, { - "epoch": 59, - "hash": "dee9e530a862e818aeabd537c2b4c4a425fcb2dac32bb23356fdf1a338612c6b", - "certificate_hash": "c91269c75bd83e852f7fcb66496edab6e3e048933d14273c013d4d5b8585a250", - "created_at": "2024-09-09T12:59:40.097465599Z" + "epoch": 19, + "hash": "0eae1931908e7afee632d405a0918a1877ef9d19d5f940b6ee3e4b4f2ad85b31", + "certificate_hash": "85c0a33286e1c3d795bcf736ab5480cb37efb26a3158c40ceb78c786b113b3d3", + "created_at": "2024-10-28T13:28:48.987889041Z" }, { - "epoch": 58, - "hash": "1ebf09e41a6b30d21634a503fa5f2b3c1de310264cd1582da6e7e38f8b8dfab8", - "certificate_hash": "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198", - "created_at": "2024-09-09T12:59:37.898660025Z" + "epoch": 18, + "hash": "2ac7ce215d3a3ee7cf8f4d35aafa4355a12599375a57761e76025c8688e0ab17", + "certificate_hash": "40ba57e7b80bc3ea6b0c9e7f94e45c8c07fca2555e6f8f5c5a62d18f96f4e3cb", + "created_at": "2024-10-28T13:28:45.832348589Z" }, { - "epoch": 57, - "hash": "a7b2ef41d8505010ca0151b81c36d9cae76222cd97911732789520cb2a32369f", - "certificate_hash": "580dfde6fa34e3e902244f171bd0ca54b27c065d9dadbc95d4b2e2b19a73c07b", - "created_at": "2024-09-09T12:59:35.114359256Z" + "epoch": 17, + "hash": "67ae6d43955c2795b8bf4a5d9e1763a0bbd12d656c266c8652fce7c2c07787b7", + "certificate_hash": "dffe3153011c0dc7e4174c5d21b466237ee94ed0c0ff09883c6e82712ab2cd50", + "created_at": "2024-10-28T13:28:43.110518511Z" }, { - "epoch": 56, - "hash": "33f2c6706eccddc3c7ac6dcaf0f2d610e2fd1e04f78e1b951233c4195ac548e8", - "certificate_hash": "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba", - "created_at": "2024-09-09T12:59:32.016617846Z" + "epoch": 16, + "hash": "b3dc966be0fa22184582a492565a17b28d00d9f407c1aaaf306da9b66684a211", + "certificate_hash": "a01dd3ea16cfa2183dddc5ef039f360e11d6f02c592af030bb7f82a4e9c4bc13", + "created_at": "2024-10-28T13:28:39.867671549Z" }, { - "epoch": 55, - "hash": "300bffdd93bfacd0e0f298760e9fb7b76b1d074f20d4cc5e627f8a0061e9662a", - "certificate_hash": "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3", - "created_at": "2024-09-09T12:59:29.256953060Z" + "epoch": 15, + "hash": "87d4fdd4ddc7abb5e9319581734e6e5ae763de326c263a9599c5498ee802d00d", + "certificate_hash": "79a35c91533a06319bb4d3a19cd156a3c3550dac0d746e382916fcc18471f216", + "created_at": "2024-10-28T13:28:36.950475909Z" }, { - "epoch": 54, - "hash": "a01b12bac13e43d4c6fb6563bbfc64f8b25c3f7b292b226292c20075532d6012", - "certificate_hash": "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899", - "created_at": "2024-09-09T12:59:26.458700847Z" + "epoch": 14, + "hash": "5e041e228d109dd2c34d05ef1060d27921b66df440f84304311f5721ef0fa18f", + "certificate_hash": "804eb503576232119c5fb25d5fad134b0aa53d5424223905b8128a421be755b2", + "created_at": "2024-10-28T13:28:33.952646009Z" }, { - "epoch": 52, - "hash": "39a696b7f19e63d535ea669a9702a4c152011be31435daca9696fc1ad56f9c91", - "certificate_hash": "68c9cf54825d99e1c7911be12e2bc143a3e329ed1eb6a675f55cf02cd4c85606", - "created_at": "2024-09-09T12:59:20.814077733Z" + "epoch": 13, + "hash": "a42d8b2c5211179d895d7f6238b8b79a08c52b2754d607a150a1d54fbbac6906", + "certificate_hash": "906ce13dd79d7a17c8e242fa82357d11924d3cdd6522cd3fc2db812544e73e00", + "created_at": "2024-10-28T13:28:30.904094496Z" }, { - "epoch": 51, - "hash": "0feead0241acdd3f79d3b043260f172e5fd84d51fb89924f5c3936cbaf703551", - "certificate_hash": "1e68875bb54cf2cf9a0ab09110175f74bab04de7a30cd799f9990ccbf267652c", - "created_at": "2024-09-09T12:59:18.651134134Z" - }, - { - "epoch": 50, - "hash": "a1d0a7f4cc7398f11dc2a504fbddbf67913824e1f769ed2a217273281ca2ab3b", - "certificate_hash": "60c5889afc6018d707b2a38be399497c01b44e35f47a7ee257a8b7bb5406d82b", - "created_at": "2024-09-09T12:59:14.920245151Z" - }, - { - "epoch": 49, - "hash": "de07d4eb943580943b26f961264072322d70a7bbda01201de88b5b660e8de58b", - "certificate_hash": "8478f709685731ce68e1cca798087b397f34a2d6849c6aacee8de9d2477fcbf4", - "created_at": "2024-09-09T12:59:13.548293764Z" - }, - { - "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" + "epoch": 12, + "hash": "c35f9b56a001eb97ba78cfa28a5b9c81df65bb5f427b3881454f2260777a06db", + "certificate_hash": "748942b381bd0a55556397f84e4e69e0dace8f29288964f83d3cb382436f69f9", + "created_at": "2024-10-28T13:28:27.891908091Z" } ] 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 b858cf6cf7f..f78a0257491 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,222 +1,101 @@ { - "0feead0241acdd3f79d3b043260f172e5fd84d51fb89924f5c3936cbaf703551": { - "epoch": 51, - "hash": "0feead0241acdd3f79d3b043260f172e5fd84d51fb89924f5c3936cbaf703551", - "certificate_hash": "1e68875bb54cf2cf9a0ab09110175f74bab04de7a30cd799f9990ccbf267652c", + "0eae1931908e7afee632d405a0918a1877ef9d19d5f940b6ee3e4b4f2ad85b31": { + "epoch": 19, + "hash": "0eae1931908e7afee632d405a0918a1877ef9d19d5f940b6ee3e4b4f2ad85b31", + "certificate_hash": "85c0a33286e1c3d795bcf736ab5480cb37efb26a3158c40ceb78c786b113b3d3", "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx": 13333333334, + "pool1js94d2j3ny3yzu82k9gp4ya0crf3ds675k8q3779gmvv63jrmau": 13333333334, + "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8": 13333333334 }, - "created_at": "2024-09-09T12:59:18.651134134Z" + "created_at": "2024-10-28T13:28:48.987889041Z" }, - "13fda655189ca00c61994fcedfdcbcde8db8f907ca928ea87eaa868f8504edd6": { - "epoch": 44, - "hash": "13fda655189ca00c61994fcedfdcbcde8db8f907ca928ea87eaa868f8504edd6", - "certificate_hash": "f69d6cd98a633aa01bec877fa38a3023ba43b7e868f0ac4a5be370c9c2f9ac6c", + "2ac7ce215d3a3ee7cf8f4d35aafa4355a12599375a57761e76025c8688e0ab17": { + "epoch": 18, + "hash": "2ac7ce215d3a3ee7cf8f4d35aafa4355a12599375a57761e76025c8688e0ab17", + "certificate_hash": "40ba57e7b80bc3ea6b0c9e7f94e45c8c07fca2555e6f8f5c5a62d18f96f4e3cb", "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx": 13333333334, + "pool1js94d2j3ny3yzu82k9gp4ya0crf3ds675k8q3779gmvv63jrmau": 13333333334, + "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8": 13333333334 }, - "created_at": "2024-09-09T12:58:59.011007548Z" + "created_at": "2024-10-28T13:28:45.832348589Z" }, - "1ebf09e41a6b30d21634a503fa5f2b3c1de310264cd1582da6e7e38f8b8dfab8": { - "epoch": 58, - "hash": "1ebf09e41a6b30d21634a503fa5f2b3c1de310264cd1582da6e7e38f8b8dfab8", - "certificate_hash": "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198", + "5e041e228d109dd2c34d05ef1060d27921b66df440f84304311f5721ef0fa18f": { + "epoch": 14, + "hash": "5e041e228d109dd2c34d05ef1060d27921b66df440f84304311f5721ef0fa18f", + "certificate_hash": "804eb503576232119c5fb25d5fad134b0aa53d5424223905b8128a421be755b2", "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx": 13333333334, + "pool1js94d2j3ny3yzu82k9gp4ya0crf3ds675k8q3779gmvv63jrmau": 13333333334, + "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8": 13333333334 }, - "created_at": "2024-09-09T12:59:37.898660025Z" + "created_at": "2024-10-28T13:28:33.952646009Z" }, - "2d9190fb1339d89f4c2ed01f39c9e41af964a18aec45673dfe051ee97da52e31": { - "epoch": 48, - "hash": "2d9190fb1339d89f4c2ed01f39c9e41af964a18aec45673dfe051ee97da52e31", - "certificate_hash": "faaac20f065e09df16ce5699bfe553b142a21b37a7e7e1fd6d6e03d7c04f4f6c", + "67ae6d43955c2795b8bf4a5d9e1763a0bbd12d656c266c8652fce7c2c07787b7": { + "epoch": 17, + "hash": "67ae6d43955c2795b8bf4a5d9e1763a0bbd12d656c266c8652fce7c2c07787b7", + "certificate_hash": "dffe3153011c0dc7e4174c5d21b466237ee94ed0c0ff09883c6e82712ab2cd50", "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx": 13333333334, + "pool1js94d2j3ny3yzu82k9gp4ya0crf3ds675k8q3779gmvv63jrmau": 13333333334, + "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8": 13333333334 }, - "created_at": "2024-09-09T12:59:09.518805098Z" + "created_at": "2024-10-28T13:28:43.110518511Z" }, - "300bffdd93bfacd0e0f298760e9fb7b76b1d074f20d4cc5e627f8a0061e9662a": { - "epoch": 55, - "hash": "300bffdd93bfacd0e0f298760e9fb7b76b1d074f20d4cc5e627f8a0061e9662a", - "certificate_hash": "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3", + "87d4fdd4ddc7abb5e9319581734e6e5ae763de326c263a9599c5498ee802d00d": { + "epoch": 15, + "hash": "87d4fdd4ddc7abb5e9319581734e6e5ae763de326c263a9599c5498ee802d00d", + "certificate_hash": "79a35c91533a06319bb4d3a19cd156a3c3550dac0d746e382916fcc18471f216", "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx": 13333333334, + "pool1js94d2j3ny3yzu82k9gp4ya0crf3ds675k8q3779gmvv63jrmau": 13333333334, + "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8": 13333333334 }, - "created_at": "2024-09-09T12:59:29.256953060Z" + "created_at": "2024-10-28T13:28:36.950475909Z" }, - "33f2c6706eccddc3c7ac6dcaf0f2d610e2fd1e04f78e1b951233c4195ac548e8": { - "epoch": 56, - "hash": "33f2c6706eccddc3c7ac6dcaf0f2d610e2fd1e04f78e1b951233c4195ac548e8", - "certificate_hash": "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba", + "a42d8b2c5211179d895d7f6238b8b79a08c52b2754d607a150a1d54fbbac6906": { + "epoch": 13, + "hash": "a42d8b2c5211179d895d7f6238b8b79a08c52b2754d607a150a1d54fbbac6906", + "certificate_hash": "906ce13dd79d7a17c8e242fa82357d11924d3cdd6522cd3fc2db812544e73e00", "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx": 13333333334, + "pool1js94d2j3ny3yzu82k9gp4ya0crf3ds675k8q3779gmvv63jrmau": 13333333334, + "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8": 13333333334 }, - "created_at": "2024-09-09T12:59:32.016617846Z" + "created_at": "2024-10-28T13:28:30.904094496Z" }, - "39a696b7f19e63d535ea669a9702a4c152011be31435daca9696fc1ad56f9c91": { - "epoch": 52, - "hash": "39a696b7f19e63d535ea669a9702a4c152011be31435daca9696fc1ad56f9c91", - "certificate_hash": "68c9cf54825d99e1c7911be12e2bc143a3e329ed1eb6a675f55cf02cd4c85606", + "b3dc966be0fa22184582a492565a17b28d00d9f407c1aaaf306da9b66684a211": { + "epoch": 16, + "hash": "b3dc966be0fa22184582a492565a17b28d00d9f407c1aaaf306da9b66684a211", + "certificate_hash": "a01dd3ea16cfa2183dddc5ef039f360e11d6f02c592af030bb7f82a4e9c4bc13", "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx": 13333333334, + "pool1js94d2j3ny3yzu82k9gp4ya0crf3ds675k8q3779gmvv63jrmau": 13333333334, + "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8": 13333333334 }, - "created_at": "2024-09-09T12:59:20.814077733Z" + "created_at": "2024-10-28T13:28:39.867671549Z" }, - "79f134930c604dc2d2f316ef186cfe68573a682592c20c9e71566be4802798bc": { - "epoch": 40, - "hash": "79f134930c604dc2d2f316ef186cfe68573a682592c20c9e71566be4802798bc", - "certificate_hash": "90d3c928a0b60701b6aa6ea0e8aebb646ffefa587ac270b616fc3e3b8a16e441", + "c35f9b56a001eb97ba78cfa28a5b9c81df65bb5f427b3881454f2260777a06db": { + "epoch": 12, + "hash": "c35f9b56a001eb97ba78cfa28a5b9c81df65bb5f427b3881454f2260777a06db", + "certificate_hash": "748942b381bd0a55556397f84e4e69e0dace8f29288964f83d3cb382436f69f9", "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx": 13333333334, + "pool1js94d2j3ny3yzu82k9gp4ya0crf3ds675k8q3779gmvv63jrmau": 13333333334, + "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8": 13333333334 }, - "created_at": "2024-09-09T12:58:47.464325952Z" + "created_at": "2024-10-28T13:28:27.891908091Z" }, - "81a08315d612234f6b11ea54143cc9458e399aa8cf66d894a438f009e99d1a1e": { - "epoch": 43, - "hash": "81a08315d612234f6b11ea54143cc9458e399aa8cf66d894a438f009e99d1a1e", - "certificate_hash": "999060ce6efe54123b205e5fa74d312f9d1e9f3c9a4b8c12cc2747b0b6157486", + "d81afbeeb686fa6106ef15e28679ed90353c1f508954cc8a8f87a051b5cf82b0": { + "epoch": 20, + "hash": "d81afbeeb686fa6106ef15e28679ed90353c1f508954cc8a8f87a051b5cf82b0", + "certificate_hash": "e71776e71a6246fce8c1e8af66db2230ac27319a3332584f00d15cf318068577", "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 + "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx": 13333333334, + "pool1js94d2j3ny3yzu82k9gp4ya0crf3ds675k8q3779gmvv63jrmau": 13333333334, + "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8": 13333333334 }, - "created_at": "2024-09-09T12:58:55.710679858Z" - }, - "883101e95532ab70bea47fd97ac610efa2fdbdcca997df6f480d44990baac43a": { - "epoch": 42, - "hash": "883101e95532ab70bea47fd97ac610efa2fdbdcca997df6f480d44990baac43a", - "certificate_hash": "cc4765b54dcf37ac05024486215ed0aed871f88ce7c63e4de31087d39a3078bd", - "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 - }, - "created_at": "2024-09-09T12:58:52.796547346Z" - }, - "a01b12bac13e43d4c6fb6563bbfc64f8b25c3f7b292b226292c20075532d6012": { - "epoch": 54, - "hash": "a01b12bac13e43d4c6fb6563bbfc64f8b25c3f7b292b226292c20075532d6012", - "certificate_hash": "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899", - "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 - }, - "created_at": "2024-09-09T12:59:26.458700847Z" - }, - "a1d0a7f4cc7398f11dc2a504fbddbf67913824e1f769ed2a217273281ca2ab3b": { - "epoch": 50, - "hash": "a1d0a7f4cc7398f11dc2a504fbddbf67913824e1f769ed2a217273281ca2ab3b", - "certificate_hash": "60c5889afc6018d707b2a38be399497c01b44e35f47a7ee257a8b7bb5406d82b", - "stake_distribution": { - "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k": 13333333334, - "pool1qgztr453qmfktdjedl5a7e8tpsh4ug6hk7uf634me80lw4j6qme": 13333333334, - "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6": 13333333334 - }, - "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" + "created_at": "2024-10-28T13:28:51.961906251Z" } } 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 99c8dd8f562..4d1730dc6c1 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,13 @@ [ { - "hash": "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd", - "previous_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", - "epoch": 62, + "hash": "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353", + "previous_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "epoch": 21, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 - } - }, - "beacon": { - "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 + "CardanoTransactions": [ + 21, + 644 + ] }, "metadata": { "network": "devnet", @@ -23,30 +17,29 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:46.005464441Z", - "sealed_at": "2024-09-09T12:59:46.394168003Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:52.650312343Z", + "sealed_at": "2024-10-28T13:28:52.788444007Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "644" } }, - "signed_message": "d9a54b252d48861c9838b418f86f23f67dd0bcd8bb305ec6f8be226cf80a3aca", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "1a159e5ed1fdecf50beb35905d39646eb41f364ba987a0b6037fc6743c9b2d57", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "f8ca3cf68c39f45c29d12e29c3642453ecffcb6d18bfcf5d559b915d8df8c07c", - "previous_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", - "epoch": 62, + "hash": "037f344049193bdc1d21598fb300bc834ee1f1f24cf0137832815942d73e50a4", + "previous_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "epoch": 21, "signed_entity_type": { - "CardanoStakeDistribution": 61 - }, - "beacon": { - "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 + "CardanoTransactions": [ + 21, + 629 + ] }, "metadata": { "network": "devnet", @@ -56,31 +49,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:45.470454219Z", - "sealed_at": "2024-09-09T12:59:45.865126929Z", + "initiated_at": "2024-10-28T13:28:52.362334428Z", + "sealed_at": "2024-10-28T13:28:52.502546015Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "61", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "629" } }, - "signed_message": "7a47525577d16881e5cb0fd80d50552caef7eb980095ba25ecee6f2b8b485ee4", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "5a67113988dd3a807b0a47b537440d9537cc0418e14e9842d8a593b6ddd771d4", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", - "previous_hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", - "epoch": 62, + "hash": "35c39f4532f0f6e1b0e10662a020c013a09dceeffbd7c9ded04865c5a6fcde6e", + "previous_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "epoch": 21, "signed_entity_type": { - "MithrilStakeDistribution": 62 - }, - "beacon": { - "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 21, + "immutable_file_number": 5 + } }, "metadata": { "network": "devnet", @@ -90,29 +82,25 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:45.188270492Z", - "sealed_at": "2024-09-09T12:59:45.331998182Z", + "initiated_at": "2024-10-28T13:28:52.088944243Z", + "sealed_at": "2024-10-28T13:28:52.222147738Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "ca925854ef40f628fe7d8bf6efdb70e3c6b5314fa00b8d34ff697d241e682de4", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "207cd61b42ef511abac11f5462c81dd3d16461015d7cc729b2e8ea682a1fd0ed", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "63ab1752cb04ac2626d830c5e1d5718abc64e3297eb6ccfa2211895f5f4ba5eb", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", - "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", - "epoch": 61, + "hash": "e71776e71a6246fce8c1e8af66db2230ac27319a3332584f00d15cf318068577", + "previous_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "epoch": 21, "signed_entity_type": { - "MithrilStakeDistribution": 61 - }, - "beacon": { - "network": "devnet", - "epoch": 61, - "immutable_file_number": 20 + "CardanoStakeDistribution": 20 }, "metadata": { "network": "devnet", @@ -122,33 +110,26 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:42.858335072Z", - "sealed_at": "2024-09-09T12:59:44.546445986Z", + "initiated_at": "2024-10-28T13:28:51.826333953Z", + "sealed_at": "2024-10-28T13:28:51.958931360Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "20", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "c7956a0623f530cd736e51ef05978d405d39ecfe7256f3f8e5c3118c2040b9a9", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "45d9d32911bbabadb0fb4d67b30e1640da19c878c52f9494f9a00346c6b5f20b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "72624ce84ca83b2a92eafa1a4956d38c61306a1108f85e30e1c836747ff29aa0", - "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", - "epoch": 60, + "hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 21, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 60, - "immutable_file_number": 20 - } - }, - "beacon": { - "network": "devnet", - "epoch": 60, - "immutable_file_number": 20 + "MithrilStakeDistribution": 21 }, "metadata": { "network": "devnet", @@ -158,30 +139,27 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:40.228503717Z", - "sealed_at": "2024-09-09T12:59:40.491353044Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:51.420155979Z", + "sealed_at": "2024-10-28T13:28:51.686388142Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "09b1889a7ccde96b5e6b543ad8ca4cbcde8503b240079b68e92d498da15ce352", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "b24f84a8201413d910f748fb3faaecbdbfc9c3bff92ad27bbe2a00634d44a963", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "c91269c75bd83e852f7fcb66496edab6e3e048933d14273c013d4d5b8585a250", - "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", - "epoch": 60, + "hash": "98e6bd1f4b686061f52630af55e5599fc41bdf1908795bd3729e5bafeaa5a2c5", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 20, "signed_entity_type": { - "CardanoStakeDistribution": 59 - }, - "beacon": { - "network": "devnet", - "epoch": 60, - "immutable_file_number": 20 + "CardanoTransactions": [ + 20, + 614 + ] }, "metadata": { "network": "devnet", @@ -191,31 +169,29 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:39.826587150Z", - "sealed_at": "2024-09-09T12:59:40.089570533Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:49.644817984Z", + "sealed_at": "2024-10-28T13:28:49.777323120Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "59", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "614" } }, - "signed_message": "45c85f91d536390a50baeea352f745e174b3ec43403252d9ffad1a924b6ec525", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "64fe76c8a7f36acee8602ff135f3b563d0523f9758c815105340b6b148232ec0", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", - "previous_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", - "epoch": 60, + "hash": "d0aa596e8f31857d769a38511adfbadb12d31129c92212ef2029f82010584715", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 20, "signed_entity_type": { - "MithrilStakeDistribution": 60 - }, - "beacon": { - "network": "devnet", - "epoch": 60, - "immutable_file_number": 19 + "CardanoTransactions": [ + 20, + 599 + ] }, "metadata": { "network": "devnet", @@ -225,29 +201,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:39.556574352Z", - "sealed_at": "2024-09-09T12:59:39.691261261Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:49.379087940Z", + "sealed_at": "2024-10-28T13:28:49.511809574Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "599" } }, - "signed_message": "3d2930126f7ee6f7cc6070383ca4df669a206614cddfa53de0b7d0b0145dde80", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "bd967dd0428d2b8fc0f12d20f398ecf5c04d0037979e9dc02db560d9cbd4d377", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198", - "previous_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", - "epoch": 59, + "hash": "2f738b4a5410ff27cab3fbc01be205ecb7b1cefb77da4bdcfebb2d926a7c69e6", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 20, "signed_entity_type": { - "CardanoStakeDistribution": 58 - }, - "beacon": { - "network": "devnet", - "epoch": 59, - "immutable_file_number": 19 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 20, + "immutable_file_number": 5 + } }, "metadata": { "network": "devnet", @@ -257,31 +234,25 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:37.348435710Z", - "sealed_at": "2024-09-09T12:59:37.889760383Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:49.115484679Z", + "sealed_at": "2024-10-28T13:28:49.246561020Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "58", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "snapshot_digest": "5101fe07050f6df7c7f28d7068505302a4b52b3cce2a2a1ecc5bcb81965670cb", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0119fb3a1218f13d9a41c969c2496753b6840008fc59103a8cb9e84505bc346f", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "cf8de7d796cfac566bb2f0ba9c077040dc5cb8d110a29201f7a11cc2393ef67b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", - "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "epoch": 59, + "hash": "85c0a33286e1c3d795bcf736ab5480cb37efb26a3158c40ceb78c786b113b3d3", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 20, "signed_entity_type": { - "MithrilStakeDistribution": 59 - }, - "beacon": { - "network": "devnet", - "epoch": 59, - "immutable_file_number": 19 + "CardanoStakeDistribution": 19 }, "metadata": { "network": "devnet", @@ -291,33 +262,26 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:36.822017929Z", - "sealed_at": "2024-09-09T12:59:37.210902199Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:48.851836432Z", + "sealed_at": "2024-10-28T13:28:48.983646727Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "19", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "a91356ddf5bc6ce62e589dc002611d6265d5e21b77f513d6eb343b11fc78bb33", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "55e948e62be41771360da16a3688b822582ac653ecc8d82b51e4edf4a989de40", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "e339157f5c81d34c325de0205a8a59dec30bc502978c8b4fb3c658ccedcbfae1", - "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "epoch": 58, + "hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 20, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 58, - "immutable_file_number": 19 - } - }, - "beacon": { - "network": "devnet", - "epoch": 58, - "immutable_file_number": 19 + "MithrilStakeDistribution": 20 }, "metadata": { "network": "devnet", @@ -327,30 +291,27 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:35.252443732Z", - "sealed_at": "2024-09-09T12:59:35.770979814Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:48.439348899Z", + "sealed_at": "2024-10-28T13:28:48.719150498Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "fdfa5ebd1cf0394d0e923ae8a5b323525b287ed0f35044953004c33bd3b8ad32", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "b891149e8c17aa5092aa8fb1fc508bb99dc74247f70712497e64f2b61e70f429", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "580dfde6fa34e3e902244f171bd0ca54b27c065d9dadbc95d4b2e2b19a73c07b", - "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "epoch": 58, + "hash": "28ecdde5aab11c32f140ac7aa5ce498d5c6f2642d27499cbfc0425efa925ca24", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 19, "signed_entity_type": { - "CardanoStakeDistribution": 57 - }, - "beacon": { - "network": "devnet", - "epoch": 58, - "immutable_file_number": 19 + "CardanoTransactions": [ + 19, + 584 + ] }, "metadata": { "network": "devnet", @@ -360,31 +321,29 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:34.586494806Z", - "sealed_at": "2024-09-09T12:59:35.106621586Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:46.656129001Z", + "sealed_at": "2024-10-28T13:28:46.796553821Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "57", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "584" } }, - "signed_message": "ba5279894984d07dcc36a893ffdc82f90b0229e262f725f87cbb90f1dbab210e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "03515fc49689c15959189078c00396ad825e4b92714bcb4b70f6b061d8438f64", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", - "epoch": 58, + "hash": "f729911e69d46a4e3b70bb454f6c3c3c94717db9651b1dd32d85bba53437b25d", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 19, "signed_entity_type": { - "MithrilStakeDistribution": 58 - }, - "beacon": { - "network": "devnet", - "epoch": 58, - "immutable_file_number": 19 + "CardanoTransactions": [ + 19, + 569 + ] }, "metadata": { "network": "devnet", @@ -394,34 +353,31 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:34.179510423Z", - "sealed_at": "2024-09-09T12:59:34.440408302Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:46.232735259Z", + "sealed_at": "2024-10-28T13:28:46.372307887Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "569" } }, - "signed_message": "8f26762f6d7837fcbde247e21112c2ad5309965c35ba102067cb6da1c0698764", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "ee5cd2c4971b162f5484d0aeb11fbf93a6f2a643e71e5a47ed13810926136e57", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90", - "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", - "epoch": 57, + "hash": "82c068ffafeed2ee77fb322d82ad2409dbe0491ace919ecf2e0d489d608fe0fa", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 19, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 57, - "immutable_file_number": 19 + "epoch": 19, + "immutable_file_number": 4 } }, - "beacon": { - "network": "devnet", - "epoch": 57, - "immutable_file_number": 19 - }, "metadata": { "network": "devnet", "version": "0.1.0", @@ -430,30 +386,25 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:32.153098137Z", - "sealed_at": "2024-09-09T12:59:32.547820554Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:45.963940462Z", + "sealed_at": "2024-10-28T13:28:46.097631755Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "4d7499fa55843554dea614b9d9d3c24cf4803cfb31e351df5f85d27727114287", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "38a27a1eee8e0186a4a9bb6ec086a455b2edfa434527c27a1199c8fcceeffcdb", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "134db34bdd3062f3e515b81c11c3ac10977a243a1d60484492264a137319e528", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba", - "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", - "epoch": 57, + "hash": "40ba57e7b80bc3ea6b0c9e7f94e45c8c07fca2555e6f8f5c5a62d18f96f4e3cb", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 19, "signed_entity_type": { - "CardanoStakeDistribution": 56 - }, - "beacon": { - "network": "devnet", - "epoch": 57, - "immutable_file_number": 19 + "CardanoStakeDistribution": 18 }, "metadata": { "network": "devnet", @@ -463,31 +414,26 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:31.617098551Z", - "sealed_at": "2024-09-09T12:59:32.008270516Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:45.698793941Z", + "sealed_at": "2024-10-28T13:28:45.829006358Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "56", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "18", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "1f3dcf4c57bf79e291f21af4413e399e1a5fc108ecee3ac6526ea020e9279171", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "3fa560c26618c6ce8cb9ac84ed98ed677d84702222eab4736943a7137024bf48", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", - "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", - "epoch": 57, + "hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "previous_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "epoch": 19, "signed_entity_type": { - "MithrilStakeDistribution": 57 - }, - "beacon": { - "network": "devnet", - "epoch": 57, - "immutable_file_number": 18 + "MithrilStakeDistribution": 19 }, "metadata": { "network": "devnet", @@ -497,33 +443,27 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:31.089963428Z", - "sealed_at": "2024-09-09T12:59:31.478907862Z", + "initiated_at": "2024-10-28T13:28:45.437737468Z", + "sealed_at": "2024-10-28T13:28:45.569199840Z", "total_signers": 1 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0671b0b9dc2f5f3cec9a253fd40246361dbc1180e03bc78da4e47f9b3ef2c1c2", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "e9f91de4f211cc7e1a7d125df27a543dd9787c642ac58c31017f0961c12bdfd2", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9", - "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", - "epoch": 56, + "hash": "9ec669a7f796b9111cbc2ee1bfa48fe5fa11a4d31765d3d11a6fda26fb81372c", + "previous_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "epoch": 18, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 56, - "immutable_file_number": 18 - } - }, - "beacon": { - "network": "devnet", - "epoch": 56, - "immutable_file_number": 18 + "CardanoTransactions": [ + 18, + 554 + ] }, "metadata": { "network": "devnet", @@ -533,30 +473,30 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:29.386268509Z", - "sealed_at": "2024-09-09T12:59:29.909816033Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:43.785529254Z", + "sealed_at": "2024-10-28T13:28:43.924131045Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "554" } }, - "signed_message": "4b8f5d360e448ba376fab4563bd57d49c707617a382fc16f2fd5e30ea6a761de", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "0067f8810530c25cc17cde10daa22151a8c37d42cac0cf3cdb2515c450370714", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3", - "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", - "epoch": 56, + "hash": "cc0600f2560620b0eb81f650307db1e556d090d74683377fa768a4ce9534f172", + "previous_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "epoch": 18, "signed_entity_type": { - "CardanoStakeDistribution": 55 - }, - "beacon": { - "network": "devnet", - "epoch": 56, - "immutable_file_number": 18 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 18, + "immutable_file_number": 4 + } }, "metadata": { "network": "devnet", @@ -566,31 +506,25 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:28.854422087Z", - "sealed_at": "2024-09-09T12:59:29.244804372Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:43.238346695Z", + "sealed_at": "2024-10-28T13:28:43.379472402Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "55", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "snapshot_digest": "a1a6a5cdd1936a6a65d71972f87e00e5f2e820b1b7be4b44b39981d03f274298", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "926d1ad43ec2151d7954d1eac9590143f741a60d1e721aee550d53310d699d33", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "a0fe68fbb7b57140bfacababf916e6462ddfd100e5d41fcacb4b49358e2625af", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", - "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", - "epoch": 56, + "hash": "dffe3153011c0dc7e4174c5d21b466237ee94ed0c0ff09883c6e82712ab2cd50", + "previous_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "epoch": 18, "signed_entity_type": { - "MithrilStakeDistribution": 56 - }, - "beacon": { - "network": "devnet", - "epoch": 56, - "immutable_file_number": 18 + "CardanoStakeDistribution": 17 }, "metadata": { "network": "devnet", @@ -600,33 +534,26 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:28.327599145Z", - "sealed_at": "2024-09-09T12:59:28.717577603Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:42.968842068Z", + "sealed_at": "2024-10-28T13:28:43.107970259Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "17", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "e489bfc55493fff216a2515158e999757a9a196190caaf2c151f279352965cc6", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "daadf4ef8775b99e5f278e8a49c643e29135476ef082f30bf9914bd56286f894", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b", - "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", - "epoch": 55, + "hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "previous_hash": "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac", + "epoch": 18, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 55, - "immutable_file_number": 18 - } - }, - "beacon": { - "network": "devnet", - "epoch": 55, - "immutable_file_number": 18 + "MithrilStakeDistribution": 18 }, "metadata": { "network": "devnet", @@ -636,30 +563,27 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:26.588899743Z", - "sealed_at": "2024-09-09T12:59:27.118499316Z", + "initiated_at": "2024-10-28T13:28:42.432316349Z", + "sealed_at": "2024-10-28T13:28:42.831792696Z", "total_signers": 2 }, "protocol_message": { "message_parts": { - "snapshot_digest": "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "df267af69f18c03266bf982897f5076123a3df8d00a9f7b5a583e4d6f82bf089", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "a0bc2a4867ca1f46e77b4195a7e0fd34837cbc464be5ad4961b3341c85fe347d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" }, { - "hash": "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899", - "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", - "epoch": 55, + "hash": "23e0b34c799e2bfdd76829410a13688fcbaa3103af0dcbf85749bd9fa28cb897", + "previous_hash": "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac", + "epoch": 17, "signed_entity_type": { - "CardanoStakeDistribution": 54 - }, - "beacon": { - "network": "devnet", - "epoch": 55, - "immutable_file_number": 18 + "CardanoTransactions": [ + 17, + 524 + ] }, "metadata": { "network": "devnet", @@ -669,18 +593,18 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:26.057930060Z", - "sealed_at": "2024-09-09T12:59:26.450883680Z", - "total_signers": 1 + "initiated_at": "2024-10-28T13:28:40.669653869Z", + "sealed_at": "2024-10-28T13:28:40.803224013Z", + "total_signers": 2 }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "54", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "524" } }, - "signed_message": "8a5226ef12d80a9688ad399672faeae667b965c7ef165f288cd9b973159d19e3", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "signed_message": "61968f98d66ba5ab2f4b83f05e2fa952e536f13853bba60f4058137423e7c0eb", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137392c3137382c37322c3230342c35352c3132302c3138332c3133392c3232372c32352c322c3130322c3232352c3136362c36302c3234342c35342c32322c3231342c3133342c3132372c3135362c35312c3231342c3136372c3138392c36362c3234322c3137302c3139362c3233372c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } ] 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 e8b0eac8202..7f913d2a658 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,14 @@ { - "01879078eded273b160b566424fab3b78c56cebcd4d0653148cf6ab60ee54b72": { - "hash": "01879078eded273b160b566424fab3b78c56cebcd4d0653148cf6ab60ee54b72", - "previous_hash": "e1bddee89293b9d7b73c7b07a2ae3d131a6b8c3aa0ac5354e02a6679bcca7353", - "epoch": 24, + "01c70d17b667f80a974f93212cd089fa26fc441b1b1efb1141923de7e8ab35a6": { + "hash": "01c70d17b667f80a974f93212cd089fa26fc441b1b1efb1141923de7e8ab35a6", + "previous_hash": "f96feaa24deeb05e86e1c75cf50a0947a0924ed213f0609907681ff6e7132d29", + "epoch": 14, "signed_entity_type": { - "MithrilStakeDistribution": 24 - }, - "beacon": { - "network": "devnet", - "epoch": 24, - "immutable_file_number": 7 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 14, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -19,44 +18,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:57:58.600595063Z", - "sealed_at": "2024-09-09T12:57:59.256154661Z", + "initiated_at": "2024-10-28T13:28:31.032236412Z", + "sealed_at": "2024-10-28T13:28:31.167845158Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3233332c3230392c3139352c3136372c3234342c32312c31372c39302c3131372c35382c34342c3135332c38362c3139362c38392c3232302c3130352c3230352c3232322c35382c3231362c3131342c3136332c3232382c37392c3231342c3135302c38372c3233392c38372c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "abdd1efee8695698bd6f158cd624b8fdfe2d748195486b82edf977e7010c0e68", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c3136332c3132322c3135302c3139392c3137302c3132372c3138342c3138382c35312c3130332c36382c37372c3130312c3234302c39362c38372c3139312c35342c3232362c36342c3130302c37362c3231322c3233312c31352c35342c3135332c3230362c3233382c3130382c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "b36d4aaa7281d1b40c250ea0244ae83923cfb7a0ae37c269ef10a550e847f987", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3136392c34302c32362c32372c3139352c3139332c3138312c36352c37322c3234392c3139362c36392c34362c3233382c31312c3233302c3230302c302c38312c34372c3233392c3232332c35312c35372c34372c3130362c32392c3131312c3134372c3131322c3135335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137392c3134322c31312c3139302c3132392c3235302c3138342c36372c33312c34352c3231392c38392c3138302c3137362c33312c3230312c3131382c3137312c3233392c35312c36352c3233352c32352c3131352c32332c392c33312c3139332c34382c3231372c3232382c322c3138342c3130382c3232332c3234382c3137332c33372c3130342c3138322c3138382c3231302c382c3133302c3138302c36352c3134372c3234305d2c22696e6465786573223a5b302c312c31302c31392c32392c33312c34322c34342c34362c35312c37322c37372c38302c38332c3130335d2c227369676e65725f696e646578223a307d2c5b5b3137332c36382c3136342c37372c392c3231312c3233322c3136362c3232302c34352c32302c3230342c3138382c33382c3233362c332c3234342c3130352c3139362c3138322c3131392c3233392c3233322c3136392c3135372c3231352c3138332c3230332c3233372c3138392c3130342c39332c3131322c382c3134332c3231332c3130302c39312c35362c3137382c37302c38372c34382c39332c3130392c3135322c3231322c3131372c31362c39372c35342c302c39312c36392c36312c3136322c3231332c33362c37382c3230332c36342c38362c3232392c3137302c3234372c33332c3133352c3133312c372c3133372c3231322c3230342c36312c31352c3130312c3232372c37352c39342c3230312c342c3130362c3131362c3136332c34322c38392c3232302c322c3132342c3137392c3135332c3134362c39352c3135392c3136332c35352c3139305d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3132382c31322c3233382c3136332c3135302c33342c32332c3139302c392c3235322c38312c3234372c37322c3232322c362c3234382c3132352c36392c3139302c3232362c3135382c37352c3138342c31372c3232302c3136342c3133342c3232392c3130342c3135352c3138352c3132352c3132312c3138322c3232322c31392c3135322c3139332c36382c33322c3135352c332c3234362c3131352c37362c38342c3130312c35315d2c22696e6465786573223a5b322c342c362c372c382c392c31312c31322c31342c31352c31362c31372c31382c32302c32312c32322c32332c32342c32362c32372c32382c33302c33322c33332c33342c33352c33362c33372c33392c34302c34312c34332c34352c34372c34382c34392c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37332c37342c37352c37382c37392c38312c38322c38342c38352c38362c38372c38382c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138352c3135382c332c3134392c322c3138392c3134392c3132312c3234362c3232302c3137352c3139322c3130362c35302c33332c3233392c37392c3135312c322c33302c3233382c31332c36352c36362c322c33362c3137362c34342c3133372c31322c3235352c3137352c3232342c3135392c362c34382c37322c39362c37342c38362c3133332c362c3134332c35392c3136302c3230372c33392c34392c382c352c36382c3135302c3131382c3138342c31382c32362c3230302c3130372c34382c34392c372c3135372c3132382c3130312c3231342c31362c372c3139342c362c3132392c3232322c39382c3230362c3230322c3136322c3232372c342c3130332c3133372c3231332c3233322c3130392c3233352c3131372c3139312c3131352c3231322c3138342c34382c3134302c3137372c32342c3134352c3234312c3134312c3138335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "f1ebee7b51478144191958bb7bf5df33a3b8417b63c10968bcaf0cc80721094d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38342c33332c31392c31332c3233362c3133352c3135332c3233372c3138382c3136302c37322c35362c3231302c38382c3230372c3131382c3138372c34372c3139322c3136342c3135322c37342c3133302c39322c3234392c3134342c38342c3234322c3233372c3231362c3132332c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c37352c32372c3231302c3131302c3136332c3132352c3232352c38302c3234382c3131312c3231302c36342c3232372c31322c38352c3134322c3132302c39382c3232382c32372c3134372c3132352c33382c3139312c38372c39352c3136332c3138322c32362c36372c33372c3139382c3135342c3231362c3231382c36372c39362c3136352c3234362c3234392c3132362c34342c36362c3233342c3135392c362c3231315d2c22696e6465786573223a5b302c312c332c342c382c392c31302c31312c31322c31332c31352c31372c31382c32302c32312c32322c32332c32342c32352c32382c32392c33302c33312c33352c33362c33382c33392c34302c34312c34322c34332c34342c34362c34372c34392c35302c35312c35322c35332c35352c35372c35392c36302c36332c36352c36372c36382c36392c37312c37322c37332c37342c37352c37382c37392c38302c38312c38322c38342c38352c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3138322c37372c32362c39302c3231302c3233352c3131332c3231352c3138382c33332c35372c3134352c39332c36342c3134392c3135352c3132302c37392c3134352c35342c37392c3230352c39372c3230332c3233372c3133302c3231382c3137382c31302c3134332c3136322c3132392c3136392c3137312c3230362c38352c3235332c34382c36322c38352c39332c39372c3231352c3233392c3135362c3135312c3138332c38332c31392c37382c3234302c33352c3231392c3135322c34352c3134382c3136392c3138382c3133362c3132382c3139362c3234382c392c34322c3138352c35312c31392c38332c3133312c37312c3138382c3131302c35302c3233372c3136312c3232352c3231352c3137352c3234392c33312c3134382c3139362c3132352c3136342c32322c3134362c392c35332c31352c36302c3234392c39302c3130352c342c332c3137325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39392c3136342c3235332c3134312c3138392c3134302c352c36342c3232382c39372c39372c31372c35312c32362c3136342c31322c33302c39382c3135342c3139312c372c3137332c39302c35362c38312c3130362c3134352c3234302c34362c31362c38332c33345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd": { - "hash": "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd", - "previous_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", - "epoch": 62, + "037f344049193bdc1d21598fb300bc834ee1f1f24cf0137832815942d73e50a4": { + "hash": "037f344049193bdc1d21598fb300bc834ee1f1f24cf0137832815942d73e50a4", + "previous_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "epoch": 21, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 - } - }, - "beacon": { - "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 + "CardanoTransactions": [ + 21, + 629 + ] }, "metadata": { "network": "devnet", @@ -66,37 +60,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:46.005464441Z", - "sealed_at": "2024-09-09T12:59:46.394168003Z", + "initiated_at": "2024-10-28T13:28:52.362334428Z", + "sealed_at": "2024-10-28T13:28:52.502546015Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "629" } }, - "signed_message": "d9a54b252d48861c9838b418f86f23f67dd0bcd8bb305ec6f8be226cf80a3aca", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134312c322c38352c3135312c3133352c39312c3134372c3135342c3133352c34372c3133362c3230382c36332c312c3230382c3138362c31302c33392c3139312c3137322c38302c3138382c3134312c33392c3133322c3230362c3139322c3235332c37332c34322c3139322c33342c3134302c38342c3231312c3232352c3131302c3133382c3235332c3132362c3132332c3232332c37332c302c3232362c37392c3132382c3139375d2c22696e6465786573223a5b302c312c322c342c362c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33392c34312c34322c34332c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36312c36352c36372c36382c37302c37312c37332c37342c37352c37362c37372c37382c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c322c35312c37362c3233342c37312c3131302c3133382c3234312c3232392c37362c3234372c362c3136362c3234372c3130352c3135382c39322c36392c31312c3234382c3138322c33332c32372c3133372c3136362c3232352c3230312c3135362c3234372c3230312c3138372c3138372c3133312c36362c3131342c3230372c3234322c36392c3130372c3231332c35302c3233342c35382c32392c3233382c362c31332c31342c3138352c35382c3139382c33312c3134372c3232312c33332c3232322c33342c37362c3230302c3133332c3233312c3232372c32332c352c3139312c3139372c35302c38312c3235302c37302c3137382c3136382c3139332c3232382c3134352c3134372c3135322c3136322c3130322c3136322c3234352c3231302c3230392c38392c3132352c3136342c3230332c32362c37372c37362c3130342c35312c3131382c34362c34395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c33322c3136342c32362c38362c3134322c33392c3232382c35322c39312c36352c3130382c3230322c35372c32382c3134312c3130392c38352c3138382c362c3232332c3136352c3139352c38302c3135332c31342c37362c3133362c33352c3136302c3230382c33365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "5a67113988dd3a807b0a47b537440d9537cc0418e14e9842d8a593b6ddd771d4", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133312c3131372c3231352c342c3230372c3138322c3234372c3234312c32362c3233352c34362c33352c3232362c39342c34332c3130372c3232362c3139342c3138332c3138322c3132382c3230362c3235302c33382c3234302c3235302c3233392c36322c3231342c3130332c31322c3130332c35362c3231382c3131352c3135392c3233332c32392c3139372c3136322c3130362c3139362c332c3232302c3131342c38352c39362c3232325d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c31312c31322c31332c31352c31362c31382c31392c32302c32322c32342c32352c32372c32392c33302c33312c33332c33342c33352c33362c33372c34312c34342c34352c34362c34382c34392c35322c35342c35352c35362c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37322c37332c37352c37372c37382c38302c38312c38342c38352c38362c38372c38382c39302c39312c39322c39332c39342c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3134322c33302c342c35312c3134382c3130302c36382c312c3232382c3138332c3234312c3230332c34312c37372c3233332c3137382c3139372c35302c33332c382c3139372c34362c3235352c372c3131322c3138392c3139362c3137332c3130392c33352c3232302c31372c3139372c3136352c3130352c3132372c37392c34382c3232382c32372c33312c37352c3235312c35392c3231382c3138342c3136312c362c32302c35372c3136322c3134342c36352c31342c37322c3233312c35362c352c3139302c3137342c3231302c3132312c3138312c3136362c36312c3232362c3231372c3230372c31332c3133312c3135332c352c3234352c3132382c3230342c35332c3233322c3130302c31382c3230332c3139322c3135342c3133332c3133332c342c33392c33362c3132342c3235342c3137352c38342c32302c3131322c3138382c37302c37315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34322c342c37392c3137392c3136362c3137392c3130342c39342c3234342c35332c3131372c33362c36312c3139322c37382c36372c3232312c3130392c35342c3135322c38302c3136312c3131362c33322c3131362c302c3232302c3136312c3139382c3137332c3230372c3135385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "05d19d2376a82b913641d4b7fe833934f8a63cb7f99625901c3f32cf3d4c45f4": { - "hash": "05d19d2376a82b913641d4b7fe833934f8a63cb7f99625901c3f32cf3d4c45f4", - "previous_hash": "01879078eded273b160b566424fab3b78c56cebcd4d0653148cf6ab60ee54b72", - "epoch": 25, + "10bfe43e3035e9d8885d31c8defdae33595f82bcedd2da7d11011a186e39d285": { + "hash": "10bfe43e3035e9d8885d31c8defdae33595f82bcedd2da7d11011a186e39d285", + "previous_hash": "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac", + "epoch": 17, "signed_entity_type": { - "MithrilStakeDistribution": 25 - }, - "beacon": { - "network": "devnet", - "epoch": 25, - "immutable_file_number": 7 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 17, + "immutable_file_number": 4 + } }, "metadata": { "network": "devnet", @@ -106,44 +104,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:01.604479269Z", - "sealed_at": "2024-09-09T12:58:01.999691175Z", + "initiated_at": "2024-10-28T13:28:39.995676408Z", + "sealed_at": "2024-10-28T13:28:40.127691079Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c36382c39352c39382c3134362c3132362c3131372c3139332c3132352c3131342c34322c3135372c36322c332c3135322c32372c38362c3230372c3132342c382c3130372c312c39312c32322c33382c3130352c33352c3233372c3136372c3138372c3234392c3130325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "f4b07b98825949542ee84fac7e60f10e0ddac2c4d576cec81b4633171d9638b2", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "279aaaf273884044a0785b8e82a732ae167ffb93efc81d904517d164adade3fd", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130372c3233332c3230392c3139352c3136372c3234342c32312c31372c39302c3131372c35382c34342c3135332c38362c3139362c38392c3232302c3130352c3230352c3232322c35382c3231362c3131342c3136332c3232382c37392c3231342c3135302c38372c3233392c38372c3136335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133312c3230312c38302c3230392c3132342c3133312c39392c3136362c37382c3136322c3138362c32372c3231392c34352c32382c3136342c39352c3139312c3134302c3133372c3135372c36332c312c39392c3234372c38352c31372c3131302c382c3135352c3234352c38322c3234322c36312c3130362c3234332c3133332c3232352c3137372c3136322c3133382c36352c3230312c392c3133332c31392c3234302c31345d2c22696e6465786573223a5b302c312c322c332c342c362c382c392c31302c31322c31342c31352c31362c31372c31382c32302c32312c32322c32342c32352c32372c32382c32392c33302c33322c33332c33342c33352c33362c33382c33392c34302c34312c34322c34342c34352c34362c34372c34392c35302c35312c35322c35332c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36372c36382c37302c37312c37322c37342c37372c37382c37392c38312c38322c38332c38342c38352c38362c38392c39302c39322c39342c39352c39362c39372c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c3232392c38332c3138382c3233392c3132312c3139392c3233362c35352c3130342c3133372c3233322c3134312c39362c3137372c3233332c3131312c32372c3131362c34392c3131372c3234382c3134372c3131352c3138322c31382c3137352c3233392c3138352c33342c3231332c3134302c3136322c34352c3235342c37362c33372c39352c3137302c38352c3139302c33342c35352c3234312c3139312c32322c3132312c3233352c31352c3136352c39372c37332c33312c3235302c39342c3137302c3137332c3232352c3134342c3131392c38372c3231392c36362c3133392c32332c3133322c35352c382c3134302c36302c3135332c3231352c3233322c3235342c322c36302c37372c3234302c3138352c3131322c33392c32332c3234352c3230372c3230392c31372c34312c36302c3233342c3230372c34362c3138302c3233392c3137372c38342c3233385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137372c3136362c32342c3235312c3135382c3231352c37362c32302c36332c37382c38352c3136322c36332c35302c3230362c31322c3233352c33312c32382c3139312c3139382c38392c3133312c39312c38352c3138362c36302c34362c31352c3232392c3135342c3135325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "091e8911d773a337097a6543942e68db9c7421d867bf3c37eb1968d463a27a85", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137392c3137382c37322c3230342c35352c3132302c3138332c3133392c3232372c32352c322c3130322c3232352c3136362c36302c3234342c35342c32322c3231342c3133342c3132372c3135362c35312c3231342c3136372c3138392c36362c3234322c3137302c3139362c3233372c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134392c38312c3234322c36352c3131342c3135362c3231372c3135332c3232372c31392c37322c3234352c3232382c3134312c3134302c342c3137332c3138312c34312c39372c3131342c372c3233342c36332c37342c302c3130372c3136332c3136312c3230382c33312c37302c3232302c31372c34392c37332c38382c3130362c33322c3139392c32302c33362c34352c3133362c31362c3233362c3138322c36335d2c22696e6465786573223a5b302c312c322c342c352c382c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32312c32322c32342c32352c32372c32382c33302c33332c33342c33352c33362c33382c33392c34302c34312c34322c34342c34362c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c36302c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37322c37332c37342c37352c37362c37382c38302c38322c38332c38342c38352c38362c38382c38392c39302c39312c39322c39332c39352c39372c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138312c3230352c34362c3137332c3136302c3134342c3133392c3230302c37352c36372c31322c3138312c3230352c34352c3232332c33312c3231332c3136352c35302c3232342c3137352c3130372c35302c31322c3137302c3137342c37312c3233372c3135332c31342c3138302c3233312c34372c3231332c3137312c3130342c3230372c3139322c39352c3137322c3137322c3137372c36382c3133362c3233382c3134322c32352c3137312c352c32372c3135322c3133312c3139382c382c3231322c3135322c3230302c3135372c3230302c37392c3137312c38332c3135312c31362c3230312c38382c34392c3132342c3139332c34322c302c31362c3135392c3139332c3131312c3135322c3135352c3233342c35352c37342c3232362c33362c3231322c3231382c3231322c3234332c3132392c3130392c3133382c3133382c3138322c38382c3230312c3137362c31302c335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132392c3130372c382c3232352c3232372c38392c3132352c3135362c3135302c312c35312c3233322c3231382c342c34322c3233322c3133342c3134362c3130302c3136372c3138362c3232302c3135392c3135332c35382c3137362c3233392c3232362c33372c3136302c362c38355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "06b4bf0a413b8f066c82b6d1cece32dcd843a03133c1d0d224f70ef67787174a": { - "hash": "06b4bf0a413b8f066c82b6d1cece32dcd843a03133c1d0d224f70ef67787174a", - "previous_hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", - "epoch": 45, + "23e0b34c799e2bfdd76829410a13688fcbaa3103af0dcbf85749bd9fa28cb897": { + "hash": "23e0b34c799e2bfdd76829410a13688fcbaa3103af0dcbf85749bd9fa28cb897", + "previous_hash": "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac", + "epoch": 17, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 45, - "immutable_file_number": 14 - } - }, - "beacon": { - "network": "devnet", - "epoch": 45, - "immutable_file_number": 14 + "CardanoTransactions": [ + 17, + 524 + ] }, "metadata": { "network": "devnet", @@ -153,37 +146,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:59.140763303Z", - "sealed_at": "2024-09-09T12:58:59.401787519Z", + "initiated_at": "2024-10-28T13:28:40.669653869Z", + "sealed_at": "2024-10-28T13:28:40.803224013Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "stake": 13333333334 + }, + { + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "524" } }, - "signed_message": "32ead639d50fcef83d620f4f30a173e2f451675db04c8e104a1af746de2156a4", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137332c3130382c37382c3230302c3130392c32372c3139372c35362c3138372c3230302c34302c3131372c3138302c3232392c3139312c3130372c3230322c3135382c34332c34312c37332c3230302c3134342c3136302c3131302c3139322c3138372c32372c3135302c33372c3131382c34342c3131392c33312c3230332c3231352c3133312c3134392c31362c3137302c3133332c3136322c3231312c35332c3136372c36302c3231322c3131365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31342c31382c31392c32312c32322c32332c32342c32362c32372c32382c33312c33322c33332c33342c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35312c35322c35332c35342c35352c35362c35372c36302c36332c36342c36352c36372c36382c36392c37312c37332c37352c37362c38302c38312c38322c38332c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135322c3231352c3231302c3231382c3136312c37302c3136352c3132352c3136382c3234342c3134322c3137382c3133302c3134382c3132302c36382c3230352c3230382c3234302c3134312c3232362c3132372c3231342c3130342c3133302c3230332c39382c3230332c33352c3132312c31392c31342c3138352c3232332c37312c3135302c3131392c39352c3135342c39382c3137392c3130362c3233332c36332c39372c3133302c38302c3130362c352c3233382c31342c36312c36362c32302c3139302c37352c3234312c3133302c38322c3136362c3133302c312c3135302c3230342c35332c35332c3135332c3137372c33312c31342c34332c3130362c3235332c392c3130372c3138352c3136352c3231332c3139382c33322c3233372c3232342c35392c34302c3134392c38342c3230312c3131342c3132392c3234392c32372c36362c34372c3131332c3235352c3233355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c34332c3130372c36322c39332c3134322c3137332c3138342c3138302c3132332c3133392c36392c33382c3137372c3134302c3134342c35322c3135312c35332c31372c3133322c39382c3231322c3230372c3139332c3132312c312c32342c33322c31342c3139332c3234345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "61968f98d66ba5ab2f4b83f05e2fa952e536f13853bba60f4058137423e7c0eb", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137392c3137382c37322c3230342c35352c3132302c3138332c3133392c3232372c32352c322c3130322c3232352c3136362c36302c3234342c35342c32322c3231342c3133342c3132372c3135362c35312c3231342c3136372c3138392c36362c3234322c3137302c3139362c3233372c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137352c31332c35352c3230322c3134312c36352c3232382c38312c32372c31352c3230372c362c3231302c3132322c3133332c3139312c3131342c3139392c3135362c36332c38302c3234382c3234372c3133372c3135332c34352c3234382c3234382c36352c31302c3130352c3135312c3234392c31332c3231372c3131322c3135392c3131342c32312c35322c33382c3234372c37352c32322c3139342c31372c3136352c34305d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c392c31302c31322c31332c31342c31352c31382c31392c32302c32312c32332c32352c32362c32372c32382c33302c33322c33342c33352c33362c33372c33392c34302c34312c34322c34332c34342c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35372c35392c36302c36322c36332c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138312c3230352c34362c3137332c3136302c3134342c3133392c3230302c37352c36372c31322c3138312c3230352c34352c3232332c33312c3231332c3136352c35302c3232342c3137352c3130372c35302c31322c3137302c3137342c37312c3233372c3135332c31342c3138302c3233312c34372c3231332c3137312c3130342c3230372c3139322c39352c3137322c3137322c3137372c36382c3133362c3233382c3134322c32352c3137312c352c32372c3135322c3133312c3139382c382c3231322c3135322c3230302c3135372c3230302c37392c3137312c38332c3135312c31362c3230312c38382c34392c3132342c3139332c34322c302c31362c3135392c3139332c3131312c3135322c3135352c3233342c35352c37342c3232362c33362c3231322c3231382c3231322c3234332c3132392c3130392c3133382c3133382c3138322c38382c3230312c3137362c31302c335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132392c3130372c382c3232352c3232372c38392c3132352c3135362c3135302c312c35312c3233322c3231382c342c34322c3233322c3133342c3134362c3130302c3136372c3138362c3232302c3135392c3135332c35382c3137362c3233392c3232362c33372c3136302c362c38355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "0b751dba41d63a0771578176044df8634418c6ef06eff541c9d87b1ec5fc7e6b": { - "hash": "0b751dba41d63a0771578176044df8634418c6ef06eff541c9d87b1ec5fc7e6b", - "previous_hash": "a25e25fe1e22b13420b390233d763008a0ed390616a295c170a8fbb65202f0c7", - "epoch": 39, + "28ecdde5aab11c32f140ac7aa5ce498d5c6f2642d27499cbfc0425efa925ca24": { + "hash": "28ecdde5aab11c32f140ac7aa5ce498d5c6f2642d27499cbfc0425efa925ca24", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 19, "signed_entity_type": { - "MithrilStakeDistribution": 39 - }, - "beacon": { - "network": "devnet", - "epoch": 39, - "immutable_file_number": 12 + "CardanoTransactions": [ + 19, + 584 + ] }, "metadata": { "network": "devnet", @@ -193,40 +189,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:40.704229604Z", - "sealed_at": "2024-09-09T12:58:41.609533457Z", + "initiated_at": "2024-10-28T13:28:46.656129001Z", + "sealed_at": "2024-10-28T13:28:46.796553821Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233352c3133362c37322c37312c3234342c3130342c3130382c3137322c3138392c36302c37342c3132342c3235332c3230382c35312c3138302c342c3133352c382c3134362c3130312c3138312c3131362c3232382c3130342c3139372c3136392c3139312c3136362c35342c36332c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "584" } }, - "signed_message": "f101b0d8acb35c6bedf8aca03a63188d9a4764c4c776c4da3f0b24e0af8e2e47", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139322c3131372c3234382c342c3235302c3137302c3139352c31382c33342c33342c3230342c3132302c3235332c37352c3230392c34332c3232322c35392c3232332c3138312c3230342c3232382c3137322c31372c3231382c38332c3130392c36322c3235302c37382c352c35305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136372c3235332c3133392c3232332c31342c31312c352c33302c3234372c3231332c3233342c3231302c3234332c33322c3232352c3136302c33362c39372c3137312c37322c3130392c3235332c3235352c3136392c3136392c3234312c3135322c36342c38332c3231342c37312c3131372c3130312c3136392c3139382c35352c39372c35392c3137362c3232392c34302c3232322c3133342c3139352c3138322c3135332c3233342c3134325d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32362c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c34302c34322c34332c34362c34372c34382c34392c35302c35312c35322c35332c35352c35372c35382c35392c36312c36332c36342c36352c36362c36372c36382c36392c37312c37332c37342c37352c37362c37372c37382c37392c38312c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130302c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133362c35312c3138302c3139332c382c3231332c33332c33362c3135342c3230382c38372c36312c3134312c3233312c32302c3232372c3138352c3234382c36332c3131382c37382c38342c3230342c36332c32322c33322c3232362c3131312c35332c35392c3136392c3230362c32382c3230392c3135302c38372c3230392c33352c35322c36382c3136392c38362c3235342c33352c3232362c3139312c3131322c32312c32322c3137372c3133362c38382c3135382c3131382c3133352c35392c3233362c3230362c32392c342c33362c3139392c3134342c37352c3139372c3232362c3139312c32392c3133362c36372c3132322c37342c3135332c3136372c3135322c34332c34392c3139382c3135362c34392c3230382c3134312c3137362c3139382c3235312c3134302c3234392c3138342c31392c3131342c38302c3138322c39372c31332c3231342c36375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232362c3130312c302c382c3232342c3231312c3132322c34352c3230392c3135372c37352c342c3136382c3130372c3235322c392c3230392c3133382c3130342c3235312c3232342c3130372c3235342c3139322c3135362c37332c3139302c33352c38342c332c3233392c3139365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "03515fc49689c15959189078c00396ad825e4b92714bcb4b70f6b061d8438f64", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137362c332c3133322c3231302c352c3232302c31392c3133342c39312c3135312c3234322c3135352c3131342c3137372c3130372c3234312c37382c3234382c3235302c3134382c3134382c3234302c3130392c3132312c31342c3131372c3231392c3232382c3139382c3234302c3133352c3232362c3139392c3230362c3139342c3132382c34342c382c32312c3230372c3134392c3133382c38342c3235312c3135322c3137392c31372c3132365d2c22696e6465786573223a5b302c322c362c31372c32302c32332c32362c33332c34382c36302c36392c37332c38302c38372c38392c39372c39392c3130312c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133382c372c3133392c3135342c3136382c3130342c3232372c32332c3130312c35322c3231352c3135382c36372c38382c3136322c34322c33342c3233392c3134382c38302c3137372c33302c3139342c33332c36352c3232322c3230382c3234312c32302c3138342c3135322c3134352c35322c3134392c3132312c3232382c392c36342c392c362c33342c3132302c39362c3234372c3232392c3130382c332c3136352c31362c3132382c35342c37312c38352c3235312c3134302c34372c38322c372c3131382c3135312c3234342c3232312c382c3132322c3234342c31372c31302c3135392c3139382c3230382c3233342c3134382c312c32342c36332c3132322c3130312c3138312c32392c3132352c3232362c3234322c38302c3231332c32392c37302c3137302c3139372c3137362c35392c3139362c37322c31392c3135382c3131302c32325d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3135312c3233372c33342c3138372c34352c37312c37362c3230362c3130382c3134392c37382c32362c3132342c32382c3135362c3231392c3134392c3133372c3134372c3132392c3231352c37382c3134382c3130372c362c3136302c39302c39342c3138312c3233382c37362c3231362c3234312c3232372c3131312c3133392c36392c3138342c32352c3231352c3235342c3136372c38302c3230382c3233392c3131372c3231322c3234315d2c22696e6465786573223a5b312c332c342c352c382c392c31312c31322c31332c31342c31352c31362c31382c32312c32322c32342c32352c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34312c34322c34332c34342c34352c34362c34372c34392c35302c35312c35322c35332c35342c35362c35372c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c37302c37312c37342c37352c37362c37372c37382c38312c38322c38332c38342c38362c38382c39302c39312c39322c39332c39342c39352c39362c39382c3130302c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135322c39362c3139392c34302c3138382c3231332c39302c3138372c35362c34322c3134392c3134392c3139382c3138302c3139392c3136332c3132302c34332c3131392c3230312c3230372c3139372c3135312c3132362c3130382c36352c3133372c3135372c3133392c39312c3131322c39382c3136382c3135322c3134332c3137382c3131382c38382c34302c3232352c3137372c3139302c3234322c36312c3133382c3131302c31362c3131332c32352c3232342c3131372c31322c34302c3233382c3230312c33342c3130332c3231322c3137312c3133312c34372c3137392c36302c3131372c39352c35342c31342c3235312c3230362c3234362c3233322c34362c3133382c392c34372c39312c3133372c34392c3139372c31342c3137322c3136362c3230372c39312c33382c37312c36312c3234332c31352c39372c3133332c3233322c3136362c36312c382c3132395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899": { - "hash": "0d514b2058da12ddc59bb43df71bc9b371155da387d57203281079995f92b899", - "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", - "epoch": 55, + "2a7846f91bc724e8474db3afffb307fc15a023d3d83b50afbcbf4028873a016d": { + "hash": "2a7846f91bc724e8474db3afffb307fc15a023d3d83b50afbcbf4028873a016d", + "previous_hash": "a17056bc0845e01638d5152b4e47f46e56d74ff4d150cafe2b7b9d2807396f23", + "epoch": 16, "signed_entity_type": { - "CardanoStakeDistribution": 54 - }, - "beacon": { - "network": "devnet", - "epoch": 55, - "immutable_file_number": 18 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 16, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -236,38 +233,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:26.057930060Z", - "sealed_at": "2024-09-09T12:59:26.450883680Z", + "initiated_at": "2024-10-28T13:28:37.082305567Z", + "sealed_at": "2024-10-28T13:28:37.220769453Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "stake": 13333333334 + }, + { + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "54", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "snapshot_digest": "21920b421518d155359096327741a29d132ab281c263816349f11c36320873ca", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137392c3137382c37322c3230342c35352c3132302c3138332c3133392c3232372c32352c322c3130322c3232352c3136362c36302c3234342c35342c32322c3231342c3133342c3132372c3135362c35312c3231342c3136372c3138392c36362c3234322c3137302c3139362c3233372c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "8a5226ef12d80a9688ad399672faeae667b965c7ef165f288cd9b973159d19e3", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3139332c35352c34302c34392c33362c3231392c3233382c3139372c38382c31332c372c34322c39322c38382c3133302c3235312c33372c37312c32342c36392c3138382c3235312c36302c3132362c31392c39322c3235322c3133322c32322c3233362c3231302c3133352c3138382c32302c3233372c32322c3137312c3132342c33392c3235332c3135372c32382c3131392c3137362c3138352c3137382c3133345d2c22696e6465786573223a5b302c312c322c332c362c382c392c31302c31312c31322c31332c31352c31372c31392c32302c32312c32322c32332c32342c32352c32392c33302c33322c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35322c35332c35342c35352c35372c35382c36302c36312c36332c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38382c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134302c36382c3138392c3139322c3235302c3131382c3133302c3130322c3132342c352c3131352c37322c36352c3132382c3130342c3235312c33352c3130322c3233382c3231312c3136352c3137332c3135352c3134332c3231302c37392c3136322c3139312c3131302c34332c3232392c3135302c3138362c32302c3232342c39392c3139372c34352c34332c352c36342c32392c3131382c3139322c39382c33302c36342c3132352c382c32362c33352c35342c3134312c3136382c31392c3232342c36342c3131302c3233372c31342c34342c34312c34362c3130302c3133392c3135392c3135352c34372c352c3235332c3231322c39312c35302c3134392c32332c3231332c36302c3133392c3137322c382c3230352c37382c3234362c3234362c3138342c3133342c3137392c32382c37312c3231372c3134322c3137332c3233392c34302c322c3136395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234342c3139312c39362c342c3132392c36332c302c31322c3139312c34392c3230342c37382c3136332c3231372c3131352c3130312c3138302c3135302c3234372c36352c3130372c36342c3234312c33332c3132302c3134352c3134312c31322c38352c392c3131342c3233325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "116c8f2de352c662af10a1a5569deb2e3fa4cbfb6ef493c4151908542c0c333f", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133382c3231332c3232362c3137372c38342c3132332c37392c3134362c33302c3136352c37392c38312c3138392c37372c3137392c3131312c3235332c3131322c3130342c35352c3234372c3231362c3133302c31372c37372c342c3134312c3234382c38362c38392c3133352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133332c36322c3138302c36372c3235322c3233352c3133322c3132362c33352c3233322c3137392c3138372c33382c3234302c35332c3138332c3137392c34342c392c3232342c3132372c35342c3234382c3138392c3130332c31332c3137362c3136392c36382c3134362c3234362c3139302c34342c3132372c3232372c3232302c34332c38342c3135352c3233352c39342c3130352c3136302c32302c39312c3131382c3134362c3230385d2c22696e6465786573223a5b312c322c342c352c362c372c382c392c31302c31312c31322c31342c31362c31372c31392c32302c32312c32332c32342c32362c32372c32382c33302c33312c33322c33332c33352c33362c33372c33382c33392c34302c34312c34322c34342c34352c34362c34382c34392c35302c35312c35342c36302c36312c36322c36332c36342c36352c36372c36382c36392c37322c37332c37352c37362c37372c37382c38312c38322c38332c38342c38362c38382c38392c39302c39312c39332c39342c39352c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136322c3136312c35382c3234382c332c3235332c3132352c36342c3136352c36302c3132362c36322c3138392c34392c3134372c3231332c31312c3135322c3139352c3139342c3232392c3131372c37372c37332c3231362c31332c32382c362c3132322c3231322c3137302c3233302c3233392c38382c3132362c36342c34332c34322c3137312c3231342c382c3231382c36302c32352c3132322c3136322c3234352c3135322c32332c3138382c37342c3234322c3232302c31302c3231352c3134392c3136352c3234342c342c3232322c32382c33352c3138362c352c3132332c32332c3130352c3138332c3233382c3132372c33352c3139332c38372c3233312c3234372c38372c3134342c38352c36312c32342c342c3231382c34302c3233392c34362c38302c3131382c3130302c3230362c3137362c3130362c31322c39382c37332c3233392c3138375d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3136392c31322c3135352c3136342c35382c3132332c3136392c3139342c36312c3234332c3131342c3234332c312c3136302c3133302c3232342c3134332c39302c3130312c37302c3234302c3230372c3133382c3132352c3231392c33332c3130342c37312c33382c35312c39332c39352c36372c3134372c37302c3136372c3139302c38362c3235352c3130322c3231372c3231342c3231322c38362c37392c3232332c3137312c36385d2c22696e6465786573223a5b302c332c31332c31352c31382c32322c32352c33342c34332c34372c35322c35332c35352c35372c35382c36362c37302c37312c37342c37392c38352c39362c3130325d2c227369676e65725f696e646578223a317d2c5b5b3137342c3132312c39382c3138332c3133342c3232302c3139392c3230312c3136362c3136302c3139372c3132372c3233312c3133322c3133352c3139382c3230372c3134332c3137382c3133392c3138352c39352c3232372c35302c3132372c35322c3137312c3139342c37302c3232372c3130342c3131382c3234382c3133372c36302c3133332c34362c39382c3133372c3133342c3139332c3135372c35322c32362c31342c3234302c34362c37392c332c372c3137322c342c3139322c3135312c3131322c3230352c3135332c34352c3232312c3131312c3137382c3134302c33302c3232392c37392c3232372c37322c35332c31392c3233372c3231312c3133332c38392c3233392c3234322c36302c3230352c34302c34342c38302c3133302c36382c3234352c3231382c3231372c34372c39372c3134322c3138392c382c32372c3137362c34312c36382c3131382c3131305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "0df5f7ffabd82b31942966f6f496059483caf8dfe889d36137a81cf19b205315": { - "hash": "0df5f7ffabd82b31942966f6f496059483caf8dfe889d36137a81cf19b205315", - "previous_hash": "e1deb3c58329743012c1e944a5f6931af79a4fd9eef212e00b1a4a0e48466736", - "epoch": 13, + "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353": { + "hash": "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353", + "previous_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "epoch": 21, "signed_entity_type": { - "MithrilStakeDistribution": 13 - }, - "beacon": { - "network": "devnet", - "epoch": 13, - "immutable_file_number": 3 + "CardanoTransactions": [ + 21, + 644 + ] }, "metadata": { "network": "devnet", @@ -277,36 +275,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:57:27.836820179Z", - "sealed_at": "2024-09-09T12:57:28.228212611Z", + "initiated_at": "2024-10-28T13:28:52.650312343Z", + "sealed_at": "2024-10-28T13:28:52.788444007Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b36382c3134362c33302c36382c3133372c31342c3234342c3131312c39332c3231382c37362c3135302c3233322c3231392c3235312c3234332c37302c37312c3132372c3132392c3232392c39382c31362c36312c392c3132312c3233372c3231382c3232312c3231382c3132342c38395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "644" } }, - "signed_message": "98498c1c3be19d41326fbbeb534f515c2e394ef7966b78ef3c7690b728b3384b", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3235312c3138332c39302c34322c3130362c3134322c3232382c3232392c34332c3135382c34312c36322c39362c3230392c3231372c3139332c3231352c36342c3234312c39382c3134362c3131352c31332c3233352c37392c3233332c3234312c3136362c3138342c3134332c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136392c3135392c32332c3138332c3235322c3131382c3133362c32352c3232332c3133302c3133352c32312c3233322c3136302c3138322c32322c36362c3134372c37312c31302c3135392c3130352c36342c3138372c37372c342c3138372c38362c3232372c3231332c3232372c3138352c3137302c3132362c3230392c3230392c32362c33322c39342c302c3234392c31372c3231342c342c3137312c34302c3135392c3234355d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31392c32302c32312c32322c32332c32352c32362c32372c32392c33322c33332c33342c33352c33362c33372c33382c34302c34312c34332c34352c34362c34372c34392c35302c35312c35322c35342c35352c35362c35372c35382c35392c36312c36332c36342c36352c36362c36382c36392c37302c37312c37322c37342c37352c37372c37392c38302c38312c38332c38342c38352c38362c38372c38382c39302c39312c39322c39352c39382c39392c3130302c3130315d2c227369676e65725f696e646578223a307d2c5b5b3134322c3135382c3233382c3131372c3133352c3231392c3230372c3130302c3234302c3134302c3138352c3138362c36302c3230342c37312c3133352c3230392c34312c32392c39342c38332c39382c3132302c3131382c36382c3137352c3135362c392c3131352c3139382c3130352c3135392c3134302c36372c3233362c3135302c38342c3135372c3232382c3230362c3132312c3136352c35362c3234332c3139392c3231342c3233352c38322c31372c31392c34372c36342c3230362c322c35352c3134322c392c3136362c3135322c36382c38352c3230312c3138392c3134312c34392c37342c3135362c3130392c36382c3230372c3230362c362c3130362c3231302c3132372c35372c38372c342c3233372c3133302c33332c32362c3136372c3232372c3134362c33362c33392c3137382c35322c36342c33352c33322c31332c322c37302c3139375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b372c39362c36352c3138392c3230372c3233382c3138342c3136352c35342c32372c3132342c3230322c36392c31382c3131392c3232322c39312c32302c3130392c3133392c3137372c3138382c38302c3233302c36392c3230352c3232362c362c35342c312c39312c3233335d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "1a159e5ed1fdecf50beb35905d39646eb41f364ba987a0b6037fc6743c9b2d57", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136342c34352c3230382c37302c34312c34302c31322c3138352c3139382c38322c3132342c3131352c3136332c35372c37352c3136372c39302c3138352c312c3231352c3235352c38372c33302c36392c3232342c3135372c3133362c3130362c3138382c33332c31312c33372c3134312c34392c3138332c32332c31352c3133312c3131382c3230362c3134302c3231362c392c39312c37302c3132382c31362c3232335d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31322c31332c31342c31352c31372c31382c31392c32302c32332c32342c32352c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34352c34362c34392c35302c35312c35322c35332c35352c35362c35382c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37352c37362c37392c38312c38342c38352c38362c38372c38392c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134322c32312c3130312c36372c3136342c34332c38352c34312c35352c3230362c3234342c36372c31312c3230312c3137352c31302c32322c3131312c3230322c3230302c33322c3232322c3231322c3136312c3138382c3138302c36372c3131362c3234352c34312c36352c3230312c36302c34362c3233352c3231392c382c3231372c35302c3137332c3231392c3139352c3138372c31312c3134332c3135362c3232302c39332c31312c3230322c3135372c34312c3137342c3135332c3232392c3231372c32322c32332c322c35352c34302c312c33302c3130332c3233372c3130332c3139362c3235342c32312c3132372c38332c33302c3132312c38382c35312c3131352c3139382c35342c3230312c39332c3139362c3137372c3231382c36362c38342c3137392c38322c3231372c37322c36302c3131302c34382c3133362c3235332c31302c3130385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37392c3132302c3231332c35372c3139382c3137352c3136302c33302c3231362c3138392c3234322c3139312c34332c39312c3135322c3130312c3231312c37392c39372c3231312c3234312c3137312c3231342c3130392c3234332c36332c38332c33372c3233302c3235322c32382c32395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "101b59eb719edf64156551ea64817b68c7a65dd78a276682ab2451da0481d749": { - "hash": "101b59eb719edf64156551ea64817b68c7a65dd78a276682ab2451da0481d749", - "previous_hash": "d7e1b05877169e5b12f35ad217e74190e4e435d53c353803fb7a6053c09b5e85", - "epoch": 19, + "2f738b4a5410ff27cab3fbc01be205ecb7b1cefb77da4bdcfebb2d926a7c69e6": { + "hash": "2f738b4a5410ff27cab3fbc01be205ecb7b1cefb77da4bdcfebb2d926a7c69e6", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 20, "signed_entity_type": { - "MithrilStakeDistribution": 19 - }, - "beacon": { - "network": "devnet", - "epoch": 19, - "immutable_file_number": 5 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 20, + "immutable_file_number": 5 + } }, "metadata": { "network": "devnet", @@ -316,40 +319,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:57:44.567591774Z", - "sealed_at": "2024-09-09T12:57:45.092589489Z", + "initiated_at": "2024-10-28T13:28:49.115484679Z", + "sealed_at": "2024-10-28T13:28:49.246561020Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31332c3234322c3230322c3134352c35352c34372c3133332c3130392c32392c35392c3232302c3136352c3132312c33342c3130372c3234372c3136312c3137342c3130372c38382c3132322c31372c3136362c3137332c34312c3235352c3234382c37372c3130362c3135362c3231362c36365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "5101fe07050f6df7c7f28d7068505302a4b52b3cce2a2a1ecc5bcb81965670cb", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "e68f461a84a8329c95c28912b7e05e3eb67d82f696f066922d5998d22fb0e92b", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133302c3133332c3230382c35372c3130372c3130312c3232312c3233312c3139322c3234332c3131312c32372c352c31392c36372c33342c32362c3232332c3234322c3231342c39332c36332c3135312c3132382c3137392c36342c34382c33362c3137362c3135322c3234312c3134325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c3139332c36322c3232302c3138302c39302c3136342c34352c3136312c3135322c3235352c3232322c3233382c3130332c3131382c3139382c3234342c35342c3230332c3231312c3233352c3133322c3131352c3232372c3135302c32372c36372c37392c3130302c3131352c3231382c3137312c31312c32362c3134392c3235312c3139392c3233302c3135372c33362c31362c3232302c3234342c3232302c3139372c342c36312c3230315d2c22696e6465786573223a5b302c312c322c332c342c352c392c31302c31312c31322c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c33302c33322c33332c33352c33362c33392c34302c34312c34322c34332c34342c34352c34362c34382c34392c35312c35322c35352c35362c35372c36312c36322c36342c36352c36362c36372c36392c37312c37342c37362c37372c37382c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133342c3230322c3135382c3130362c312c3231372c3230312c3235342c3235342c3233322c3133302c35372c3133302c3132352c352c3139382c3230302c3230372c3230382c3130332c3132332c38302c34332c34332c36382c3231392c39302c35302c3138302c3233372c35372c3232362c3231302c3134332c3139352c3139312c3230392c31312c3130392c36342c3136342c3130372c33362c3235332c3139312c3131332c3233352c38392c31362c37352c35352c3132342c302c3131302c32372c37332c3137372c3231372c3131302c3235332c3231372c32302c3231392c3130322c3136392c3135362c3131382c3130392c3132362c3139342c3132302c3132352c36372c3230362c36362c3234322c322c39312c3131302c3230352c3138332c3130382c3135342c36372c3232342c3137332c3233362c3136332c37352c3230322c3230312c3132322c33382c31342c32312c35325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35392c3130362c3230372c36322c392c3232372c3131372c32372c3136372c3130302c34352c3230332c3232302c3133392c32352c36302c35362c37352c3134382c37332c39372c37322c3230352c3234362c38322c3138312c3133312c3139392c3131342c3130312c3137392c3130335d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "cf8de7d796cfac566bb2f0ba9c077040dc5cb8d110a29201f7a11cc2393ef67b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134392c34322c3138342c3136362c34372c39372c3132342c36332c33322c3230332c3138302c3139332c3234322c3132382c39322c3137332c3139342c3232322c31332c31322c35372c3231312c3233342c3234392c39372c3134372c3134362c302c3138312c39342c37312c36332c3232362c3135302c35332c38362c3232342c3134302c3134352c3231382c362c3135352c3130372c3231352c3131392c31382c3231392c39325d2c22696e6465786573223a5b302c322c332c342c362c372c31302c31312c31322c31352c31362c31372c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33322c33332c33342c33362c33382c33392c34302c34312c34322c34332c34342c34352c34372c35302c35312c35332c35342c35352c35372c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38312c38322c38332c38362c38382c38392c39302c39322c39332c39352c39382c39392c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137302c39322c38352c31392c3138302c3132362c37342c3235322c39332c3133372c3137322c3131372c3232392c3233302c3232342c3132322c3137342c35392c35312c3232362c3134362c3233342c3136392c33352c3133352c3232332c3138382c3230312c3234352c3139362c35372c3131322c3136392c39322c3137312c33372c3135302c3233302c3233392c3138342c3131392c3132332c3235312c37352c33382c3134322c3135372c38362c32322c33362c3232362c37312c3138342c3233312c3132302c3132352c39372c3138382c39372c32322c3138362c3230352c3131302c37342c3135342c3135332c33312c3139392c3234302c3230362c34392c31322c35332c31342c31352c3130352c3136312c3135322c3133352c3132322c3230362c3235342c3136322c3138392c3132362c35362c3130312c3231362c32372c3132312c3130312c3138392c3232382c32302c3132332c3136345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135372c38342c32372c38322c3130392c32332c3232322c3139342c3130332c33302c3134352c3233352c35382c37382c3134372c3230322c3130342c32332c3131312c32342c3234342c3231332c3135382c3137302c34302c39362c342c3131352c3138372c3136362c3234382c3134375d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "11a168fe6f5b95fbd27e84d4484c8f8a3e3cbd60945cf15e0b379a24d531e5d2": { - "hash": "11a168fe6f5b95fbd27e84d4484c8f8a3e3cbd60945cf15e0b379a24d531e5d2", - "previous_hash": "20ba8fe4767689217045e8e58fc3b30051abc5725d6e18548c679788109ca86b", - "epoch": 30, + "35c39f4532f0f6e1b0e10662a020c013a09dceeffbd7c9ded04865c5a6fcde6e": { + "hash": "35c39f4532f0f6e1b0e10662a020c013a09dceeffbd7c9ded04865c5a6fcde6e", + "previous_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "epoch": 21, "signed_entity_type": { - "MithrilStakeDistribution": 30 - }, - "beacon": { - "network": "devnet", - "epoch": 30, - "immutable_file_number": 9 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 21, + "immutable_file_number": 5 + } }, "metadata": { "network": "devnet", @@ -359,40 +362,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:15.423505209Z", - "sealed_at": "2024-09-09T12:58:15.817324520Z", + "initiated_at": "2024-10-28T13:28:52.088944243Z", + "sealed_at": "2024-10-28T13:28:52.222147738Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34382c38352c3233362c3134332c3134322c3133312c31322c372c36342c3135312c3131352c3231372c3235332c34342c3135392c35372c35382c32372c3131312c3131322c3131302c32362c37372c3233332c3135332c3135352c31382c33302c38362c3235322c3134352c3137325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "ca925854ef40f628fe7d8bf6efdb70e3c6b5314fa00b8d34ff697d241e682de4", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "e6a11a8fb5ff84b8b6dd399dca7d3d08e68f092b5fe9c5f11d455406b907edb3", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37302c3233302c3136342c31302c3234302c3235332c3131362c36302c38372c39332c3231382c31302c34322c3230302c31302c322c3133392c34382c382c3136322c37342c37332c3135382c39342c39382c3134352c3133332c35362c3136362c3130302c302c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133352c33322c34372c3138382c3130332c3233302c3231382c36302c3134342c3131302c3132312c3133362c3139352c34332c3137322c38382c3137392c33312c37312c33352c35382c3137392c3132352c3231332c352c322c37312c3136392c3134312c35362c3131382c3231372c3130392c3234392c3235342c3136392c35382c37352c3132312c31352c3233312c3137382c3132332c3131332c32372c3134352c31302c3130315d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31342c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33382c34302c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c36302c36312c36332c36342c36352c36362c36372c36382c36392c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38372c38382c38392c39302c39322c39332c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135322c38332c32342c37342c3231382c32332c31382c3131362c39302c3232372c36392c3232302c3139372c38382c38352c3139362c34302c3137362c33392c3137312c35392c38332c34382c3134382c3130342c312c3231372c34302c37352c3134372c36342c3139352c3233302c3138392c32352c31352c302c3134392c3132372c3137352c38362c3130382c31312c37362c3138312c3131322c3139302c3230372c342c3132322c3131332c3136302c32342c33392c3135312c3234322c32302c3138362c38332c39352c3234312c35382c3231332c3231382c36382c39322c31362c3137342c3137302c38302c3139322c32362c3131332c3132342c31332c3232362c3234342c39362c3234312c31342c39302c3136362c3138322c3130302c34382c3133332c3132322c3235302c35392c34392c3234372c36302c3135302c37342c3233342c3230345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32382c3234362c3235312c32312c3132332c3233342c3131362c3136342c382c35322c3232312c3132302c31372c352c302c36372c3232392c33372c3138362c3230332c34382c37302c39322c392c39332c34362c3233362c3234362c3137392c35322c3233302c3235325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "63ab1752cb04ac2626d830c5e1d5718abc64e3297eb6ccfa2211895f5f4ba5eb", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3133352c37372c3232302c39332c3231382c3138372c3232382c38362c3135382c3139382c3135332c31362c3232312c352c3230362c372c362c33352c3139342c3130372c3133392c3136322c3133342c35392c33312c32352c3233322c3136352c34332c3136312c38342c3232352c3231382c39312c3131372c3233302c3132302c3131372c3139322c3131372c3131362c3233302c3233372c3235332c3135372c35332c3138305d2c22696e6465786573223a5b302c312c322c332c342c352c392c31312c31322c31332c31352c31362c31372c31382c31392c32312c32322c32342c32372c32382c32392c33302c33312c33322c33332c33342c33352c33372c33382c33392c34332c34342c34352c34372c34382c34392c35302c35312c35332c35342c35352c35372c35382c35392c36302c36312c36322c36342c36352c36362c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38332c38342c38352c38372c38382c38392c39302c39312c39322c39342c39352c39362c39372c39392c3130302c3130312c3130335d2c227369676e65725f696e646578223a317d2c5b5b3134322c33302c342c35312c3134382c3130302c36382c312c3232382c3138332c3234312c3230332c34312c37372c3233332c3137382c3139372c35302c33332c382c3139372c34362c3235352c372c3131322c3138392c3139362c3137332c3130392c33352c3232302c31372c3139372c3136352c3130352c3132372c37392c34382c3232382c32372c33312c37352c3235312c35392c3231382c3138342c3136312c362c32302c35372c3136322c3134342c36352c31342c37322c3233312c35362c352c3139302c3137342c3231302c3132312c3138312c3136362c36312c3232362c3231372c3230372c31332c3133312c3135332c352c3234352c3132382c3230342c35332c3233322c3130302c31382c3230332c3139322c3135342c3133332c3133332c342c33392c33362c3132342c3235342c3137352c38342c32302c3131322c3138382c37302c37315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34322c342c37392c3137392c3136362c3137392c3130342c39342c3234342c35332c3131372c33362c36312c3139322c37382c36372c3232312c3130392c35342c3135322c38302c3136312c3131362c33322c3131362c302c3232302c3136312c3139382c3137332c3230372c3135385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "13a3061ff6bb00bb08342782cd82378d4b260c536e9aa78451d0711424429179": { - "hash": "13a3061ff6bb00bb08342782cd82378d4b260c536e9aa78451d0711424429179", - "previous_hash": "8523a61911ac4fd6713b3bfe6dfd01d5de855181cc844bc2bdc23c3e3cccd0e4", - "epoch": 36, + "3bb83a95eee930e17deb07f1e83b146125cd13c0ade99ef6dc7d764bda428e08": { + "hash": "3bb83a95eee930e17deb07f1e83b146125cd13c0ade99ef6dc7d764bda428e08", + "previous_hash": "e534f1bda85d1396c7e450aa4751c73f24dbda3f0c5b3421ea0a584c5959c39c", + "epoch": 13, "signed_entity_type": { - "MithrilStakeDistribution": 36 - }, - "beacon": { - "network": "devnet", - "epoch": 36, - "immutable_file_number": 11 + "MithrilStakeDistribution": 13 }, "metadata": { "network": "devnet", @@ -402,40 +401,35 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:32.246182835Z", - "sealed_at": "2024-09-09T12:58:33.169717238Z", + "initiated_at": "2024-10-28T13:28:27.357085839Z", + "sealed_at": "2024-10-28T13:28:27.621361791Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132322c3134382c3139332c3136342c33382c3133382c37352c3130372c3133392c32372c3138382c3234392c3137352c3234382c3130322c39322c3137362c3130392c3234342c3232332c32352c33372c31352c3139322c38362c33382c3136372c34352c3130302c3136392c38332c34315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38342c33332c31392c31332c3233362c3133352c3135332c3233372c3138382c3136302c37322c35362c3231302c38382c3230372c3131382c3138372c34372c3139322c3136342c3135322c37342c3133302c39322c3234392c3134342c38342c3234322c3233372c3231362c3132332c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "1a17edb46dd36a609e053e7ba197a42ec7d3a07f5c047fefbe73836876dce141", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c3131302c3233362c3134382c3130372c3134302c3230312c3230392c3234342c37322c33312c3134392c3137352c38362c35382c3132312c3231312c3138352c3235322c3139322c38362c3131392c32332c31312c372c3137362c32392c39372c36382c36382c3139332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3131302c36392c36392c39372c37382c37362c3132302c3130352c3138322c3232362c36332c36342c31322c33352c38372c3139352c3139302c37332c3132312c3234352c3232332c3137342c3133302c3131322c3139382c38382c3230332c3232342c3134342c3136392c3134382c36302c3136342c3235312c3135392c34332c3234382c392c3233312c3235312c3138312c3230312c3231302c31362c39332c3136352c36395d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32372c32382c32392c33302c33312c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35342c35352c35362c35372c35392c36302c36322c36332c36352c36362c36372c36392c37302c37312c37322c37332c37352c37362c37372c37382c38302c38312c38332c38342c38352c38362c38372c38392c39302c39322c39332c39342c39352c39362c39372c39382c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136372c3232352c34322c3233312c3135302c3133322c34352c3131362c38302c3131322c35352c3139342c3134392c3137372c38342c3139342c39352c36332c3134392c3139382c3134382c37382c3136312c3135382c3234352c37322c3132342c31302c39322c3130332c39382c3134382c3138322c38352c34382c3135342c33362c3134342c3232392c32312c3138342c35312c3130372c3234372c3232342c3231302c37372c3130372c352c3133312c3232342c35302c3234312c3234302c3133302c3230382c31352c36322c3137322c34332c34332c302c3130302c3139372c36332c3230362c39342c3138372c3135322c3234302c3232322c31352c3232362c38372c3235342c3134312c3134382c3137302c3234332c3234312c39342c3137372c3134312c3131332c34302c3233342c3139322c3230332c3139362c33332c3135372c31312c3231312c3231342c36322c39365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b36342c38352c3233362c3133332c38322c3130352c3137302c34322c3231322c39322c33332c3136352c36382c3234332c3232302c35382c3132332c3232342c3138362c3134392c39312c3137362c33392c3230302c34332c3139332c3135392c3231372c3137392c3231362c34352c3137365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "8d3c20ffb5e9460e70875fd8109781a4ca0b3e9e41d4138254256c56f9e86656", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3233312c37342c3234322c37312c3132332c3233342c32322c3136372c35382c39332c3233382c3138332c3132302c3139352c3139382c3232332c3135382c3231322c32332c38372c38342c32352c31312c3233352c3132362c31312c33322c3133302c32352c3132362c38335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c36392c3130342c3132312c3231332c34352c382c3136342c3231342c36372c38342c38362c39372c35382c3131392c39302c3135372c3235302c3135322c3138362c37332c3137312c3230352c362c3232362c3130392c31342c3136392c37372c38312c35342c3135312c3235342c3136382c302c3230322c3133332c39382c3132352c3134332c3231312c3132312c37392c3232352c3135322c35322c3137352c3235345d2c22696e6465786573223a5b302c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31372c31382c31392c32322c32342c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35362c35372c35392c36302c36312c36322c36332c36342c36352c36362c36372c37302c37352c37382c37392c38302c38322c38332c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c3130302c3130312c3130335d2c227369676e65725f696e646578223a317d2c5b5b3138312c3230372c31312c38372c3136302c3230362c3139392c3131312c37362c3136372c3230382c31302c3134372c33312c31392c35362c38322c3139342c3230302c3233322c39392c37332c3234302c36312c34372c39382c32312c3134382c3133302c3233382c3230372c32302c35392c352c3131332c3233312c3137342c35332c3231312c312c38342c33372c37352c3137312c3139332c3230312c3139392c39352c31302c3134342c32352c3138302c3136312c3138322c3230332c31372c3231352c3133342c31362c3230342c3233362c33382c31312c3231382c3136342c31302c3135362c3132312c3231352c32322c37362c3138362c3139352c32312c35352c3233322c34362c3234332c3137342c33342c3136332c33362c33322c38362c34302c3131322c32342c302c38392c3234352c33322c3233312c3132312c3235342c34392c3233385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137352c3139322c3230312c3235322c3138372c3132372c37352c36302c3131382c3232312c38392c3234362c3137332c33332c3235352c3132342c3134382c3134372c33372c39362c3135302c3136392c3130312c3135382c3135332c3131302c3131332c3137322c37342c33362c3135382c3130385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "1e68875bb54cf2cf9a0ab09110175f74bab04de7a30cd799f9990ccbf267652c": { - "hash": "1e68875bb54cf2cf9a0ab09110175f74bab04de7a30cd799f9990ccbf267652c", - "previous_hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", - "epoch": 52, + "40ba57e7b80bc3ea6b0c9e7f94e45c8c07fca2555e6f8f5c5a62d18f96f4e3cb": { + "hash": "40ba57e7b80bc3ea6b0c9e7f94e45c8c07fca2555e6f8f5c5a62d18f96f4e3cb", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 19, "signed_entity_type": { - "CardanoStakeDistribution": 51 - }, - "beacon": { - "network": "devnet", - "epoch": 52, - "immutable_file_number": 17 + "CardanoStakeDistribution": 18 }, "metadata": { "network": "devnet", @@ -445,42 +439,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:18.252893282Z", - "sealed_at": "2024-09-09T12:59:18.644033661Z", + "initiated_at": "2024-10-28T13:28:45.698793941Z", + "sealed_at": "2024-10-28T13:28:45.829006358Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "51", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "18", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "85956805bc1e052df6c991e88fc6aa20a2131e6fb19abdaa574269e880a0e942", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c33382c3131392c302c39392c33392c3131352c34372c3130392c3133342c37322c38352c37362c3139372c3131342c3133392c32302c3130392c36322c31302c3130332c31302c37342c34302c32332c3134392c39342c33312c3234342c3130302c37342c39362c3139322c342c37312c3232352c3133312c31322c3232382c3130302c36392c33322c3132362c3233382c3230362c3134342c33302c3132325d2c22696e6465786573223a5b302c322c332c342c352c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32322c32332c32342c32362c32372c32382c32392c33312c33322c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34372c34382c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38332c38342c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136362c3132352c37322c3131322c33332c3133322c3130322c3231352c37322c3231342c3233342c32302c37352c3231392c37332c3230362c3132382c33332c3232332c3136382c3230382c3133372c32372c39352c3135352c37312c3134332c3230312c32332c3235342c3139372c36342c34362c39342c38332c3231372c3138352c38332c3235312c33392c3130382c35382c34312c37392c34342c3234362c352c3137312c31362c3134382c3230342c3232392c34302c31312c31332c3132332c3136352c3131342c31312c3233352c392c3130392c3233312c3234332c3132362c3234312c38352c3233322c3134382c34362c35372c3233352c34372c3233302c3139382c3231362c3135302c3130342c3135332c31362c3138342c35362c32392c37372c332c302c33372c31332c32362c31302c3139302c31342c31322c342c3131382c3233335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32342c31392c35392c3136342c38342c3135312c3133392c3130382c35372c36332c33332c34342c3130332c39372c3230362c3132312c33372c37342c34382c3138372c37392c3133392c3235302c3234392c3135362c382c33352c3132342c3132352c38352c362c3139375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "3fa560c26618c6ce8cb9ac84ed98ed677d84702222eab4736943a7137024bf48", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3135322c33382c3135342c312c35332c3234372c3133342c3139312c34362c35372c362c33382c3138382c3138382c33382c32352c36342c38392c3131362c3135352c3139342c3230322c3232352c3131362c3136352c3134312c3233362c32392c3138312c3135332c32342c3130382c37322c3232322c35362c3132342c39342c3137392c3134312c3139342c39332c34352c3136322c38352c32302c34382c3235345d2c22696e6465786573223a5b302c31372c31392c34322c34362c34382c35322c35342c36372c37302c37342c37382c38322c38342c38352c39395d2c227369676e65725f696e646578223a307d2c5b5b3133382c372c3133392c3135342c3136382c3130342c3232372c32332c3130312c35322c3231352c3135382c36372c38382c3136322c34322c33342c3233392c3134382c38302c3137372c33302c3139342c33332c36352c3232322c3230382c3234312c32302c3138342c3135322c3134352c35322c3134392c3132312c3232382c392c36342c392c362c33342c3132302c39362c3234372c3232392c3130382c332c3136352c31362c3132382c35342c37312c38352c3235312c3134302c34372c38322c372c3131382c3135312c3234342c3232312c382c3132322c3234342c31372c31302c3135392c3139382c3230382c3233342c3134382c312c32342c36332c3132322c3130312c3138312c32392c3132352c3232362c3234322c38302c3231332c32392c37302c3137302c3139372c3137362c35392c3139362c37322c31392c3135382c3131302c32325d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133362c3130362c31362c3135312c3135392c32332c34392c3137322c3230392c31332c322c3231332c3138302c3232342c33392c3131322c3130332c3230332c3131342c32332c38312c3235332c3131382c3132302c3235342c38322c3139352c3231322c3138362c32382c3135382c3138312c3135392c3132332c3235312c3139352c3139322c38332c3136392c36372c3234352c32322c3139332c34392c38332c3135392c3136342c3135335d2c22696e6465786573223a5b312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31382c32302c32312c32322c32332c32342c32352c32362c32382c32392c33302c33312c33322c33332c33352c33362c33372c33382c33392c34302c34312c34332c34342c34352c34372c34392c35302c35332c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36382c36392c37312c37322c37332c37352c37362c37372c37392c38302c38312c38332c38362c38372c38382c38392c39302c39322c39332c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135322c39362c3139392c34302c3138382c3231332c39302c3138372c35362c34322c3134392c3134392c3139382c3138302c3139392c3136332c3132302c34332c3131392c3230312c3230372c3139372c3135312c3132362c3130382c36352c3133372c3135372c3133392c39312c3131322c39382c3136382c3135322c3134332c3137382c3131382c38382c34302c3232352c3137372c3139302c3234322c36312c3133382c3131302c31362c3131332c32352c3232342c3131372c31322c34302c3233382c3230312c33342c3130332c3231322c3137312c3133312c34372c3137392c36302c3131372c39352c35342c31342c3235312c3230362c3234362c3233322c34362c3133382c392c34372c39312c3133372c34392c3139372c31342c3137322c3136362c3230372c39312c33382c37312c36312c3234332c31352c39372c3133332c3233322c3136362c36312c382c3132395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac": { - "hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", - "epoch": 58, + "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53": { + "hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 21, "signed_entity_type": { - "MithrilStakeDistribution": 58 - }, - "beacon": { - "network": "devnet", - "epoch": 58, - "immutable_file_number": 19 + "MithrilStakeDistribution": 21 }, "metadata": { "network": "devnet", @@ -490,36 +479,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:34.179510423Z", - "sealed_at": "2024-09-09T12:59:34.440408302Z", + "initiated_at": "2024-10-28T13:28:51.420155979Z", + "sealed_at": "2024-10-28T13:28:51.686388142Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "8f26762f6d7837fcbde247e21112c2ad5309965c35ba102067cb6da1c0698764", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c372c34392c3135382c32382c3133372c3231302c32332c3132352c3231372c32322c33342c31332c392c34372c3230372c3234332c31322c36352c3133312c3233382c32372c3132322c3234362c3233312c3130362c3133392c39372c3136342c32382c34352c3230322c3131362c3133332c3139362c32382c3133342c38322c33322c3232302c3139312c3135312c3138382c32372c3234372c35322c3132342c31365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31322c31332c31342c31352c31362c31372c31382c31392c32312c32332c32362c32372c32392c33302c33312c33322c33332c33352c33362c33372c34302c34312c34322c34342c34352c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c36302c36322c36352c36362c36372c36382c36392c37302c37312c37332c37342c37362c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39302c39312c39322c39332c39342c39352c39362c39372c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136372c32382c3231342c3134322c3135322c3234362c3234362c3133372c3132352c3130382c3138392c32392c3132352c3137302c37362c3234392c3139362c3233312c3135372c3135392c32312c3234362c38352c38362c32342c3132322c3132302c3235342c31312c3234352c3132392c31382c3137352c3234322c3137352c3131332c3234382c31382c3137302c3134352c39382c3137382c3234332c3131322c3133342c3136322c31332c3138332c32332c31302c3133322c33332c3230352c3136342c3234352c3136382c39352c3231372c362c3134322c3136322c3134332c3133342c33332c3132382c39332c3131362c302c31352c372c3138342c3138342c3137352c3232322c3139352c35342c32312c3230342c38392c38342c3136352c3135382c3231352c3230362c3234392c3139322c3234312c3135382c33382c3134332c31382c33312c3133372c3138332c3130342c3233325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134392c39312c37382c3134322c31332c38362c3234382c33362c3139352c302c3134342c36302c3231342c37352c39392c362c36382c31302c3136392c37342c3131392c3136382c3137322c33382c3130382c3133322c38392c3231372c3132362c3230302c36302c33355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "b24f84a8201413d910f748fb3faaecbdbfc9c3bff92ad27bbe2a00634d44a963", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138332c392c3131372c36342c38332c3134312c35312c3132322c36392c3136372c3231362c3134342c36342c36392c3138352c3231372c3135332c3234332c312c3133362c3136382c3235332c3132372c3132392c31322c3137322c31392c36332c3135392c3137342c3231362c39312c35392c3138312c31392c3233372c33372c32372c3232332c34352c3130302c3131332c3136382c31392c3131322c37372c3230372c3234365d2c22696e6465786573223a5b302c312c32322c32352c33322c33352c33372c33382c33392c34362c35302c35312c35322c35352c35362c35372c35392c36342c37362c38392c39312c39352c39392c3130302c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3134322c32312c3130312c36372c3136342c34332c38352c34312c35352c3230362c3234342c36372c31312c3230312c3137352c31302c32322c3131312c3230322c3230302c33322c3232322c3231322c3136312c3138382c3138302c36372c3131362c3234352c34312c36352c3230312c36302c34362c3233352c3231392c382c3231372c35302c3137332c3231392c3139352c3138372c31312c3134332c3135362c3232302c39332c31312c3230322c3135372c34312c3137342c3135332c3232392c3231372c32322c32332c322c35352c34302c312c33302c3130332c3233372c3130332c3139362c3235342c32312c3132372c38332c33302c3132312c38382c35312c3131352c3139382c35342c3230312c39332c3139362c3137372c3231382c36362c38342c3137392c38322c3231372c37322c36302c3131302c34382c3133362c3235332c31302c3130385d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3137392c37312c3137342c3233392c38382c32372c3134312c31332c39352c3130332c35302c3131312c3133342c3232322c39332c3139342c34392c3230362c3133362c36362c34332c32332c312c3235302c3130372c3234342c3233392c3130392c3130372c3235352c37302c3132392c3231332c34322c3136332c32382c3230302c3230352c3235342c33302c34342c38362c3138322c3232322c3234302c3134332c3134322c33335d2c22696e6465786573223a5b322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32342c32362c32372c32382c32392c33312c33332c33342c33362c34302c34312c34322c34332c34372c34382c34392c35332c35342c35382c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39302c39322c39332c39342c39362c39372c39382c3130312c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134322c33302c342c35312c3134382c3130302c36382c312c3232382c3138332c3234312c3230332c34312c37372c3233332c3137382c3139372c35302c33332c382c3139372c34362c3235352c372c3131322c3138392c3139362c3137332c3130392c33352c3232302c31372c3139372c3136352c3130352c3132372c37392c34382c3232382c32372c33312c37352c3235312c35392c3231382c3138342c3136312c362c32302c35372c3136322c3134342c36352c31342c37322c3233312c35362c352c3139302c3137342c3231302c3132312c3138312c3136362c36312c3232362c3231372c3230372c31332c3133312c3135332c352c3234352c3132382c3230342c35332c3233322c3130302c31382c3230332c3139322c3135342c3133332c3133332c342c33392c33362c3132342c3235342c3137352c38342c32302c3131322c3138382c37302c37315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "20ba8fe4767689217045e8e58fc3b30051abc5725d6e18548c679788109ca86b": { - "hash": "20ba8fe4767689217045e8e58fc3b30051abc5725d6e18548c679788109ca86b", - "previous_hash": "f88d22f2977aa0161b3dd0775cccdcb935d90e3c621d5bb8d51893785c8252f5", - "epoch": 29, + "581943ab9d9123a3f311ff75a698c1590b3b405aac1b747531e8b141968351f5": { + "hash": "581943ab9d9123a3f311ff75a698c1590b3b405aac1b747531e8b141968351f5", + "previous_hash": "3bb83a95eee930e17deb07f1e83b146125cd13c0ade99ef6dc7d764bda428e08", + "epoch": 13, "signed_entity_type": { - "MithrilStakeDistribution": 29 - }, - "beacon": { - "network": "devnet", - "epoch": 29, - "immutable_file_number": 9 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 13, + "immutable_file_number": 2 + } }, "metadata": { "network": "devnet", @@ -529,40 +521,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:12.687583863Z", - "sealed_at": "2024-09-09T12:58:13.082533122Z", + "initiated_at": "2024-10-28T13:28:28.019055679Z", + "sealed_at": "2024-10-28T13:28:28.159065759Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37302c3233302c3136342c31302c3234302c3235332c3131362c36302c38372c39332c3231382c31302c34322c3230302c31302c322c3133392c34382c382c3136322c37342c37332c3135382c39342c39382c3134352c3133332c35362c3136362c3130302c302c3234375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "e68ead616e0371d7ecf65976540bb1234f22e621239a585b1cc560bcac53a831", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38342c33332c31392c31332c3233362c3133352c3135332c3233372c3138382c3136302c37322c35362c3231302c38382c3230372c3131382c3138372c34372c3139322c3136342c3135322c37342c3133302c39322c3234392c3134342c38342c3234322c3233372c3231362c3132332c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "0b5ae3bd694616c66e2c3789001e7c701eca1eef49bbd19bace5a210551db5e1", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c35382c3134332c3134392c3134372c3133392c3135332c322c31372c352c3234362c3131302c33312c37392c3135312c3130382c36332c3232352c3137322c3235342c33312c3235352c3132342c3136372c3137322c36332c37372c3136372c3234322c3231322c3232302c33355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c3138392c39382c39322c3133332c3132332c3137362c35322c3233392c3232372c31322c32372c38302c3230312c312c3233382c3138342c3136342c3131392c38302c3131332c3136332c3232392c3231352c37342c34382c35362c3135332c33372c39322c39322c33372c3133302c3134342c3139322c3138302c3135382c3132352c382c332c3134342c32332c31332c32362c3132332c3137302c3134322c3134305d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c31302c31312c31322c31332c31352c31362c31382c31392c32312c32322c32332c32342c32352c32372c32382c33312c33322c33332c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35312c35322c35352c35362c35392c36302c36332c36352c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37382c38312c38322c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130335d2c227369676e65725f696e646578223a317d2c5b5b3136392c3130332c3134362c3231352c34312c3232362c38362c3230322c39362c3137392c3233382c34382c3138382c3130322c34392c3134392c3233382c3137362c3130352c352c3133332c36362c36352c34322c35322c32352c3230322c3133382c39382c3130312c3132342c3230342c3138392c3138352c36312c37302c3139322c3135332c3131362c3231352c3139322c3235302c3132342c38372c3133302c3231382c3138362c37362c31322c35322c3137332c34322c3132362c3232362c3234372c3132332c35322c3231372c3135372c39392c3134392c33352c342c3137382c3133382c3138352c3138302c32302c3133302c3234332c32302c31382c3135372c3230302c3137372c3231382c39312c35322c3135312c31382c3134392c31372c3232302c34392c3130392c3131392c322c3234302c32352c3231382c3133382c3136372c38372c3234322c32352c3234315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39362c37322c3133312c32342c39342c3134322c38372c39332c3231342c3137352c3232322c32332c3138322c3230322c3231332c34302c3233322c3138302c3232392c382c3131382c3135302c3137312c37352c3232382c3230332c31362c3233382c35372c3233352c3131342c3134305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "8307e00303bcdbffd3b37e36d2c154eebfd9a17bfc8f3e08caa3adeaa5ed10b2", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3233312c37342c3234322c37312c3132332c3233342c32322c3136372c35382c39332c3233382c3138332c3132302c3139352c3139382c3232332c3135382c3231322c32332c38372c38342c32352c31312c3233352c3132362c31312c33322c3133302c32352c3132362c38335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134362c3235322c32382c3231342c3137352c3137392c3139322c3139382c3136322c3138322c3139302c3233322c3130382c3232312c3137352c3232392c35382c3231372c3233352c34352c37322c382c3230352c34322c3134382c3135332c3233382c3139372c34382c3132362c3232302c3137352c38342c3131392c3131352c3130362c3130352c3132302c302c3131372c33382c3232312c3230372c3139352c3235302c35362c38332c3131355d2c22696e6465786573223a5b302c312c332c372c382c31312c31322c31332c31342c31352c31372c31382c31392c32312c32322c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33352c33392c34302c34312c34332c34342c34362c34372c34382c34392c35312c35332c35342c35352c35362c35382c36302c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38362c38372c39302c39312c39332c39342c39352c39362c39392c3130302c3130312c3130325d2c227369676e65725f696e646578223a317d2c5b5b3138312c3230372c31312c38372c3136302c3230362c3139392c3131312c37362c3136372c3230382c31302c3134372c33312c31392c35362c38322c3139342c3230302c3233322c39392c37332c3234302c36312c34372c39382c32312c3134382c3133302c3233382c3230372c32302c35392c352c3131332c3233312c3137342c35332c3231312c312c38342c33372c37352c3137312c3139332c3230312c3139392c39352c31302c3134342c32352c3138302c3136312c3138322c3230332c31372c3231352c3133342c31362c3230342c3233362c33382c31312c3231382c3136342c31302c3135362c3132312c3231352c32322c37362c3138362c3139352c32312c35352c3233322c34362c3234332c3137342c33342c3136332c33362c33322c38362c34302c3131322c32342c302c38392c3234352c33322c3233312c3132312c3235342c34392c3233385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137352c3139322c3230312c3235322c3138372c3132372c37352c36302c3131382c3232312c38392c3234362c3137332c33332c3235352c3132342c3134382c3134372c33372c39362c3135302c3136392c3130312c3135382c3135332c3131302c3131332c3137322c37342c33362c3135382c3130385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "27a2171a4e6eb4a80bc36d71f1d11cf9e1640fae490dfd038235c5ffd1e789d8": { - "hash": "27a2171a4e6eb4a80bc36d71f1d11cf9e1640fae490dfd038235c5ffd1e789d8", - "previous_hash": "f087ab01dcc7be081554b9fb0f569c89f5e46acc01538e0b884a83c1f9257ee7", - "epoch": 17, + "70261d781a7798d6a45d1f5a80124b925ae31afa744ecc8a096dc3958ab46b45": { + "hash": "70261d781a7798d6a45d1f5a80124b925ae31afa744ecc8a096dc3958ab46b45", + "previous_hash": "3bb83a95eee930e17deb07f1e83b146125cd13c0ade99ef6dc7d764bda428e08", + "epoch": 13, "signed_entity_type": { - "MithrilStakeDistribution": 17 - }, - "beacon": { - "network": "devnet", - "epoch": 17, - "immutable_file_number": 4 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 13, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -572,40 +564,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:57:39.050855465Z", - "sealed_at": "2024-09-09T12:57:39.442388915Z", + "initiated_at": "2024-10-28T13:28:29.119132287Z", + "sealed_at": "2024-10-28T13:28:29.252248288Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234342c35302c36332c32352c38392c3131342c31372c3233302c3135332c37332c3138322c3231302c3135372c3133372c3133322c322c32372c3138362c32392c3231332c3230372c3231352c3231312c3136312c3138352c3132322c39342c32392c39312c3130332c32322c3231325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "57a5c4d5d87e67b6fa088808d4174eec34318fcb075ed4b15b898c4694b1010a", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38342c33332c31392c31332c3233362c3133352c3135332c3233372c3138382c3136302c37322c35362c3231302c38382c3230372c3131382c3138372c34372c3139322c3136342c3135322c37342c3133302c39322c3234392c3134342c38342c3234322c3233372c3231362c3132332c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "5f76617a640131a4147cf3ab43deaf4614fd82d2aa5b0b2f09668df34161e39f", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39352c3232332c3130322c3137332c3234372c3231372c38352c3138302c38352c3133332c34302c3133382c39332c36312c38332c3132352c3232382c3136342c3133392c37302c3231302c3230362c3231332c37392c33342c39382c3133312c3132312c38382c3235332c3232392c3233395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136382c3132372c3139312c3230332c3130352c3130342c3230342c3234392c3230332c3232302c3131302c3138312c35312c3134342c3231332c34382c3131352c37392c34342c33342c34352c38352c34372c33342c312c3136342c3234312c3231322c3232382c3133312c33342c3132382c3139352c3136372c3230352c3136382c3131332c3130322c3231382c3136342c37332c3231302c3138312c35372c3235322c3137372c3135362c3132385d2c22696e6465786573223a5b302c322c342c352c362c372c392c31302c31312c31342c31352c31362c31372c31382c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33332c33352c33362c33382c33392c34302c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36312c36332c36342c36352c36362c36372c36382c36392c37312c37332c37342c37362c37372c37382c37392c38302c38312c38332c38342c38362c38372c38382c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136392c3231342c3230392c39382c3139352c3233342c392c3138352c3138312c3136352c3134372c3130392c37342c3139332c3230392c34362c3139352c3139312c3131342c35362c33352c3233332c3233332c3138342c3133342c3137382c34342c3234382c34392c3130362c3231342c3234312c36332c3134372c3132322c3134302c38382c35302c3130382c3139302c3233382c3233372c38342c35362c3134382c3235312c3130322c3233322c31362c3136332c3132302c3132382c3134382c3133352c32372c3134322c3234392c3136322c3130342c34362c3231392c3233332c3230302c38322c3231372c3134322c36342c3131392c3132372c3234312c34302c38302c31322c3132362c3134322c3136352c39372c3131342c3139382c3134382c36322c342c3132382c3232362c3231392c36302c3138322c3234362c3135312c3134322c3139322c33332c3133362c39332c38342c3136395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34352c3233352c3137332c3134332c35372c32392c38372c37342c39352c3137302c3131392c3136372c3135302c372c3135382c3233322c3234342c35352c35372c3234332c36302c3135342c33392c3135372c31302c3133322c36382c32342c3230332c3233312c36322c39315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "3f66a9a6f7a2cbacbcf955d02dd3ea62e497de9c5c7c78ab3eb5347ae184be00", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3233312c37342c3234322c37312c3132332c3233342c32322c3136372c35382c39332c3233382c3138332c3132302c3139352c3139382c3232332c3135382c3231322c32332c38372c38342c32352c31312c3233352c3132362c31312c33322c3133302c32352c3132362c38335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132382c3233332c33302c39352c3130302c3132332c37302c3135322c32382c3138372c36322c3139322c3234362c39332c3234392c3230362c3131322c3134342c3136342c3139312c35352c32362c3231302c3232352c3135342c35352c31332c3132332c3234322c33362c33352c3136302c33372c3134362c3232302c36352c3230372c3134392c33392c3138382c36392c36302c3137322c3231342c34332c3230332c3134312c3130375d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31322c31342c31352c31372c32302c32332c32342c32352c32362c32372c32392c33302c33322c33332c33342c33352c33362c33372c33392c34302c34312c34322c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36312c36322c36332c36342c36362c36372c36382c36392c37302c37312c37322c37332c37362c37372c37392c38302c38312c38332c38342c38352c38362c38372c38382c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134322c33312c33322c3233302c32382c3138312c39362c3138342c31322c3232332c3138302c372c34322c38312c3135392c3235312c3230322c31392c33302c3137352c3132372c3138322c3137302c3231372c3139312c32372c3132382c36312c31312c35312c3230382c3232302c3235312c3131362c31382c3235332c3231382c3231332c3235322c3138392c35382c37352c31372c3233352c33302c37312c3131312c3132342c32302c32312c38322c37352c33332c3131302c32342c37302c3230382c38332c38352c36312c3132312c3137392c3234382c3235302c3130352c3132322c35352c3231332c3139302c3233372c3131352c3139312c3136372c3132322c3136302c33372c33342c3134322c3235322c3130302c3137352c3136372c39352c3136362c3131322c38332c3231332c3232312c31392c33392c382c3234312c36362c31332c3135362c3139375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3130362c322c3231352c3234362c3134362c3132382c3131392c3131372c3136392c31312c38322c34392c31382c3137322c3231352c37312c33302c3130312c3231332c3233342c32342c38362c3138302c37362c34382c3137332c3139312c34362c392c37382c3134382c33345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "2bebf6af48aa75fda8b21c19dad6201b4513e8bccbf0650531400abdca0d8593": { - "hash": "2bebf6af48aa75fda8b21c19dad6201b4513e8bccbf0650531400abdca0d8593", - "previous_hash": "5f7b4754de2a6221c8a9f20c0fe024cc3a516354874b60a8651381863cc2d47e", - "epoch": 22, + "748942b381bd0a55556397f84e4e69e0dace8f29288964f83d3cb382436f69f9": { + "hash": "748942b381bd0a55556397f84e4e69e0dace8f29288964f83d3cb382436f69f9", + "previous_hash": "3bb83a95eee930e17deb07f1e83b146125cd13c0ade99ef6dc7d764bda428e08", + "epoch": 13, "signed_entity_type": { - "MithrilStakeDistribution": 22 - }, - "beacon": { - "network": "devnet", - "epoch": 22, - "immutable_file_number": 6 + "CardanoStakeDistribution": 12 }, "metadata": { "network": "devnet", @@ -615,40 +603,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:57:53.027343133Z", - "sealed_at": "2024-09-09T12:57:53.418492882Z", + "initiated_at": "2024-10-28T13:28:27.756321154Z", + "sealed_at": "2024-10-28T13:28:27.888702871Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37392c3139372c3137322c3233362c372c35302c3139302c3136362c3234332c3138342c3134322c31372c342c3137322c3139312c34332c3138352c3131312c35342c3133392c37322c3137302c3231302c37322c3230392c3230322c36322c3134392c3130302c3134332c3135312c3137395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38342c33332c31392c31332c3233362c3133352c3135332c3233372c3138382c3136302c37322c35362c3231302c38382c3230372c3131382c3138372c34372c3139322c3136342c3135322c37342c3133302c39322c3234392c3134342c38342c3234322c3233372c3231362c3132332c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "12", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "858b0d381f3860dfc2feca2891a6485d81f4f1cf87364a3ca35539ff1bdd797a", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c3137372c3232392c3231332c3134372c3135362c3134312c3234332c31352c3135372c3135392c33362c36342c3130322c3231362c3232372c3133372c3135322c36302c3130362c3235322c3131372c3231382c3139342c3134352c3232302c3235332c3232352c35302c3137342c3131312c3132385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c3137322c34382c34322c3130372c38392c3234342c37352c3134332c3231312c3136302c3132322c3235342c3233352c3138382c34302c3133372c3235312c35312c3134392c3134362c37392c3133342c3133372c35352c38352c3138342c3132352c3130322c33382c34312c3230312c3134362c3234322c342c3131392c3136382c34382c3134382c3130312c31342c37312c3131312c3234332c3136332c34332c32362c33305d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31362c31372c31382c32312c32322c32332c32362c32372c32382c32392c33302c33322c33332c33342c33362c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36312c36332c36342c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38362c38372c38382c38392c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134342c3132382c39382c37312c3235312c3234322c33332c3133332c3133312c3132322c3234382c302c35362c36362c3234312c37312c39302c3233352c3138352c34332c3230372c38382c3136322c3132352c32302c3235312c31312c35352c3232342c39392c31322c31352c38382c3130302c3232332c34312c33322c352c36352c39312c3135362c3134332c3133372c3134362c3233332c3134352c3233382c3234362c382c3132332c3138362c3136372c3131392c39322c3132352c3138312c3131312c3132392c3230322c3231372c3136342c3232362c3230352c32322c3130392c3130302c3134382c35352c3234362c31392c38332c36322c3138352c3233392c3233352c3137382c32382c3133392c3132312c3133362c38392c39392c39332c3231392c3139342c3230392c3136342c3132362c34372c3138342c34362c32312c39372c3134382c3136392c34345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134312c33352c3232302c34322c3233382c31322c3132382c3231382c3234352c3132312c3231352c37362c3231382c33312c3231382c31362c31362c3132392c31352c32342c3132352c36332c3131362c31372c35362c34352c33312c34332c39372c3135342c38382c33365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "fde6730905f4ea27318d5c25e1094670c7001ccd44431cb32c9d5491e2427821", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3233312c37342c3234322c37312c3132332c3233342c32322c3136372c35382c39332c3233382c3138332c3132302c3139352c3139382c3232332c3135382c3231322c32332c38372c38342c32352c31312c3233352c3132362c31312c33322c3133302c32352c3132362c38335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c3136322c35372c36312c32322c3130362c3138392c3135362c33392c36362c33332c3134362c36312c35382c38392c33302c38322c3136352c3130312c3235302c3231372c3231332c3131392c37322c37322c36302c3139372c33392c3231382c38342c31362c31302c3139372c3136332c36342c36372c3233362c37352c322c3134322c31332c36302c37352c3139302c3130332c302c3137342c32355d2c22696e6465786573223a5b302c312c352c362c372c382c31302c31312c31322c31332c31352c31382c31392c32302c32322c32332c32362c32372c32382c32392c33312c33322c33332c33352c33362c33382c33392c34312c34322c34342c34362c34372c34382c34392c35302c35312c35332c35352c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36392c37302c37322c37332c37342c37352c37382c37392c38302c38342c38362c38372c38392c39312c39322c39332c39342c39352c39362c39392c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134322c33312c33322c3233302c32382c3138312c39362c3138342c31322c3232332c3138302c372c34322c38312c3135392c3235312c3230322c31392c33302c3137352c3132372c3138322c3137302c3231372c3139312c32372c3132382c36312c31312c35312c3230382c3232302c3235312c3131362c31382c3235332c3231382c3231332c3235322c3138392c35382c37352c31372c3233352c33302c37312c3131312c3132342c32302c32312c38322c37352c33332c3131302c32342c37302c3230382c38332c38352c36312c3132312c3137392c3234382c3235302c3130352c3132322c35352c3231332c3139302c3233372c3131352c3139312c3136372c3132322c3136302c33372c33342c3134322c3235322c3130302c3137352c3136372c39352c3136362c3131322c38332c3231332c3232312c31392c33392c382c3234312c36362c31332c3135362c3139375d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3137392c3130372c3138312c3233392c37302c34362c3235352c3139372c3137312c37312c3133322c3134302c3131332c31342c3138372c3234342c3131372c39362c38362c38382c3134392c3132352c32312c3135382c3231342c35362c3132362c3139302c3135352c3234332c3130352c3231382c37382c3231312c3234322c39332c3234312c3136312c3134342c3233372c3232342c3235312c3233372c34322c3235332c32322c3233312c335d2c22696e6465786573223a5b322c332c342c392c31342c31362c32342c32352c33302c33342c33372c34302c34352c36342c36382c37312c37362c38312c38322c38332c38352c38382c39382c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3138312c3230372c31312c38372c3136302c3230362c3139392c3131312c37362c3136372c3230382c31302c3134372c33312c31392c35362c38322c3139342c3230302c3233322c39392c37332c3234302c36312c34372c39382c32312c3134382c3133302c3233382c3230372c32302c35392c352c3131332c3233312c3137342c35332c3231312c312c38342c33372c37352c3137312c3139332c3230312c3139392c39352c31302c3134342c32352c3138302c3136312c3138322c3230332c31372c3231352c3133342c31362c3230342c3233362c33382c31312c3231382c3136342c31302c3135362c3132312c3231352c32322c37362c3138362c3139352c32312c35352c3233322c34362c3234332c3137342c33342c3136332c33362c33322c38362c34302c3131322c32342c302c38392c3234352c33322c3233312c3132312c3235342c34392c3233385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "2c8066e4159e0547d3da9ad5f1e1a0f8d7470cc2f63901b0fe22bba850b7c3ef": { - "hash": "2c8066e4159e0547d3da9ad5f1e1a0f8d7470cc2f63901b0fe22bba850b7c3ef", - "previous_hash": "c7d868cee0669eebf64df13b1ac8e82109488dddf653f940c8801a2a57af874e", - "epoch": 34, + "79a35c91533a06319bb4d3a19cd156a3c3550dac0d746e382916fcc18471f216": { + "hash": "79a35c91533a06319bb4d3a19cd156a3c3550dac0d746e382916fcc18471f216", + "previous_hash": "a17056bc0845e01638d5152b4e47f46e56d74ff4d150cafe2b7b9d2807396f23", + "epoch": 16, "signed_entity_type": { - "MithrilStakeDistribution": 34 - }, - "beacon": { - "network": "devnet", - "epoch": 34, - "immutable_file_number": 10 + "CardanoStakeDistribution": 15 }, "metadata": { "network": "devnet", @@ -658,40 +643,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:26.791200318Z", - "sealed_at": "2024-09-09T12:58:27.185609665Z", + "initiated_at": "2024-10-28T13:28:36.813214590Z", + "sealed_at": "2024-10-28T13:28:36.947266640Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "stake": 13333333334 + }, + { + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b332c36372c3135342c3133312c33342c3235312c3133302c31382c3132362c3137392c3133362c3231322c3233312c3136312c3132322c3232352c342c3132392c36322c33352c342c38312c3139322c3130382c3137342c3134392c3234332c3135302c33372c3135332c38332c36385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137392c3137382c37322c3230342c35352c3132302c3138332c3133392c3232372c32352c322c3130322c3232352c3136362c36302c3234342c35342c32322c3231342c3133342c3132372c3135362c35312c3231342c3136372c3138392c36362c3234322c3137302c3139362c3233372c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "15", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "c92cab23429d092880a18e836d97bd4780f9d950ba6fbd7cb5c682efa37f5ce7", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34382c31392c3234382c3139302c38352c332c3135352c3133342c3139312c3230342c3235342c3130362c3231362c3137372c33342c3136332c39372c31342c3135322c3233362c3230322c33392c39352c3139352c33372c36352c39332c36342c332c39312c3136332c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3138352c3134342c33382c3139382c3130362c362c3231342c31362c34372c3131322c32362c3231332c34322c322c36342c3134392c3133332c3135372c3230302c32322c3137362c3138392c3131312c3133332c3232382c31382c3131382c3133342c352c3132372c3233322c3133332c3235332c3136392c3233322c3232322c3133372c35362c3136332c3134332c32342c3231352c32332c3234382c3135382c36332c3232315d2c22696e6465786573223a5b302c322c332c342c352c372c382c392c31302c31312c31322c31342c31362c31372c32312c32322c32352c32362c32372c32382c33302c33322c33342c33352c33372c33382c34322c34342c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36352c36362c36372c37302c37322c37342c37352c37362c37372c37382c37392c38302c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39382c39392c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3138302c3134372c332c36352c33372c38322c3138322c3232312c3133382c3130342c352c3230372c342c37302c362c3136332c3138302c37382c38332c3130342c3132352c38362c39322c392c36302c36302c332c352c37362c35392c36322c3138322c39382c3232342c3235332c3235342c33332c3231392c3133392c36362c3133312c31362c36302c3135302c39392c3139362c32302c3138362c31342c33342c32382c35352c3233322c38392c3231322c36302c33302c3234372c3233302c37332c3137302c3131322c37302c3136382c3231362c32322c3132342c39372c3135322c38392c3131392c34372c3234332c3133352c34382c33362c37352c3135382c3235312c31362c3234382c34312c33312c3133382c3136312c3131322c3134322c3131312c37312c3235302c38332c3138382c3138322c3137312c3135302c3134355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230302c3135342c37372c3133352c3234382c3138372c3232342c39372c3130392c39372c31392c37342c34342c3130332c3130382c3137392c3231342c36322c3132362c38312c32382c34322c3136312c33332c3232352c3131392c3135392c36342c3139382c3232332c32352c3231315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "4e87e00184a484e25a1968b2c06fe2f8229e2183024fc60e67729240347284b5", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133382c3231332c3232362c3137372c38342c3132332c37392c3134362c33302c3136352c37392c38312c3138392c37372c3137392c3131312c3235332c3131322c3130342c35352c3234372c3231362c3133302c31372c37372c342c3134312c3234382c38362c38392c3133352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138332c372c3138342c3138392c3234322c3133302c3133322c38322c3232332c3136352c3233332c3131312c39352c3130352c3131352c37322c332c3132342c3131392c3132322c34382c3231382c35342c3131322c39342c3133392c3133392c39332c3136312c3234352c3233332c3136342c3130382c3133372c3139322c3133302c3139372c392c33372c36342c3235322c3135322c38342c3233342c3233382c3233342c3130322c3139345d2c22696e6465786573223a5b382c31302c32322c32332c34362c34372c35332c36302c36332c36392c37312c37322c37342c37352c37382c37392c38322c38362c38372c39312c39322c39382c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136322c3136312c35382c3234382c332c3235332c3132352c36342c3136352c36302c3132362c36322c3138392c34392c3134372c3231332c31312c3135322c3139352c3139342c3232392c3131372c37372c37332c3231362c31332c32382c362c3132322c3231322c3137302c3233302c3233392c38382c3132362c36342c34332c34322c3137312c3231342c382c3231382c36302c32352c3132322c3136322c3234352c3135322c32332c3138382c37342c3234322c3232302c31302c3231352c3134392c3136352c3234342c342c3232322c32382c33352c3138362c352c3132332c32332c3130352c3138332c3233382c3132372c33352c3139332c38372c3233312c3234372c38372c3134342c38352c36312c32342c342c3231382c34302c3233392c34362c38302c3131382c3130302c3230362c3137362c3130362c31322c39382c37332c3233392c3138375d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3134312c34352c3137382c3137352c3233312c3133372c3232322c3233302c3233352c3231302c38332c35392c3133352c3235352c3230342c3132372c38312c37392c352c332c32352c31372c3133392c3132352c3133302c3133392c31382c3136382c3135352c3136342c3231302c38342c33342c3139382c3137362c3134312c3132322c3131322c37312c3134302c35372c3132312c3130312c39382c36382c3132312c3231392c39355d2c22696e6465786573223a5b302c322c332c342c352c362c372c392c31312c31322c31332c31342c31352c31362c31382c31392c32312c32342c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33392c34302c34312c34322c34332c34342c34352c34382c34392c35312c35322c35342c35352c35362c35372c35382c35392c36312c36322c36342c36352c36362c36372c36382c37302c37332c37362c37372c38302c38312c38332c38352c38382c38392c39302c39332c39342c39352c39362c39372c39392c3130302c3130312c3130325d2c227369676e65725f696e646578223a317d2c5b5b3137342c3132312c39382c3138332c3133342c3232302c3139392c3230312c3136362c3136302c3139372c3132372c3233312c3133322c3133352c3139382c3230372c3134332c3137382c3133392c3138352c39352c3232372c35302c3132372c35322c3137312c3139342c37302c3232372c3130342c3131382c3234382c3133372c36302c3133332c34362c39382c3133372c3133342c3139332c3135372c35322c32362c31342c3234302c34362c37392c332c372c3137322c342c3139322c3135312c3131322c3230352c3135332c34352c3232312c3131312c3137382c3134302c33302c3232392c37392c3232372c37322c35332c31392c3233372c3231312c3133332c38392c3233392c3234322c36302c3230352c34302c34342c38302c3133302c36382c3234352c3231382c3231372c34372c39372c3134322c3138392c382c32372c3137362c34312c36382c3131382c3131305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "304ae8a325e648d02f92d80be6734281cb729d4bab42ddb464bf15f66690f9ba": { - "hash": "304ae8a325e648d02f92d80be6734281cb729d4bab42ddb464bf15f66690f9ba", - "previous_hash": "d402d98d38cadd400a4bc23af1d7a5a1ca86fdf9b6111d304315bda72d0b8ac8", - "epoch": 41, + "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a": { + "hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "previous_hash": "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac", + "epoch": 18, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 41, - "immutable_file_number": 13 - } - }, - "beacon": { - "network": "devnet", - "epoch": 41, - "immutable_file_number": 13 + "MithrilStakeDistribution": 18 }, "metadata": { "network": "devnet", @@ -701,37 +683,35 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:47.594907026Z", - "sealed_at": "2024-09-09T12:58:47.859173271Z", + "initiated_at": "2024-10-28T13:28:42.432316349Z", + "sealed_at": "2024-10-28T13:28:42.831792696Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "664fd22c34833b074fcbbb31e76715c391ef8ade48c95269ca4d4ea8479cfaf3", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137352c33362c3230372c3131352c32312c34382c36332c31382c3136372c3130352c38332c39342c3133352c36382c3234382c33372c3130352c36322c3130332c31362c3233382c3233332c33342c34322c37382c302c3135342c392c35332c3137352c3234392c33332c3132302c3131352c35322c38352c3134372c3233372c31362c352c3130322c32312c31362c382c3138332c3130302c38322c3231375d2c22696e6465786573223a5b302c322c332c342c352c362c382c392c31312c31342c31352c31362c31372c31382c32302c32312c32322c32342c32352c32372c32382c32392c33302c33312c33332c33352c33362c33372c33382c34302c34322c34332c34352c34362c34372c34382c35302c35312c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37342c37362c37382c37392c38302c38322c38332c38342c38352c38362c38392c39312c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133352c36322c3137372c3133382c32372c332c3134322c36322c3135362c3130392c3134302c3231342c3233352c3233322c3133302c3232332c392c36302c3137332c3138342c3131392c3230322c38342c3134302c39382c34332c33302c34382c3139322c31362c39382c3230312c3134352c312c3133392c3134302c33332c31382c3136372c39332c37342c3137312c3234322c3231382c35352c3232362c342c39322c352c38372c3132382c3231362c39322c3135312c3138362c3231392c3134352c3132372c39372c3131372c372c3235352c3139302c31302c3233322c35372c39352c38382c3132302c3139312c3133322c3137362c382c35392c3231312c3231302c3233302c36392c3233392c37312c37332c36372c36392c3130382c34312c38362c32392c34372c3130372c3131392c35362c31332c37362c3233342c3233362c38385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3232322c36302c37362c342c3139372c3138312c3133342c3234392c3136352c35372c3233352c3235352c3132332c3131302c3133302c32382c3132332c34362c38322c34342c37392c3235312c39312c35342c3131352c302c36312c3235312c38342c3132342c3234362c3130375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "a0bc2a4867ca1f46e77b4195a7e0fd34837cbc464be5ad4961b3341c85fe347d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132382c3130362c39352c31372c39332c31372c34352c3137362c39342c3231322c37322c38312c3230352c302c3130302c3133342c3233352c3139372c3232352c3134342c38352c39332c3138362c38362c3233352c36372c33332c36302c34312c3133352c3138332c37342c34332c3137362c3235302c3235312c3235332c3232352c3230382c3130342c3132392c3232372c38352c3138302c3138322c3230312c3131312c31345d2c22696e6465786573223a5b302c312c332c342c352c362c372c392c31302c31322c31332c31352c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33312c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34352c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c37302c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133322c312c3134322c3231302c3132392c3230372c3139382c3233332c3131362c3135352c3233342c39312c3139312c3132322c31352c37392c32372c3136352c3130352c3132312c3131322c322c34352c3134332c35302c34392c3234332c3233332c3131362c3130372c3230372c3235322c3137392c3230312c3139332c3135382c3135312c3231362c3233392c3138362c3232312c3234302c3131392c3134352c36332c3230372c3136302c3132382c372c3136372c3132372c3230352c3230302c3131372c34382c3135352c3234382c34362c3131382c352c31312c34322c36312c34382c3137322c3135322c3231332c38352c3137352c3131362c3130302c34352c33332c35352c37302c3134352c3235322c3133312c31362c39362c36352c3230362c3231342c3135312c34322c34372c37312c322c3232392c38332c35342c38322c3136322c34372c372c3133315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138312c3132392c33392c3234352c3138382c3133332c322c34322c3130382c32312c3136372c3231332c33382c3231372c35392c34362c3137362c3138322c3230392c33382c34372c36342c38302c38332c352c33342c38342c3132332c3233392c3137382c3136382c3234335d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "3453ad777b6cf1ac7076850d3a5a9b97cb1988c277a3569e7defee4fd524b63b": { - "hash": "3453ad777b6cf1ac7076850d3a5a9b97cb1988c277a3569e7defee4fd524b63b", - "previous_hash": "8ba1adefdeb0786042d6634a4ae11cbb75f3d384bbfcee5411681a052269dcd1", - "epoch": 11, + "804eb503576232119c5fb25d5fad134b0aa53d5424223905b8128a421be755b2": { + "hash": "804eb503576232119c5fb25d5fad134b0aa53d5424223905b8128a421be755b2", + "previous_hash": "9866d2d55271b0db4bb316a31d4afe912a1769a25de6bb720f3333ec59a682c1", + "epoch": 15, "signed_entity_type": { - "MithrilStakeDistribution": 11 - }, - "beacon": { - "network": "devnet", - "epoch": 11, - "immutable_file_number": 2 + "CardanoStakeDistribution": 14 }, "metadata": { "network": "devnet", @@ -741,45 +721,42 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:57:22.172087832Z", - "sealed_at": "2024-09-09T12:57:22.562173402Z", + "initiated_at": "2024-10-28T13:28:33.815156032Z", + "sealed_at": "2024-10-28T13:28:33.949442706Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131322c3133302c3136342c34352c3234382c3136322c36352c3133302c3138302c39362c3133392c36362c3233302c3131372c33312c3134392c3137372c3134302c32392c3136382c3235352c33302c33312c3130392c3136322c3134332c33372c3230372c3130312c3134382c3138302c36385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133382c3231332c3232362c3137372c38342c3132332c37392c3134362c33302c3136352c37392c38312c3138392c37372c3137392c3131312c3235332c3131322c3130342c35352c3234372c3231362c3133302c31372c37372c342c3134312c3234382c38362c38392c3133352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "14", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "c91401b9d8c29082a5fb2f445629e5bcc560375a3724c12ac9630e6be6c63144", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232302c3235312c33382c34362c3131322c38382c322c3232382c3133302c38352c3134362c36302c33352c32372c3133302c34372c3133352c33392c3138362c38352c3235312c3234352c38322c34362c3234372c35322c35342c3139392c3134342c38312c3137362c31335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137322c3132312c35382c37392c32302c33382c36362c32342c37332c3131342c35362c3235332c3230392c33382c3135392c33362c3231352c3135332c3230382c3234322c31372c33332c39342c37362c302c392c3233372c37352c3131372c3133352c3135322c33332c372c3138342c3230332c3132362c3137302c35392c35322c3136392c3132322c3137332c3134372c36332c33342c31382c36392c3138385d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31302c31312c31322c31332c31352c31372c31382c32302c32312c32322c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34332c34342c34352c34362c34372c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c36302c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37332c37352c37372c37392c38312c38322c38332c38342c38352c38362c38372c38382c39302c39312c39322c39332c39342c39352c39362c39372c39382c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137332c38332c37372c34322c34362c36322c3234372c3231342c3136362c3137322c3132352c3134312c3233342c3136382c31332c3232302c3231332c392c3235322c3139312c35322c3132382c37382c35392c31362c39362c3235322c3133332c3134382c3233322c3233302c3130372c36312c3130302c3230352c3132332c32312c3234302c372c38332c39332c352c3231362c37382c38392c3230312c3137372c3232302c31322c3133322c37382c302c3134352c3133372c3233322c3231362c3133382c3231322c3231362c3233302c3135382c302c3133352c39322c36302c3230382c3138342c3230332c3137332c3232302c36392c362c36382c3136382c3231332c33372c3132362c3134392c36352c3230342c3135342c3134302c302c34362c3134332c33362c3234322c3132302c35332c32362c3135302c34382c3139362c3135392c3133392c31355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3139392c38392c3137362c3137362c31392c37342c32352c3138312c3232362c3131372c3133352c33352c35332c3231312c34392c3132352c3130322c3230342c31382c31362c3233302c36392c3136362c3234352c3139302c32312c39392c3130382c36322c3133302c3136382c3231305d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "c02180b8ee4f702ada932962358d4f8242c28a4d3ec89729418611ca8c334633", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c3136332c3132322c3135302c3139392c3137302c3132372c3138342c3138382c35312c3130332c36382c37372c3130312c3234302c39362c38372c3139312c35342c3232362c36342c3130302c37362c3231322c3233312c31352c35342c3135332c3230362c3233382c3130382c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134302c31332c342c35352c3139372c36312c3233382c32332c3234382c33312c3133342c3130392c3234382c33382c3231342c3135322c3230342c3138362c3134312c3231382c37302c3233392c39382c33342c33322c3136352c3132312c3130312c33332c3232372c3131332c3134352c38392c322c3137372c362c3232322c3230362c36352c3139312c3130342c3137332c3134362c3230332c3139302c38342c39312c34335d2c22696e6465786573223a5b302c312c332c342c352c372c31302c31312c31322c31332c31342c31352c31362c31392c32302c32312c32322c32332c32342c32352c32362c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c34312c34322c34332c34342c34352c34362c34372c34392c35302c35312c35332c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38372c38382c38392c39312c39332c39352c39362c39372c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3134312c3139342c3139322c3131342c39342c31322c39342c33392c3132352c3134332c31372c3139372c3132312c35322c3139342c3139322c36382c3232312c38322c3132352c31302c34342c3234302c3132302c39342c3132372c3133392c31302c3235332c36302c3133342c3139302c36322c3233362c3134322c3230312c36362c32342c3133362c3133302c3233302c37382c3234382c39302c38322c3134302c3235312c3135302c31392c3136392c3232342c3131342c35312c3231372c37352c34352c3135352c3131322c3130302c39382c37352c32332c3132302c35322c3136332c35362c3232372c32352c31362c3134372c3232382c3131392c33312c3132372c332c36392c3133332c36342c3134392c37302c3233352c31372c3233342c34362c37352c37382c3234302c3138362c3234352c31332c31332c3133322c3133392c3139392c3233362c35375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3136332c31312c36342c3139332c39372c3135322c36352c3232302c3137352c3135332c3135362c362c3138372c3235352c3230312c32322c38392c3133332c3135332c3137332c3231352c37382c36362c35362c33362c3133312c312c3232372c3230362c3232362c3132322c36385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "35f80cd7030b44a215a0e5de94b8fea892f7fd668dc51abe1e09b0bca799f2c1": { - "hash": "35f80cd7030b44a215a0e5de94b8fea892f7fd668dc51abe1e09b0bca799f2c1", - "previous_hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", - "epoch": 46, + "82c068ffafeed2ee77fb322d82ad2409dbe0491ace919ecf2e0d489d608fe0fa": { + "hash": "82c068ffafeed2ee77fb322d82ad2409dbe0491ace919ecf2e0d489d608fe0fa", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 19, "signed_entity_type": { "CardanoImmutableFilesFull": { "network": "devnet", - "epoch": 46, - "immutable_file_number": 15 + "epoch": 19, + "immutable_file_number": 4 } }, - "beacon": { - "network": "devnet", - "epoch": 46, - "immutable_file_number": 15 - }, "metadata": { "network": "devnet", "version": "0.1.0", @@ -788,45 +765,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:01.451622525Z", - "sealed_at": "2024-09-09T12:59:01.844743082Z", + "initiated_at": "2024-10-28T13:28:45.963940462Z", + "sealed_at": "2024-10-28T13:28:46.097631755Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "a2b3c174c539fee3af0df5e70c5696622ab85417b3cd538dbebc68c100b36907", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c35362c3233332c3134382c39392c36352c31372c37352c33352c3134322c3232392c3134312c3135312c3136392c3234322c3134352c35382c3138332c3136382c3136342c3134302c3136312c35332c36322c3231332c3135372c39382c3139362c3234382c3136332c3136382c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "4d7499fa55843554dea614b9d9d3c24cf4803cfb31e351df5f85d27727114287", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "56547bfffb8c374056696715d1f499c7a9554d2c00f622eae4e48b53fc511c3c", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135312c3130342c3234342c32302c3234372c3131322c38332c3134322c3134332c32362c3231312c3139302c3234342c3136372c3233322c31322c3136332c3131322c37362c3136382c3132362c33372c3133332c362c3135352c38322c3136322c3139352c33372c3233332c38392c3233362c3231322c36372c32392c3130322c3138362c382c3232342c3235322c33352c3133322c3134332c3135382c3131382c37352c3233332c34305d2c22696e6465786573223a5b302c312c332c342c362c372c382c392c31322c31332c31342c31352c31362c32302c32312c32322c32362c32382c32392c33302c33312c33322c33332c33342c33372c33382c33392c34312c34322c34352c34362c34372c34392c35302c35312c35322c35332c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37312c37322c37342c37352c37372c38302c38312c38322c38332c38352c38362c38372c38382c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136392c39302c3131322c34362c3139342c3130372c32392c3137382c37382c342c39312c3136372c3231382c36342c3230372c33392c38332c3131382c3231322c32382c32312c3139332c3134382c3130392c32352c3135342c3135362c3137352c32362c36372c39392c38312c37302c3234312c3233342c32322c39322c3131362c3139312c3230392c3131312c32332c3230322c36302c3231392c38392c35322c3132382c352c3234352c3138362c32322c362c3139332c34332c3133362c34382c32362c34372c3136342c3233342c3135332c3134392c3139392c3139362c3135362c3137312c3132322c39372c3136372c37382c36312c33352c3134362c39342c34342c39382c36352c3132372c3139322c3139312c3232312c372c3136372c3134312c3235322c312c3230352c3232362c36342c3137372c37302c3138382c3136362c34322c3131345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131362c3233302c3130392c34312c3131342c3133382c3137302c3234302c362c3133362c37342c3136352c3136382c3132362c35342c3133392c37302c3139372c3131332c3138302c32362c3232312c3130352c3136392c3135312c32372c3131322c3131382c33372c3135352c37322c3231315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "134db34bdd3062f3e515b81c11c3ac10977a243a1d60484492264a137319e528", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133302c3230322c33322c3233342c37322c38342c35382c33302c3130362c3131342c33342c3133382c3132342c3135342c35312c34382c3131372c342c32302c3230332c38332c3139352c312c34382c3134302c3231312c3136302c3134312c3230332c36332c3139382c3131372c3130312c3234372c362c3232322c3232302c3130312c34312c3139392c3233322c3131342c39342c3138332c312c3138392c3230322c3132325d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c33302c33312c33322c33342c33362c33372c33382c33392c34302c34312c34322c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35372c36312c36322c36332c36342c36362c36372c36382c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38322c38332c38352c38362c38372c38382c38392c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135322c39362c3139392c34302c3138382c3231332c39302c3138372c35362c34322c3134392c3134392c3139382c3138302c3139392c3136332c3132302c34332c3131392c3230312c3230372c3139372c3135312c3132362c3130382c36352c3133372c3135372c3133392c39312c3131322c39382c3136382c3135322c3134332c3137382c3131382c38382c34302c3232352c3137372c3139302c3234322c36312c3133382c3131302c31362c3131332c32352c3232342c3131372c31322c34302c3233382c3230312c33342c3130332c3231322c3137312c3133312c34372c3137392c36302c3131372c39352c35342c31342c3235312c3230362c3234362c3233322c34362c3133382c392c34372c39312c3133372c34392c3139372c31342c3137322c3136362c3230372c39312c33382c37312c36312c3234332c31352c39372c3133332c3233322c3136362c36312c382c3132395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37322c322c3137322c3133322c3235322c3231302c3235342c3133372c3130342c3138352c3233322c32332c39322c3136372c3235312c3130382c3136382c36352c39382c39342c31332c37352c31392c3133302c3131312c3139322c31342c35382c3231392c3235312c3234372c3138345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b": { - "hash": "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b", - "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", - "epoch": 55, + "85c0a33286e1c3d795bcf736ab5480cb37efb26a3158c40ceb78c786b113b3d3": { + "hash": "85c0a33286e1c3d795bcf736ab5480cb37efb26a3158c40ceb78c786b113b3d3", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 20, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 55, - "immutable_file_number": 18 - } - }, - "beacon": { - "network": "devnet", - "epoch": 55, - "immutable_file_number": 18 + "CardanoStakeDistribution": 19 }, "metadata": { "network": "devnet", @@ -836,41 +804,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:26.588899743Z", - "sealed_at": "2024-09-09T12:59:27.118499316Z", + "initiated_at": "2024-10-28T13:28:48.851836432Z", + "sealed_at": "2024-10-28T13:28:48.983646727Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "19", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "df267af69f18c03266bf982897f5076123a3df8d00a9f7b5a583e4d6f82bf089", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136332c352c34342c3138322c3130352c3235332c3232382c3131372c3131322c3137342c38362c3234332c3133372c34322c38382c38312c3232362c38322c39392c3135392c3134342c39382c3130352c3137352c3137302c3137322c31312c3131372c3232312c31312c3130332c33382c32352c3131392c392c3137322c3132392c38392c3231342c31312c37392c31362c3134372c32332c3137332c31372c3235322c3235345d2c22696e6465786573223a5b302c312c322c332c342c362c382c392c31302c31312c31332c31342c31362c31372c31382c31392c32302c32312c32332c32342c32352c32362c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34332c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35392c36302c36322c36332c36342c36352c36372c36382c37302c37312c37322c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c39312c39322c39332c39342c39352c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134302c36382c3138392c3139322c3235302c3131382c3133302c3130322c3132342c352c3131352c37322c36352c3132382c3130342c3235312c33352c3130322c3233382c3231312c3136352c3137332c3135352c3134332c3231302c37392c3136322c3139312c3131302c34332c3232392c3135302c3138362c32302c3232342c39392c3139372c34352c34332c352c36342c32392c3131382c3139322c39382c33302c36342c3132352c382c32362c33352c35342c3134312c3136382c31392c3232342c36342c3131302c3233372c31342c34342c34312c34362c3130302c3133392c3135392c3135352c34372c352c3235332c3231322c39312c35302c3134392c32332c3231332c36302c3133392c3137322c382c3230352c37382c3234362c3234362c3138342c3133342c3137392c32382c37312c3231372c3134322c3137332c3233392c34302c322c3136395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234342c3139312c39362c342c3132392c36332c302c31322c3139312c34392c3230342c37382c3136332c3231372c3131352c3130312c3138302c3135302c3234372c36352c3130372c36342c3234312c33332c3132302c3134352c3134312c31322c38352c392c3131342c3233325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "55e948e62be41771360da16a3688b822582ac653ecc8d82b51e4edf4a989de40", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135322c3232332c3232302c3139302c3231362c3134342c342c3136392c3132332c3233302c3231372c39382c37302c33372c36392c3233322c3137362c31322c33322c3232322c39382c3137342c36372c3233392c3231302c3230312c33332c34332c36352c3131382c37372c3234362c3132372c32382c3231302c3132302c32352c33352c36372c3137392c3138342c35382c3138302c36362c3130392c35372c3132392c3232385d2c22696e6465786573223a5b302c312c322c342c362c372c382c392c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32332c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33392c34302c34312c34332c34342c34352c34362c34372c34382c35312c35322c35372c35382c35392c36302c36322c36332c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38382c38392c39312c39322c39332c39352c39362c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137302c39322c38352c31392c3138302c3132362c37342c3235322c39332c3133372c3137322c3131372c3232392c3233302c3232342c3132322c3137342c35392c35312c3232362c3134362c3233342c3136392c33352c3133352c3232332c3138382c3230312c3234352c3139362c35372c3131322c3136392c39322c3137312c33372c3135302c3233302c3233392c3138342c3131392c3132332c3235312c37352c33382c3134322c3135372c38362c32322c33362c3232362c37312c3138342c3233312c3132302c3132352c39372c3138382c39372c32322c3138362c3230352c3131302c37342c3135342c3135332c33312c3139392c3234302c3230362c34392c31322c35332c31342c31352c3130352c3136312c3135322c3133352c3132322c3230362c3235342c3136322c3138392c3132362c35362c3130312c3231362c32372c3132312c3130312c3138392c3232382c32302c3132332c3136345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135372c38342c32372c38322c3130392c32332c3232322c3139342c3130332c33302c3134352c3233352c35382c37382c3134372c3230322c3130342c32332c3131312c32342c3234342c3231332c3135382c3137302c34302c39362c342c3131352c3138372c3136362c3234382c3134375d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c": { - "hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", - "previous_hash": "aa84c4ed03004982f9667958a701b223be8d452905a460a36f452be26bc81132", - "epoch": 43, + "906ce13dd79d7a17c8e242fa82357d11924d3cdd6522cd3fc2db812544e73e00": { + "hash": "906ce13dd79d7a17c8e242fa82357d11924d3cdd6522cd3fc2db812544e73e00", + "previous_hash": "f96feaa24deeb05e86e1c75cf50a0947a0924ed213f0609907681ff6e7132d29", + "epoch": 14, "signed_entity_type": { - "MithrilStakeDistribution": 43 - }, - "beacon": { - "network": "devnet", - "epoch": 43, - "immutable_file_number": 14 + "CardanoStakeDistribution": 13 }, "metadata": { "network": "devnet", @@ -880,37 +844,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:52.103835239Z", - "sealed_at": "2024-09-09T12:58:52.379333406Z", + "initiated_at": "2024-10-28T13:28:30.757499851Z", + "sealed_at": "2024-10-28T13:28:30.900494429Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "stake": 13333333334 + }, + { + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c3136332c3132322c3135302c3139392c3137302c3132372c3138342c3138382c35312c3130332c36382c37372c3130312c3234302c39362c38372c3139312c35342c3232362c36342c3130302c37362c3231322c3233312c31352c35342c3135332c3230362c3233382c3130382c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "13", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "09a37cbd1fdaadb4bc91b278b9ca04da58516c041dc33b3d471c5aa65646810d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137382c3133342c33312c34312c3234332c39392c3131332c36382c3131302c3135352c31342c3134352c3131332c3133322c3136312c302c35332c3231352c3132322c34382c3231322c332c3132362c33352c37302c35382c3233302c3232302c3134392c352c36352c3136342c3137312c3230302c37392c3132352c3134362c38382c3230332c3137352c3135322c33392c3232322c302c31312c3232382c3130322c3134335d2c22696e6465786573223a5b302c312c332c352c372c382c392c31302c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32352c32362c32382c32392c33302c33312c33322c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c35302c35322c35342c35352c35362c35372c35382c35392c36302c36322c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37362c37372c37382c37392c38302c38322c38332c38342c38352c38362c38372c38382c38392c39302c39322c39332c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136382c36332c3138352c3230312c31322c33302c37382c3230382c362c35382c3131392c3138382c3138332c3130372c3232312c36372c3139322c31312c39372c3138362c3131302c35332c39352c3134362c3134312c34332c3133382c35342c3234362c3234302c3136362c3232392c3233362c3234352c3132382c3139312c3133382c39312c34332c32362c3230332c3138302c3130342c3234352c3230372c33382c38352c3133312c372c3235352c3137322c35332c33392c33352c33382c3137352c32372c3133322c38312c38302c3235322c3232392c3230382c3130322c3233312c3235342c3132392c3231322c3230312c3232352c3230362c3132342c3231302c3138342c3132312c3135362c3131312c3134312c3132342c3137342c3132342c3132362c32332c39322c3136382c39352c3233342c3234372c3134332c3233352c3135362c38372c3234372c37342c3131302c3132385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137372c36322c3136372c3231352c38362c3131392c3231312c39322c33342c3131332c3137332c3234372c37382c3130352c3131322c342c3232332c3130332c3234372c3132332c37322c3131332c37382c35322c3132392c3231382c3134372c3135312c3135372c3235312c34302c3235345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "46492a1876153b5a05eee9b9b32c86b042bbdc49b2dedc09254ba47193545bcd", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38342c33332c31392c31332c3233362c3133352c3135332c3233372c3138382c3136302c37322c35362c3231302c38382c3230372c3131382c3138372c34372c3139322c3136342c3135322c37342c3133302c39322c3234392c3134342c38342c3234322c3233372c3231362c3132332c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134312c3232332c3130372c3134322c3234322c3231322c33382c3130382c32372c33362c3132372c38382c3230392c3134342c32322c3230302c36382c3138362c3235322c31352c36372c3132392c3131302c3131352c3137352c3132332c3230332c3136362c3131332c33382c34302c35332c392c36332c31312c33392c3235332c38362c34302c392c3232372c35322c3232302c33342c3136302c3139382c3133352c3136325d2c22696e6465786573223a5b302c312c322c332c352c372c382c31312c31322c31342c31352c31362c31382c31392c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33382c33392c34302c34312c34322c34332c34342c34362c34372c34392c35312c35322c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38372c38382c38392c39302c39312c39322c39332c39352c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138322c37372c32362c39302c3231302c3233352c3131332c3231352c3138382c33332c35372c3134352c39332c36342c3134392c3135352c3132302c37392c3134352c35342c37392c3230352c39372c3230332c3233372c3133302c3231382c3137382c31302c3134332c3136322c3132392c3136392c3137312c3230362c38352c3235332c34382c36322c38352c39332c39372c3231352c3233392c3135362c3135312c3138332c38332c31392c37382c3234302c33352c3231392c3135322c34352c3134382c3136392c3138382c3133362c3132382c3139362c3234382c392c34322c3138352c35312c31392c38332c3133312c37312c3138382c3131302c35302c3233372c3136312c3232352c3231352c3137352c3234392c33312c3134382c3139362c3132352c3136342c32322c3134362c392c35332c31352c36302c3234392c39302c3130352c342c332c3137325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39392c3136342c3235332c3134312c3138392c3134302c352c36342c3232382c39372c39372c31372c35312c32362c3136342c31322c33302c39382c3135342c3139312c372c3137332c39302c35362c38312c3130362c3134352c3234302c34362c31362c38332c33345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "3fd85abeaf29806f53bdc78643e042d5292aa66b4935fc4a75fbc9f04d79e4ce": { - "hash": "3fd85abeaf29806f53bdc78643e042d5292aa66b4935fc4a75fbc9f04d79e4ce", - "previous_hash": "5ae44166aa823d57345d8003c66c75873c6a86b00080df5848949659fe84e789", + "9866d2d55271b0db4bb316a31d4afe912a1769a25de6bb720f3333ec59a682c1": { + "hash": "9866d2d55271b0db4bb316a31d4afe912a1769a25de6bb720f3333ec59a682c1", + "previous_hash": "f96feaa24deeb05e86e1c75cf50a0947a0924ed213f0609907681ff6e7132d29", "epoch": 15, "signed_entity_type": { "MithrilStakeDistribution": 15 }, - "beacon": { - "network": "devnet", - "epoch": 15, - "immutable_file_number": 4 - }, "metadata": { "network": "devnet", "version": "0.1.0", @@ -919,40 +884,35 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:57:33.420699340Z", - "sealed_at": "2024-09-09T12:57:33.818706066Z", + "initiated_at": "2024-10-28T13:28:33.405513951Z", + "sealed_at": "2024-10-28T13:28:33.672835725Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232342c3139382c3137362c39352c34332c3136392c3132372c322c36302c37312c39382c35312c3136392c3231362c3133342c3137342c3136312c36342c3135392c3231302c3130342c3132372c3234352c3137382c3135352c31392c32322c32302c36332c3130392c3139312c375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133382c3231332c3232362c3137372c38342c3132332c37392c3134362c33302c3136352c37392c38312c3138392c37372c3137392c3131312c3235332c3131322c3130342c35352c3234372c3231362c3133302c31372c37372c342c3134312c3234382c38362c38392c3133352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "266a9df29c1f8de6faaca2f19db4fa44e258daefeeae2461f68f6094eb829332", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c31302c3234342c3133372c32312c3134342c3233312c32312c3135312c37382c3137382c3234332c38372c36332c35362c3132372c3139302c37362c33342c3231382c32332c3134362c34382c3134352c35362c38372c31342c3233382c3135302c38392c32352c39335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133332c39352c3135322c3234372c332c3137312c3135332c3137392c3137362c3130352c3133342c3136322c3131392c3133362c3235352c3233302c36392c38372c3130312c3230342c3137382c34312c38362c3233362c35372c32352c3139342c32332c3139362c3136342c3234342c342c3130322c3130372c37352c3234312c3231322c3136362c362c3135312c36342c3132302c3139362c3230342c3234312c34352c3138312c3230305d2c22696e6465786573223a5b302c312c322c342c352c372c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32372c32382c32392c33312c33332c33342c33362c33382c33392c34302c34312c34332c34342c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c37332c37342c37352c37362c37372c37392c38302c38312c38352c38372c38382c38392c39302c39312c39322c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138302c31362c33372c3230362c3139392c3130312c3137382c362c31372c3231322c3135392c31332c3137332c33392c3233392c32362c38392c31352c3234342c34372c33352c37332c3130302c3130352c3234322c3137382c39372c36392c39362c32382c3139362c3133312c3136392c39302c3235312c3231332c3134342c33332c37372c3231362c3134332c3134372c34332c3233392c34312c3131372c3233362c3133352c382c3233322c3135352c34382c3234382c3138372c3135392c3135372c3131312c33392c3138382c3136322c3133362c3138312c3138342c39302c3234302c3133312c3134322c3134352c3138362c37382c32322c38302c3233312c3138382c3132342c31342c3138322c35322c3136332c35362c3138392c312c3130332c3231302c33342c3134392c3137372c31382c36322c3138362c3137332c3131312c3138342c3136362c3139332c34395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3139382c3233372c3134312c3233382c38392c3137362c3130302c3232332c3132332c3134312c3131392c3131332c39332c31382c31332c3130372c3139322c3135332c38372c3232372c35332c33322c33332c3132352c3234302c34382c33332c36392c3139302c3232382c3136352c3232365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "326b0596b4f035d8efd75a8b849ca909f21f366cf80126d4e132addc6e423465", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c3136332c3132322c3135302c3139392c3137302c3132372c3138342c3138382c35312c3130332c36382c37372c3130312c3234302c39362c38372c3139312c35342c3232362c36342c3130302c37362c3231322c3233312c31352c35342c3135332c3230362c3233382c3130382c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136332c37342c3134372c3135382c3234302c33302c36332c37362c3130362c33352c37332c322c3138372c3134332c3231372c36362c352c3234372c31332c3138392c36362c31372c3131302c34322c3137382c3131312c3136342c32312c33352c3136382c3139342c3133352c39352c3134342c3139352c3232302c36362c3139352c33372c35312c33392c38322c3231342c31352c3234322c3138392c3233392c3234395d2c22696e6465786573223a5b312c332c342c352c362c372c382c392c31302c31322c31332c31342c31352c31362c31372c31382c32322c32332c32352c32362c32372c33302c33312c33342c33362c33372c34302c34312c34322c34342c34352c34362c34372c34382c34392c35302c35312c35322c35342c35352c35372c35382c36312c36322c36352c36372c36382c36392c37302c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39322c39332c39352c39362c39372c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133392c3231352c35362c3130392c3139322c39372c36322c3137342c3134392c38322c3131322c3231352c3231312c3137302c32312c3130322c3136372c3134382c38302c33322c31342c3233342c31312c3134392c39362c3136322c3233372c3231322c3135362c3138342c32322c32382c33342c31382c35392c38332c31392c3130322c3130302c36362c37312c3137322c33342c39332c3139352c35352c3138342c38352c31342c3235302c37382c39342c3137342c3132392c32302c38322c3230302c39352c34382c34352c37332c35372c3130392c3230302c3132332c34332c38362c31312c3138362c38302c38322c38302c31342c3138372c3135302c3131392c35332c38302c37352c3233372c3135312c35302c38392c3234332c3231302c34332c3130322c3136332c3234312c3230332c32362c3133352c33332c32302c34302c31375d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3138302c3130322c3134352c38312c3235302c35342c3233322c3138382c3235352c3138362c3134352c3130312c36382c3131352c312c33362c33342c3136362c3230362c36352c37312c37372c3130362c32312c37352c3138322c34332c3230312c35372c32342c3139332c3131372c36312c3233372c3230392c32332c3232342c3234322c34322c3234352c3139342c3230312c32352c33352c3134362c3139352c31372c33335d2c22696e6465786573223a5b302c31312c32302c32312c32342c32382c32392c33322c33332c33382c33392c34332c35392c36302c36332c36362c37312c37382c38392c39302c39312c39342c39392c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134312c3139342c3139322c3131342c39342c31322c39342c33392c3132352c3134332c31372c3139372c3132312c35322c3139342c3139322c36382c3232312c38322c3132352c31302c34342c3234302c3132302c39342c3132372c3133392c31302c3235332c36302c3133342c3139302c36322c3233362c3134322c3230312c36362c32342c3133362c3133302c3233302c37382c3234382c39302c38322c3134302c3235312c3135302c31392c3136392c3232342c3131342c35312c3231372c37352c34352c3135352c3131322c3130302c39382c37352c32332c3132302c35322c3136332c35362c3232372c32352c31362c3134372c3232382c3131392c33312c3132372c332c36392c3133332c36342c3134392c37302c3233352c31372c3233342c34362c37352c37382c3234302c3138362c3234352c31332c31332c3133322c3133392c3139392c3233362c35375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90": { - "hash": "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90", - "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", - "epoch": 57, + "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6": { + "hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 20, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 57, - "immutable_file_number": 19 - } - }, - "beacon": { - "network": "devnet", - "epoch": 57, - "immutable_file_number": 19 + "MithrilStakeDistribution": 20 }, "metadata": { "network": "devnet", @@ -962,41 +922,38 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:32.153098137Z", - "sealed_at": "2024-09-09T12:59:32.547820554Z", + "initiated_at": "2024-10-28T13:28:48.439348899Z", + "sealed_at": "2024-10-28T13:28:48.719150498Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "38a27a1eee8e0186a4a9bb6ec086a455b2edfa434527c27a1199c8fcceeffcdb", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136362c3230382c3137392c3135372c3232382c3234352c3232392c3233322c3230312c38382c3139382c31322c3234352c3133362c3230322c332c3230312c31362c31392c3131352c3130322c3137392c32332c3230352c3132372c38372c32382c3132302c3139312c37372c38372c39382c31392c3132362c3131382c3137372c3130362c3232352c39392c3130392c3135332c3231312c32392c36312c3230372c3130352c3134352c3133345d2c22696e6465786573223a5b302c322c332c342c362c392c31302c31322c31332c31352c31362c31372c31392c32302c32312c32332c32342c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35342c35352c35362c35372c35382c36302c36312c36322c36342c36352c36362c36392c37302c37312c37332c37342c37352c37362c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39352c39362c39372c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135312c3130322c3132352c3133382c3138362c3138372c31342c3235302c3131342c3235322c3133322c3133382c3132312c36372c312c3130392c32342c39332c332c3231352c31362c3231332c3230362c3132382c36332c3139302c3233332c3135372c3138302c3134382c3135352c3138392c3231322c3139322c34332c3131362c34302c34332c3134332c31352c3133302c38382c35332c3131302c35332c3230342c3231312c38322c322c3139362c3232372c3137312c3135342c31392c3139332c3233332c3139392c3234302c3130362c37342c3137352c3131352c3131382c3134302c3135352c3234342c39342c32322c3234352c3135332c3232302c3233312c3139372c39392c3136362c3133332c3130372c3130352c34332c38302c34362c39312c35362c34302c3232312c3132342c3136302c3134302c3135362c3232322c31302c3232382c3234392c302c3230302c3234305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231302c3135352c37352c3234312c38332c3132342c3232352c3138332c35362c3138342c38322c3139332c3231332c39332c35312c3132342c3139382c37312c3133302c39322c3231322c32352c31312c3130302c3134362c3138312c3132352c3234322c39322c3134372c3132382c34355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "b891149e8c17aa5092aa8fb1fc508bb99dc74247f70712497e64f2b61e70f429", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c3135362c3233342c36342c3135312c38372c3137342c3133332c3234302c3139362c34322c39352c3136312c3231362c36362c3136332c3131392c3230342c3136312c3133352c35372c31322c3232312c3231362c38312c33302c3133382c3138302c3138342c3134362c36312c37332c3132332c3230302c38382c3139322c34362c3231372c3132362c392c34362c35372c3234312c3235322c3131382c3230392c32342c3131355d2c22696e6465786573223a5b302c312c322c342c372c392c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32332c32342c32352c32362c32372c32382c32392c33312c33322c33332c33352c33372c33382c33392c34302c34322c34332c34352c34362c34372c34382c34392c35302c35322c35332c35342c35352c35362c35372c35392c36302c36312c36322c36332c36342c36362c36372c36382c37302c37312c37322c37332c37352c37362c37372c37392c38302c38312c38322c38332c38342c38362c38372c38382c38392c39302c39312c39322c39342c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137302c39322c38352c31392c3138302c3132362c37342c3235322c39332c3133372c3137322c3131372c3232392c3233302c3232342c3132322c3137342c35392c35312c3232362c3134362c3233342c3136392c33352c3133352c3232332c3138382c3230312c3234352c3139362c35372c3131322c3136392c39322c3137312c33372c3135302c3233302c3233392c3138342c3131392c3132332c3235312c37352c33382c3134322c3135372c38362c32322c33362c3232362c37312c3138342c3233312c3132302c3132352c39372c3138382c39372c32322c3138362c3230352c3131302c37342c3135342c3135332c33312c3139392c3234302c3230362c34392c31322c35332c31342c31352c3130352c3136312c3135322c3133352c3132322c3230362c3235342c3136322c3138392c3132362c35362c3130312c3231362c32372c3132312c3130312c3138392c3232382c32302c3132332c3136345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135372c38342c32372c38322c3130392c32332c3232322c3139342c3130332c33302c3134352c3233352c35382c37382c3134372c3230322c3130342c32332c3131312c32342c3234342c3231332c3135382c3137302c34302c39362c342c3131352c3138372c3136362c3234382c3134375d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "4d0c84de34c476bfcc315dccb9db078c29f86811db67cf05b33bf8a950de8102": { - "hash": "4d0c84de34c476bfcc315dccb9db078c29f86811db67cf05b33bf8a950de8102", - "previous_hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", - "epoch": 52, + "98e6bd1f4b686061f52630af55e5599fc41bdf1908795bd3729e5bafeaa5a2c5": { + "hash": "98e6bd1f4b686061f52630af55e5599fc41bdf1908795bd3729e5bafeaa5a2c5", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 20, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 52, - "immutable_file_number": 17 - } - }, - "beacon": { - "network": "devnet", - "epoch": 52, - "immutable_file_number": 17 + "CardanoTransactions": [ + 20, + 614 + ] }, "metadata": { "network": "devnet", @@ -1006,41 +963,40 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:18.780968115Z", - "sealed_at": "2024-09-09T12:59:19.302394267Z", + "initiated_at": "2024-10-28T13:28:49.644817984Z", + "sealed_at": "2024-10-28T13:28:49.777323120Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "614" } }, - "signed_message": "ab4fda5e3c6422c428f45fa8bffe42fbb16b907354d5464a2f2cb642be90f171", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137302c33302c3132302c3131332c38322c3134342c3133362c37302c3135332c3132352c3135352c33312c3138322c3134332c36382c38312c33322c3230362c38312c33382c3232312c3231362c3234362c32362c3136312c3137322c3132352c3232332c3233312c37332c3230342c33382c3136312c3235312c3230302c3139322c3135302c39372c3232302c3233392c39332c3132332c3234312c32322c3131362c33382c31312c3133355d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c31312c31342c31352c31362c31372c31382c31392c32312c32332c32362c32372c32382c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34312c34322c34332c34352c34362c34392c35302c35312c35322c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c37302c37312c37342c37362c37382c37392c38312c38322c38362c38372c38382c38392c39302c39312c39322c39332c39342c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137382c322c32322c3136312c32372c37362c3231372c3234382c3138362c32362c3138392c3137362c3139352c3232342c36312c3134312c35352c3234352c32322c3231392c31362c39352c39392c39372c3233372c3135362c3133332c37352c35352c3130302c3136342c3232372c3230352c37372c3134342c3132352c33362c33352c3134392c322c3139362c302c382c3234392c3134312c3131352c3137342c3131322c322c38372c3137342c34362c35372c3134342c3233362c3132302c3139382c3230312c39362c3130382c3131362c38352c362c3231342c3134342c382c34302c3138302c3231382c3138372c3232342c3135392c3130362c3131302c3230352c33312c34312c3235322c32372c392c3133382c3232392c3137392c37362c3132362c37302c3133332c3133302c3233302c332c3139322c35302c36392c3132392c32362c3233345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32392c3136392c3137382c3133382c362c3136372c3231372c37362c3131372c33332c3139382c3139382c3138362c3232332c3137352c35322c36312c39342c39392c3131322c35372c3231332c3132312c3132382c36342c34322c3131332c3134382c3136372c3230332c38382c34335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "64fe76c8a7f36acee8602ff135f3b563d0523f9758c815105340b6b148232ec0", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137302c35312c38352c31392c3130332c3231302c35302c39312c3136382c34302c3230342c31332c3133302c3139352c3130352c3137332c3137342c3137382c3137322c37382c3233362c39312c3135382c3232342c3132392c3233382c3235352c39392c3134392c3230342c3130322c3230352c3135342c3230372c35322c3234322c3233352c3132372c3235342c3133322c3134342c3130372c3234382c3130312c3132392c33302c35372c3139305d2c22696e6465786573223a5b302c312c342c352c362c372c382c392c31302c31312c31332c31342c31352c31362c31372c31392c32302c32312c32322c32332c32342c32372c32382c32392c33302c33322c33332c33342c33352c33362c33372c33382c34302c34312c34332c34342c34362c35312c35332c35342c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36362c36372c36382c36392c37302c37322c37332c37352c37362c37372c37382c37392c38312c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39342c39362c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3134302c34382c38362c3136302c3137352c3132362c3137372c3139312c3231382c3139312c34342c38322c36352c35372c34362c3230342c32302c33302c3233332c3234352c31332c3235322c34322c37322c35362c33392c36342c32312c32372c3231372c37322c3233382c34382c31342c3137372c3233332c31372c3233372c38332c36312c3235312c35312c3231362c33322c3139382c3136352c3131322c37372c302c332c38312c39342c3233332c3135302c3233352c39362c32342c3135312c39352c39332c3230302c32362c3137322c3137382c38382c3233352c34342c31382c39342c32372c3137362c32382c31352c32352c3130332c3131332c3231352c3235352c3230392c33332c3234332c37312c3135342c3230382c3134322c37372c31312c3139322c3130382c3234302c3133382c3137352c3232322c31332c39352c35345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233372c31392c3234362c3130302c3137392c3135302c35322c34352c35362c32392c3235342c3132322c3135312c32382c3233362c31332c35392c3130382c37392c3133362c37362c32312c3134372c3234342c3132372c3136382c3233342c3138372c3133322c3235322c3231352c3135335d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "4d674234cd3e602f78faea111462ddf994cc91222061df8627718b572a389afb": { - "hash": "4d674234cd3e602f78faea111462ddf994cc91222061df8627718b572a389afb", - "previous_hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", - "epoch": 47, + "9ec669a7f796b9111cbc2ee1bfa48fe5fa11a4d31765d3d11a6fda26fb81372c": { + "hash": "9ec669a7f796b9111cbc2ee1bfa48fe5fa11a4d31765d3d11a6fda26fb81372c", + "previous_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "epoch": 18, "signed_entity_type": { - "MithrilStakeDistribution": 47 - }, - "beacon": { - "network": "devnet", - "epoch": 47, - "immutable_file_number": 15 + "CardanoTransactions": [ + 18, + 554 + ] }, "metadata": { "network": "devnet", @@ -1050,40 +1006,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:03.092997669Z", - "sealed_at": "2024-09-09T12:59:04.790283312Z", + "initiated_at": "2024-10-28T13:28:43.785529254Z", + "sealed_at": "2024-10-28T13:28:43.924131045Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c33332c31352c3230392c34332c3137352c3136362c36302c37362c3136382c3233392c39362c3233372c392c32372c31382c3235322c3134332c3231322c3136312c34372c33352c392c3132352c36352c342c3232322c302c33312c39322c37362c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "554" } }, - "signed_message": "5c121ac2c1e62e989ab52f14d5e0557eae5711b94bad12abc9b683b20e8fad8e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c35362c3233332c3134382c39392c36352c31372c37352c33352c3134322c3232392c3134312c3135312c3136392c3234322c3134352c35382c3138332c3136382c3136342c3134302c3136312c35332c36322c3231332c3135372c39382c3139362c3234382c3136332c3136382c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135332c3134362c3234302c3230362c3138312c39352c3135322c34332c3139332c3234302c3135362c3234302c34362c3134372c3234302c3138322c3131382c35372c33342c3231372c3234312c3234382c3138392c3233342c3130352c3131302c3135352c3235312c3232302c3234302c3138382c34372c3131322c3234372c3134332c3134312c3131382c3230352c3230342c3231372c3139382c3232302c3234352c34362c3138342c3133352c3235342c3235355d2c22696e6465786573223a5b302c322c332c342c352c362c31302c31312c31322c31332c31362c31372c31382c32302c32322c32332c32342c32352c32362c32372c32382c33302c33312c33322c33332c33352c33362c33382c34302c34312c34322c34372c34382c34392c35302c35312c35322c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36372c36382c36392c37312c37322c37332c37342c37362c37372c38302c38332c38342c38352c38362c38372c38382c38392c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133312c3133352c35332c3232352c35362c35302c3135352c3136372c3231382c33332c3232392c3231352c32352c3139312c35322c3232382c36322c3132372c352c38382c38302c38312c34372c3230392c3138372c3233362c3231332c3138382c3139312c3235352c32382c31322c36332c3233372c3137352c3232372c3135362c32352c3138352c3133382c3231372c3137382c3133352c3138352c3134332c35302c3133382c36312c392c3139352c3133332c38332c3130342c34302c3139392c3232302c3234362c3230372c3133322c3133392c36342c3131332c382c3130372c32352c3138372c3234352c3139312c342c3137312c34352c3233382c3139382c3130322c39372c3134312c3133372c3133362c3235352c39302c3131352c3132352c3136302c3231342c3132342c3137322c3133362c34362c3130322c3137332c3136302c33332c3234382c3135352c3135342c3138385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b312c3130362c3232342c3137312c3133342c3134362c34362c3234382c3235312c3134302c37302c3137342c34372c3133382c31322c3131382c3136312c37302c3233342c38302c32382c3231382c3138332c3135372c3139372c35322c31362c3230362c3230342c34302c3234352c36375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "0067f8810530c25cc17cde10daa22151a8c37d42cac0cf3cdb2515c450370714", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136322c362c3132372c3138372c39352c342c3131332c3136372c3133372c3235322c3130322c322c3231312c38372c3132302c33302c3231392c3136392c3139342c3230322c37332c3138332c36302c37362c39302c38342c3132312c33392c3233332c37362c3234352c322c39322c3136322c37392c38332c38342c3233362c3131322c31302c3138302c3131342c39332c39392c32312c3130302c3136382c39395d2c22696e6465786573223a5b302c312c322c332c352c362c372c382c31302c31322c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32362c32372c32382c33302c33312c33322c33332c33342c33352c33362c33372c33382c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35332c35352c35362c35372c36302c36312c36322c36342c36362c36392c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3133372c36382c3231312c3133322c3135312c33392c3132322c37392c35302c31372c3131382c38342c3234392c3131322c39382c3130312c31352c3233322c34332c3233362c372c3139362c3234342c33352c3138302c372c3132382c3231302c3134382c382c3232372c35342c3130352c3133312c3232332c3232322c32372c3138362c3131362c33302c3132322c32312c35362c3133322c3232372c372c312c3235302c31392c3231342c3131372c3139372c3133342c3230342c3134302c3234382c3134372c36332c3233302c31382c33342c3133362c3235332c3233332c3139332c3137302c36372c3138372c3235312c33312c3235342c35332c3135382c34332c3230322c3130332c38322c35362c31392c37392c31372c3138372c3135342c3137382c3131312c3231352c3134342c37392c38302c34392c32352c3130342c32382c3133312c3231332c31375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37392c3137342c3233302c3130312c31362c322c35392c3232392c36362c3133322c3133362c3130362c362c33342c3136352c39332c34362c3135392c31382c38392c36332c3133382c3137322c3134392c3230302c35392c362c3136352c3133322c3233322c3235342c3233335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751": { - "hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", - "previous_hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", - "epoch": 45, + "a01dd3ea16cfa2183dddc5ef039f360e11d6f02c592af030bb7f82a4e9c4bc13": { + "hash": "a01dd3ea16cfa2183dddc5ef039f360e11d6f02c592af030bb7f82a4e9c4bc13", + "previous_hash": "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac", + "epoch": 17, "signed_entity_type": { - "MithrilStakeDistribution": 45 - }, - "beacon": { - "network": "devnet", - "epoch": 45, - "immutable_file_number": 14 + "CardanoStakeDistribution": 16 }, "metadata": { "network": "devnet", @@ -1093,36 +1046,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:57.568109107Z", - "sealed_at": "2024-09-09T12:58:58.599505590Z", + "initiated_at": "2024-10-28T13:28:39.720785928Z", + "sealed_at": "2024-10-28T13:28:39.860321606Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "stake": 13333333334 + }, + { + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "16", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "1967fbae4e3dbca53d708c818918529831224cc2a1b186e8db97f2dc49d6887d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133352c3137362c3131302c37372c3135332c3231342c3133342c38312c3132372c3230392c3138312c382c32342c3132322c33342c37352c3231302c33302c3139392c39312c3235352c3133362c3235332c3135322c3230322c34362c32322c3139362c3131332c3233352c3130382c3230332c3134382c3136392c3133372c3135322c36332c39302c3232332c3235322c3232352c3231362c32302c37332c332c3135342c37352c35385d2c22696e6465786573223a5b302c312c342c352c362c372c392c31302c31312c31322c31332c31342c31352c31362c31372c31392c32312c32322c32332c32352c32362c32372c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34362c34372c34392c35312c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c36392c37312c37322c37352c37362c37372c37382c37392c38302c38312c38342c38352c38372c38382c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135322c3231352c3231302c3231382c3136312c37302c3136352c3132352c3136382c3234342c3134322c3137382c3133302c3134382c3132302c36382c3230352c3230382c3234302c3134312c3232362c3132372c3231342c3130342c3133302c3230332c39382c3230332c33352c3132312c31392c31342c3138352c3232332c37312c3135302c3131392c39352c3135342c39382c3137392c3130362c3233332c36332c39372c3133302c38302c3130362c352c3233382c31342c36312c36362c32302c3139302c37352c3234312c3133302c38322c3136362c3133302c312c3135302c3230342c35332c35332c3135332c3137372c33312c31342c34332c3130362c3235332c392c3130372c3138352c3136352c3231332c3139382c33322c3233372c3232342c35392c34302c3134392c38342c3230312c3131342c3132392c3234392c32372c36362c34372c3131332c3235352c3233355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c34332c3130372c36322c39332c3134322c3137332c3138342c3138302c3132332c3133392c36392c33382c3137372c3134302c3134342c35322c3135312c35332c31372c3133322c39382c3231322c3230372c3139332c3132312c312c32342c33322c31342c3139332c3234345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "b67b0e274b6dc03797dadc672011c609532cedc4256f382707ddb65a8836c0a4", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137392c3137382c37322c3230342c35352c3132302c3138332c3133392c3232372c32352c322c3130322c3232352c3136362c36302c3234342c35342c32322c3231342c3133342c3132372c3135362c35312c3231342c3136372c3138392c36362c3234322c3137302c3139362c3233372c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134322c3130392c35322c3130382c39362c3138332c36372c31302c37332c3231312c32312c3134352c3135372c34392c3134352c3231332c342c36342c39312c3138312c3135372c32312c3137312c3233362c3136342c3135352c3133352c3130302c33362c36372c3139362c3232352c3138382c3234332c3135382c3138332c3233372c36302c3234392c3230382c33342c3231332c332c3233312c34352c35302c3139382c3132355d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c392c31302c31312c31322c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c34302c34312c34332c34342c34362c34372c34392c35302c35312c35322c35332c35342c35352c35372c35382c35392c36312c36332c36352c36362c36382c37312c37322c37332c37352c37362c37372c37382c37392c38302c38322c38342c38362c38372c38382c38392c39302c39322c39332c39342c39352c39372c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138312c3230352c34362c3137332c3136302c3134342c3133392c3230302c37352c36372c31322c3138312c3230352c34352c3232332c33312c3231332c3136352c35302c3232342c3137352c3130372c35302c31322c3137302c3137342c37312c3233372c3135332c31342c3138302c3233312c34372c3231332c3137312c3130342c3230372c3139322c39352c3137322c3137322c3137372c36382c3133362c3233382c3134322c32352c3137312c352c32372c3135322c3133312c3139382c382c3231322c3135322c3230302c3135372c3230302c37392c3137312c38332c3135312c31362c3230312c38382c34392c3132342c3139332c34322c302c31362c3135392c3139332c3131312c3135322c3135352c3233342c35352c37342c3232362c33362c3231322c3231382c3231322c3234332c3132392c3130392c3133382c3133382c3138322c38382c3230312c3137362c31302c335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132392c3130372c382c3232352c3232372c38392c3132352c3135362c3135302c312c35312c3233322c3231382c342c34322c3233322c3133342c3134362c3130302c3136372c3138362c3232302c3135392c3135332c35382c3137362c3233392c3232362c33372c3136302c362c38355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "580dfde6fa34e3e902244f171bd0ca54b27c065d9dadbc95d4b2e2b19a73c07b": { - "hash": "580dfde6fa34e3e902244f171bd0ca54b27c065d9dadbc95d4b2e2b19a73c07b", - "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "epoch": 58, + "a17056bc0845e01638d5152b4e47f46e56d74ff4d150cafe2b7b9d2807396f23": { + "hash": "a17056bc0845e01638d5152b4e47f46e56d74ff4d150cafe2b7b9d2807396f23", + "previous_hash": "9866d2d55271b0db4bb316a31d4afe912a1769a25de6bb720f3333ec59a682c1", + "epoch": 16, "signed_entity_type": { - "CardanoStakeDistribution": 57 - }, - "beacon": { - "network": "devnet", - "epoch": 58, - "immutable_file_number": 19 + "MithrilStakeDistribution": 16 }, "metadata": { "network": "devnet", @@ -1132,38 +1086,35 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:34.586494806Z", - "sealed_at": "2024-09-09T12:59:35.106621586Z", + "initiated_at": "2024-10-28T13:28:36.415235783Z", + "sealed_at": "2024-10-28T13:28:36.677512754Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "stake": 13333333334 + }, + { + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "57", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137392c3137382c37322c3230342c35352c3132302c3138332c3133392c3232372c32352c322c3130322c3232352c3136362c36302c3234342c35342c32322c3231342c3133342c3132372c3135362c35312c3231342c3136372c3138392c36362c3234322c3137302c3139362c3233372c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "ba5279894984d07dcc36a893ffdc82f90b0229e262f725f87cbb90f1dbab210e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c3234322c3232362c34332c37362c37332c3231372c3230372c3130352c3231312c3132332c3134312c3230372c3233372c38322c382c3130382c3132342c35362c33382c3135332c35382c3235322c3137312c3138392c3134352c3131352c32342c31352c38372c3137392c39302c3132322c3137372c37362c35352c39342c31352c3232372c3134312c35322c3139322c3135312c3235332c3132372c33372c3234382c3134375d2c22696e6465786573223a5b302c332c342c352c362c372c382c392c31312c31332c31342c31362c31372c31392c32322c32332c32352c32362c32372c32382c32392c33302c33312c33322c33332c33362c33382c33392c34312c34322c34342c34352c34372c34382c34392c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36342c36352c36362c36372c36382c36392c37302c37312c37332c37352c37362c37382c37392c38302c38312c38322c38342c38362c38372c38382c38392c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136372c32382c3231342c3134322c3135322c3234362c3234362c3133372c3132352c3130382c3138392c32392c3132352c3137302c37362c3234392c3139362c3233312c3135372c3135392c32312c3234362c38352c38362c32342c3132322c3132302c3235342c31312c3234352c3132392c31382c3137352c3234322c3137352c3131332c3234382c31382c3137302c3134352c39382c3137382c3234332c3131322c3133342c3136322c31332c3138332c32332c31302c3133322c33332c3230352c3136342c3234352c3136382c39352c3231372c362c3134322c3136322c3134332c3133342c33332c3132382c39332c3131362c302c31352c372c3138342c3138342c3137352c3232322c3139352c35342c32312c3230342c38392c38342c3136352c3135382c3231352c3230362c3234392c3139322c3234312c3135382c33382c3134332c31382c33312c3133372c3138332c3130342c3233325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134392c39312c37382c3134322c31332c38362c3234382c33362c3139352c302c3134342c36302c3231342c37352c39392c362c36382c31302c3136392c37342c3131392c3136382c3137322c33382c3130382c3133322c38392c3231372c3132362c3230302c36302c33355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "23384ff83d5ed039e2719b523103861accec849e9659e6424e673ec4d1504ccc", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133382c3231332c3232362c3137372c38342c3132332c37392c3134362c33302c3136352c37392c38312c3138392c37372c3137392c3131312c3235332c3131322c3130342c35352c3234372c3231362c3133302c31372c37372c342c3134312c3234382c38362c38392c3133352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c39322c3230342c3131342c3131382c3235322c3137302c38332c37372c3137322c3233322c35312c37392c3139342c32342c3232312c3137312c3138302c3231312c34302c3232372c37302c3137352c332c38342c3131372c34332c3131312c3234362c34342c31332c32302c3133332c3232352c31322c312c34342c3233322c3234362c3139362c35342c3138352c39332c392c3234342c31312c31352c3135395d2c22696e6465786573223a5b302c312c322c342c352c362c382c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32302c32322c32352c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34312c34322c34332c34342c34362c34372c34392c35302c35312c35322c35342c35352c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39332c39342c39362c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137342c3132312c39382c3138332c3133342c3232302c3139392c3230312c3136362c3136302c3139372c3132372c3233312c3133322c3133352c3139382c3230372c3134332c3137382c3133392c3138352c39352c3232372c35302c3132372c35322c3137312c3139342c37302c3232372c3130342c3131382c3234382c3133372c36302c3133332c34362c39382c3133372c3133342c3139332c3135372c35322c32362c31342c3234302c34362c37392c332c372c3137322c342c3139322c3135312c3131322c3230352c3135332c34352c3232312c3131312c3137382c3134302c33302c3232392c37392c3232372c37322c35332c31392c3233372c3231312c3133332c38392c3233392c3234322c36302c3230352c34302c34342c38302c3133302c36382c3234352c3231382c3231372c34372c39372c3134322c3138392c382c32372c3137362c34312c36382c3131382c3131305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231352c31332c3130382c3131312c3138362c31342c3233312c3133312c3230382c36342c3233372c31302c3132362c3230322c3234342c3131362c3234362c38352c3235332c35332c37382c36312c34312c3134392c3234362c3135332c32342c3137302c3134332c3133392c3131312c3230315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "5ae44166aa823d57345d8003c66c75873c6a86b00080df5848949659fe84e789": { - "hash": "5ae44166aa823d57345d8003c66c75873c6a86b00080df5848949659fe84e789", - "previous_hash": "0df5f7ffabd82b31942966f6f496059483caf8dfe889d36137a81cf19b205315", - "epoch": 14, + "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac": { + "hash": "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac", + "previous_hash": "a17056bc0845e01638d5152b4e47f46e56d74ff4d150cafe2b7b9d2807396f23", + "epoch": 17, "signed_entity_type": { - "MithrilStakeDistribution": 14 - }, - "beacon": { - "network": "devnet", - "epoch": 14, - "immutable_file_number": 3 + "MithrilStakeDistribution": 17 }, "metadata": { "network": "devnet", @@ -1173,36 +1124,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:57:30.548864484Z", - "sealed_at": "2024-09-09T12:57:30.944144073Z", + "initiated_at": "2024-10-28T13:28:39.444672557Z", + "sealed_at": "2024-10-28T13:28:39.586348937Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "stake": 13333333334 + }, + { + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c31302c3234342c3133372c32312c3134342c3233312c32312c3135312c37382c3137382c3234332c38372c36332c35362c3132372c3139302c37362c33342c3231382c32332c3134362c34382c3134352c35362c38372c31342c3233382c3135302c38392c32352c39335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "2896c9bb9cfe6cbea128045863f2c91bbf00c89ddcc920a881b52ac6ba2a069a", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b36382c3134362c33302c36382c3133372c31342c3234342c3131312c39332c3231382c37362c3135302c3233322c3231392c3235312c3234332c37302c37312c3132372c3132392c3232392c39382c31362c36312c392c3132312c3233372c3231382c3232312c3231382c3132342c38395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138322c36302c31302c3134352c37302c3135382c37312c3132312c3233302c3234302c3133362c36372c3137322c3233382c3132332c37312c3233312c352c36372c3134372c3139392c31352c3130332c3135322c3232392c3137352c362c3137302c38332c39332c3232312c34392c31312c3231382c3130362c3138352c3134312c3135392c37362c3138322c3132332c37322c36372c31322c38352c32302c3230332c3232315d2c22696e6465786573223a5b302c312c332c342c362c382c392c31302c31312c31322c31342c31352c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35322c35332c35342c35352c35362c35382c35392c36302c36322c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37382c37392c38312c38332c38352c38362c38372c38382c38392c39302c39312c39322c39342c39362c39372c39382c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3136362c3135392c35322c352c31392c3132392c3130302c36352c362c3139392c3235332c3130332c3130372c36362c322c39392c3139352c3138302c3134352c3134332c36342c3233362c3233322c3235322c3132372c3235312c36332c3234312c3233362c38332c3134322c35342c35382c3131302c3131352c3135392c3138332c3138312c39362c3132302c3233312c3234302c3233322c3234352c3135392c3133312c3138392c3134382c382c33382c31362c38332c35342c3131372c3135392c3132372c3230382c3230382c37382c39322c372c33332c3134302c3131362c3137322c3231342c32302c3138312c3132332c3134342c3139312c35362c3230322c35312c36302c38382c39392c32372c3230302c3230352c3135332c3131372c39352c36382c3137332c3231312c3132372c3135312c3136302c3136392c3137352c36382c32342c3131362c3233372c3234385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131352c37342c3132302c3137382c3132362c3134382c3231322c3131372c3138332c3232372c36382c3132382c3135352c3138322c34332c3132382c39352c3137302c32382c3231302c38352c3135302c33372c3136362c3135392c3133372c3230392c3135342c33362c3234362c3232342c3135395d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "79f981da72fd7151c667882e657ea521c64e2db00105d871fb04d4d8cfd6044d", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137392c3137382c37322c3230342c35352c3132302c3138332c3133392c3232372c32352c322c3130322c3232352c3136362c36302c3234342c35342c32322c3231342c3133342c3132372c3135362c35312c3231342c3136372c3138392c36362c3234322c3137302c3139362c3233372c3137385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136352c3232392c3231372c39352c3138382c3138362c3235312c3137342c33302c3231322c37372c3131382c3233392c33302c3133302c3230392c39352c3233302c3132362c36352c35342c38382c3139322c34322c3139352c3232322c36372c31362c31342c3235342c3134312c3231302c3230302c3134392c35312c3233372c37352c3131382c34302c3134342c3232372c3131322c32372c35372c3233362c3234362c3131372c385d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c392c31302c31322c31352c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32392c33312c33322c33332c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35312c35322c35332c35352c35362c35372c35382c36302c36312c36332c36342c36352c36362c36372c36382c36392c37302c37322c37332c37342c37352c37362c37372c37382c38302c38312c38322c38332c38342c38352c38372c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138312c3230352c34362c3137332c3136302c3134342c3133392c3230302c37352c36372c31322c3138312c3230352c34352c3232332c33312c3231332c3136352c35302c3232342c3137352c3130372c35302c31322c3137302c3137342c37312c3233372c3135332c31342c3138302c3233312c34372c3231332c3137312c3130342c3230372c3139322c39352c3137322c3137322c3137372c36382c3133362c3233382c3134322c32352c3137312c352c32372c3135322c3133312c3139382c382c3231322c3135322c3230302c3135372c3230302c37392c3137312c38332c3135312c31362c3230312c38382c34392c3132342c3139332c34322c302c31362c3135392c3139332c3131312c3135322c3135352c3233342c35352c37342c3232362c33362c3231322c3231382c3231322c3234332c3132392c3130392c3133382c3133382c3138322c38382c3230312c3137362c31302c335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3132392c3130372c382c3232352c3232372c38392c3132352c3135362c3135302c312c35312c3233322c3231382c342c34322c3233322c3133342c3134362c3130302c3136372c3138362c3232302c3135392c3135332c35382c3137362c3233392c3232362c33372c3136302c362c38355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "5b2183f66de9d0004ee78f40aa3939ce3d3424824032803c08a4620b1e3e961f": { - "hash": "5b2183f66de9d0004ee78f40aa3939ce3d3424824032803c08a4620b1e3e961f", - "previous_hash": "11a168fe6f5b95fbd27e84d4484c8f8a3e3cbd60945cf15e0b379a24d531e5d2", - "epoch": 31, + "cc0600f2560620b0eb81f650307db1e556d090d74683377fa768a4ce9534f172": { + "hash": "cc0600f2560620b0eb81f650307db1e556d090d74683377fa768a4ce9534f172", + "previous_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "epoch": 18, "signed_entity_type": { - "MithrilStakeDistribution": 31 - }, - "beacon": { - "network": "devnet", - "epoch": 31, - "immutable_file_number": 9 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 18, + "immutable_file_number": 4 + } }, "metadata": { "network": "devnet", @@ -1212,36 +1166,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:18.369987574Z", - "sealed_at": "2024-09-09T12:58:18.758878632Z", + "initiated_at": "2024-10-28T13:28:43.238346695Z", + "sealed_at": "2024-10-28T13:28:43.379472402Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138302c31342c31302c31342c3231362c3139342c3234332c3132362c35342c3132302c32352c332c3232312c35332c34362c31332c35312c3136312c372c3230302c3135312c36382c3136372c3230362c38352c3139342c34332c31312c37302c3133382c3137362c36355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "a1a6a5cdd1936a6a65d71972f87e00e5f2e820b1b7be4b44b39981d03f274298", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "d3ba6c58e25f246a41ad2ce1053bd0b1d2bfe5c7aaa420191d0aefaa8c7ba933", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34382c38352c3233362c3134332c3134322c3133312c31322c372c36342c3135312c3131352c3231372c3235332c34342c3135392c35372c35382c32372c3131312c3131322c3131302c32362c37372c3233332c3135332c3135352c31382c33302c38362c3235322c3134352c3137325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135312c3137392c3139312c3135342c36372c3134322c36382c3136322c3139372c3232322c3134342c3230312c3139332c3137302c3139372c35302c3132312c3234392c38322c38372c3131372c3130302c3138302c3137312c38322c3136382c3133342c33312c3234322c3232392c3130392c3138332c3133352c3133392c3134322c31322c3130332c39322c31332c37302c36362c3235352c3134362c362c302c3138322c3131382c3139305d2c22696e6465786573223a5b302c312c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37312c37322c37332c37342c37352c37362c37372c37392c38302c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39362c39372c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133332c32362c3234302c3131322c33352c34362c3133332c3233302c3234352c3133362c3139392c34382c3135392c3135382c32322c3139362c3138382c38372c33322c33332c3138332c34322c37342c37362c3234372c3233302c34322c35302c3133382c38302c3131332c36302c3131392c3136382c38332c382c3139322c3137372c37382c3134392c3132342c3131332c3235332c3232322c3139342c31362c3134332c33362c31312c3230362c3133372c3234362c3231302c3232372c362c3233302c3230312c32392c3233332c31362c3136352c34312c3230362c3232352c32362c33342c3134322c3130362c3138352c3133322c3234302c3137362c3131342c3137392c32332c34332c36372c3137312c3235322c33352c3234312c39372c3132362c32332c38372c38372c3136392c3231382c32302c3235352c3230312c34352c39342c302c3232362c33385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134312c3137352c3234362c3130342c31312c3139322c34322c35322c39322c3137312c3235312c31352c3133332c36352c3135342c3131302c39332c3232312c3131362c31312c3230332c3139362c3138332c3235352c3230322c31372c37302c36302c39352c3231302c3231322c3130305d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "a0fe68fbb7b57140bfacababf916e6462ddfd100e5d41fcacb4b49358e2625af", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133302c3137352c3130382c3234322c38322c3138352c3234322c31312c372c3137302c3232342c3233322c3232322c3232322c3139302c35382c38382c3233392c3235352c3137302c3137302c3134342c3136312c37352c3138392c3134352c32382c33352c3131362c38372c3138372c3135342c35312c312c32372c3232322c3137312c3138372c3138362c36352c3133332c3232302c3233362c3230312c3234322c37362c3130382c3135335d2c22696e6465786573223a5b302c322c332c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31392c32302c32312c32332c32372c32382c32392c33302c33312c33322c33332c33342c33352c33372c33392c34302c34312c34332c34342c34352c34362c34382c34392c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37322c37332c37342c37352c37382c37392c38302c38312c38332c38342c38352c38362c38372c38382c38392c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3133372c36382c3231312c3133322c3135312c33392c3132322c37392c35302c31372c3131382c38342c3234392c3131322c39382c3130312c31352c3233322c34332c3233362c372c3139362c3234342c33352c3138302c372c3132382c3231302c3134382c382c3232372c35342c3130352c3133312c3232332c3232322c32372c3138362c3131362c33302c3132322c32312c35362c3133322c3232372c372c312c3235302c31392c3231342c3131372c3139372c3133342c3230342c3134302c3234382c3134372c36332c3233302c31382c33342c3133362c3235332c3233332c3139332c3137302c36372c3138372c3235312c33312c3235342c35332c3135382c34332c3230322c3130332c38322c35362c31392c37392c31372c3138372c3135342c3137382c3131312c3231352c3134342c37392c38302c34392c32352c3130342c32382c3133312c3231332c31375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37392c3137342c3233302c3130312c31362c322c35392c3232392c36362c3133322c3133362c3130362c362c33342c3136352c39332c34362c3135392c31382c38392c36332c3133382c3137322c3134392c3230302c35392c362c3136352c3133322c3233322c3235342c3233335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9": { - "hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", - "previous_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", - "epoch": 60, + "d0aa596e8f31857d769a38511adfbadb12d31129c92212ef2029f82010584715": { + "hash": "d0aa596e8f31857d769a38511adfbadb12d31129c92212ef2029f82010584715", + "previous_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "epoch": 20, "signed_entity_type": { - "MithrilStakeDistribution": 60 - }, - "beacon": { - "network": "devnet", - "epoch": 60, - "immutable_file_number": 19 + "CardanoTransactions": [ + 20, + 599 + ] }, "metadata": { "network": "devnet", @@ -1251,36 +1208,41 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:39.556574352Z", - "sealed_at": "2024-09-09T12:59:39.691261261Z", + "initiated_at": "2024-10-28T13:28:49.379087940Z", + "sealed_at": "2024-10-28T13:28:49.511809574Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "599" } }, - "signed_message": "3d2930126f7ee6f7cc6070383ca4df669a206614cddfa53de0b7d0b0145dde80", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132382c3231332c3130332c3137392c31312c37332c32312c3230312c3234392c3235352c32382c38312c36312c3235352c3130302c35352c3135302c3135372c38322c31372c33342c31362c3133332c32362c3139332c3231352c3232382c3134332c3232382c32312c39372c3131372c35362c3231392c37322c31352c3232372c332c3234372c33372c33362c38382c3132312c332c3135392c3133322c3137352c305d2c22696e6465786573223a5b302c312c332c342c352c372c382c31302c31312c31332c31342c31352c31362c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33332c33342c33352c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34392c35302c35322c35342c35372c35382c35392c36322c36332c36342c36352c36362c36372c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39302c39312c39322c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136342c3230372c332c34332c33322c3232332c3130372c3232382c36382c352c3230342c3130362c35302c3234322c3131312c32362c34312c3135332c35352c3139352c3134332c3132392c32302c3139372c3133312c32392c33312c3137342c3230362c3133382c3135342c3130392c3139362c3233312c37322c3132372c332c33322c36322c34372c3130342c322c3234392c33322c3234392c3232312c3138322c33362c322c3134332c3234312c36332c3136312c3137342c3133312c32362c3234342c3136382c322c3232372c3135352c3231392c35342c37362c3232352c312c3135372c39352c39312c3131362c3135392c3230302c3131382c3131332c31312c37312c33372c3231322c3233312c3232352c3230322c3136342c39302c322c34362c332c35322c32322c3233352c32322c3133332c38342c342c3133302c3139312c3139305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3137332c3131322c33382c3138302c3136392c3133332c3131302c37372c3234382c36332c38392c33332c3133332c3139322c35362c3137312c3131372c39302c3235352c39302c3234312c3233372c33312c31382c3137332c34332c3230382c34302c34362c35352c3234342c3135395d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "bd967dd0428d2b8fc0f12d20f398ecf5c04d0037979e9dc02db560d9cbd4d377", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133332c35372c3133312c33342c3138352c3137322c3235322c3235312c3138342c392c38342c39342c3234372c3234362c3232312c3135312c36352c382c35382c38332c33342c3133382c3133322c3135322c3134342c32332c34342c36372c3132332c3234342c3132312c3132382c3233302c3132332c35392c3131372c3232362c3131362c3130302c3231322c3134392c3233392c3136342c3132322c382c39382c3234352c3233385d2c22696e6465786573223a5b302c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32382c32392c33302c33312c33332c33342c33352c33362c33372c33392c34302c34312c34332c34342c34352c34362c34382c34392c35302c35312c35322c35352c35362c35372c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37382c37392c38302c38312c38322c38332c38342c38352c38372c38392c39302c39312c39332c39342c39352c39362c39372c39382c39392c3130312c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134302c34382c38362c3136302c3137352c3132362c3137372c3139312c3231382c3139312c34342c38322c36352c35372c34362c3230342c32302c33302c3233332c3234352c31332c3235322c34322c37322c35362c33392c36342c32312c32372c3231372c37322c3233382c34382c31342c3137372c3233332c31372c3233372c38332c36312c3235312c35312c3231362c33322c3139382c3136352c3131322c37372c302c332c38312c39342c3233332c3135302c3233352c39362c32342c3135312c39352c39332c3230302c32362c3137322c3137382c38382c3233352c34342c31382c39342c32372c3137362c32382c31352c32352c3130332c3131332c3231352c3235352c3230392c33332c3234332c37312c3135342c3230382c3134322c37372c31312c3139322c3130382c3234302c3133382c3137352c3232322c31332c39352c35345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233372c31392c3234362c3130302c3137392c3135302c35322c34352c35362c32392c3235342c3132322c3135312c32382c3233362c31332c35392c3130382c37392c3133362c37362c32312c3134372c3234342c3132372c3136382c3233342c3138372c3133322c3235322c3231352c3135335d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4": { - "hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", - "previous_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", - "epoch": 56, + "dc13344480ffb882280daf3d20e1ab5f6ce2fe4fc40a46a28b02fa0f1910f04c": { + "hash": "dc13344480ffb882280daf3d20e1ab5f6ce2fe4fc40a46a28b02fa0f1910f04c", + "previous_hash": "9866d2d55271b0db4bb316a31d4afe912a1769a25de6bb720f3333ec59a682c1", + "epoch": 15, "signed_entity_type": { - "MithrilStakeDistribution": 56 - }, - "beacon": { - "network": "devnet", - "epoch": 56, - "immutable_file_number": 18 + "CardanoImmutableFilesFull": { + "network": "devnet", + "epoch": 15, + "immutable_file_number": 3 + } }, "metadata": { "network": "devnet", @@ -1290,40 +1252,36 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:28.327599145Z", - "sealed_at": "2024-09-09T12:59:28.717577603Z", + "initiated_at": "2024-10-28T13:28:34.080161025Z", + "sealed_at": "2024-10-28T13:28:34.213750458Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "snapshot_digest": "498307bebaab40a9acafebb1e0409a9c97ec46bbd65098aef27f4b46d6713c0b", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133382c3231332c3232362c3137372c38342c3132332c37392c3134362c33302c3136352c37392c38312c3138392c37372c3137392c3131312c3235332c3131322c3130342c35352c3234372c3231362c3133302c31372c37372c342c3134312c3234382c38362c38392c3133352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "e489bfc55493fff216a2515158e999757a9a196190caaf2c151f279352965cc6", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c3136362c3135342c36352c3232362c32332c31352c3132342c352c36322c3137372c34312c3136312c3232392c36352c31392c3133362c3230332c34322c3135312c3132332c3231342c36322c33392c37392c3232372c3234322c32342c3139342c3134302c3234362c302c3139362c33312c33322c33392c3134362c37392c3134382c3139372c3137382c3133392c3139382c3136372c3135362c3234322c31342c3131335d2c22696e6465786573223a5b302c312c332c352c362c372c382c392c31302c31322c31342c31352c31362c31372c31382c31392c32302c32312c32332c32352c32362c32382c32392c33312c33322c33332c33352c33372c33392c34312c34322c34332c34342c34372c34382c35302c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36362c36372c37302c37312c37322c37342c37352c37362c37372c37382c38302c38312c38322c38332c38342c38352c38362c38372c38392c39312c39322c39342c39352c39362c39372c39382c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c3137312c36362c34332c3130332c3234332c3231302c332c3130392c3131392c3231372c33382c3230342c35392c31342c38322c3235332c3133312c37362c3234382c37342c35342c3234362c3136392c37352c3134342c3136312c34302c34332c3235312c37332c3131302c3235312c352c37372c31352c3131372c37332c3131302c35392c34372c3137302c31382c3133302c3130332c37372c3137372c39372c322c38332c3132332c3234372c35332c3139372c37362c3135392c3235322c36342c3139382c3232332c36362c32302c3138352c3234342c3231322c3233322c302c38372c39332c3130372c3134362c3233302c3235322c3139352c3135382c3232312c37312c3131382c3135342c3134332c37362c3233322c3136302c39392c39362c3136302c35302c3134362c37372c35372c3230312c3130302c35302c3133322c38322c3133325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3130362c3235332c322c3132322c35392c32302c3133392c35372c3139302c38372c3234332c3133352c31342c3232352c3134392c3234332c3231322c3137302c3232362c3132312c3133342c3234362c34392c3232302c39322c3130362c3133382c3134332c39372c31392c372c3139385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "a1b9dc785158f6c2f25e285b4788e2a7aa840ee72b405ef4c2be97a462748ded", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c3136332c3132322c3135302c3139392c3137302c3132372c3138342c3138382c35312c3130332c36382c37372c3130312c3234302c39362c38372c3139312c35342c3232362c36342c3130302c37362c3231322c3233312c31352c35342c3135332c3230362c3233382c3130382c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138302c3233382c3134392c38322c32342c3138332c32302c32302c3230342c3136362c3232382c3133382c3131302c32362c3230372c372c3231312c3134372c3231342c3131392c39392c35302c3131372c3132372c3131362c3232312c34302c36382c36352c3234302c3137392c3132342c3132392c33372c3230352c3234392c3231342c3130342c3135312c3131382c32372c3138392c31302c36312c3230382c3135332c37362c35325d2c22696e6465786573223a5b312c332c342c31322c32332c32362c32372c32382c33372c34332c35302c35322c35332c35342c35392c36362c37302c37322c37382c37392c38322c38332c39332c39362c39382c3130312c3130325d2c227369676e65725f696e646578223a307d2c5b5b3133392c3231352c35362c3130392c3139322c39372c36322c3137342c3134392c38322c3131322c3231352c3231312c3137302c32312c3130322c3136372c3134382c38302c33322c31342c3233342c31312c3134392c39362c3136322c3233372c3231322c3135362c3138342c32322c32382c33342c31382c35392c38332c31392c3130322c3130302c36362c37312c3137322c33342c39332c3139352c35352c3138342c38352c31342c3235302c37382c39342c3137342c3132392c32302c38322c3230302c39352c34382c34352c37332c35372c3130392c3230302c3132332c34332c38362c31312c3138362c38302c38322c38302c31342c3138372c3135302c3131392c35332c38302c37352c3233372c3135312c35302c38392c3234332c3231302c34332c3130322c3136332c3234312c3230332c32362c3133352c33332c32302c34302c31375d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3137302c3135302c39302c33342c3134332c33352c3232322c3139392c3130312c32362c3136312c32392c35382c3230372c3231342c3134332c3134362c33392c3137392c3232312c3135352c3134302c37332c3136312c3233332c39362c3134392c3131382c3133342c32322c32322c3131392c38382c3232312c36372c3131322c33372c312c35382c3133382c3139322c35352c3138372c34362c33342c34392c32332c3136335d2c22696e6465786573223a5b302c322c352c362c372c382c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32352c32392c33302c33312c33322c33332c33342c33352c33382c33392c34302c34312c34322c34342c34352c34362c34372c34382c34392c35312c35352c35362c35372c35382c36302c36312c36332c36352c36372c36382c36392c37312c37332c37342c37352c37362c37372c38312c38342c38352c38372c38382c38392c39302c39312c39322c39342c39352c39372c39392c3130302c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134312c3139342c3139322c3131342c39342c31322c39342c33392c3132352c3134332c31372c3139372c3132312c35322c3139342c3139322c36382c3232312c38322c3132352c31302c34342c3234302c3132302c39342c3132372c3133392c31302c3235332c36302c3133342c3139302c36322c3233362c3134322c3230312c36362c32342c3133362c3133302c3233302c37382c3234382c39302c38322c3134302c3235312c3135302c31392c3136392c3232342c3131342c35312c3231372c37352c34352c3135352c3131322c3130302c39382c37352c32332c3132302c35322c3136332c35362c3232372c32352c31362c3134372c3232382c3131392c33312c3132372c332c36392c3133332c36342c3134392c37302c3233352c31372c3233342c34362c37352c37382c3234302c3138362c3234352c31332c31332c3133322c3133392c3139392c3233362c35375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "5f3effd9b5affda25669a7cec34e51c2fcd49534f070b68e6d9e12f299fdbdc1": { - "hash": "5f3effd9b5affda25669a7cec34e51c2fcd49534f070b68e6d9e12f299fdbdc1", - "previous_hash": "aa84c4ed03004982f9667958a701b223be8d452905a460a36f452be26bc81132", - "epoch": 42, + "dffe3153011c0dc7e4174c5d21b466237ee94ed0c0ff09883c6e82712ab2cd50": { + "hash": "dffe3153011c0dc7e4174c5d21b466237ee94ed0c0ff09883c6e82712ab2cd50", + "previous_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "epoch": 18, "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 42, - "immutable_file_number": 13 - } - }, - "beacon": { - "network": "devnet", - "epoch": 42, - "immutable_file_number": 13 + "CardanoStakeDistribution": 17 }, "metadata": { "network": "devnet", @@ -1333,37 +1291,68 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:58:50.852842032Z", - "sealed_at": "2024-09-09T12:58:51.111744682Z", + "initiated_at": "2024-10-28T13:28:42.968842068Z", + "sealed_at": "2024-10-28T13:28:43.107970259Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "stake": 13333333334 + }, + { + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "snapshot_digest": "d23e8489473cf1f3ca0777c8534d0021c85927077a9918deb8970ec500a04048", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "17", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "689117c7aa118ad9c51216fb7ce5d649d6a472ad45104a9cb3c62220027c76fa", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136352c38392c3134362c3136352c3131302c3235322c3234362c3235312c3135322c3138312c3136332c32322c31302c3231392c34362c3132362c33392c3136342c32302c35392c39382c3136372c3138392c3136352c3234322c37352c3133372c3234302c3139362c3230312c36362c3134382c3133322c3139352c3234362c3230352c31382c39362c3230352c37312c3131302c3232322c3233322c3135382c3235302c31332c35372c37345d2c22696e6465786573223a5b302c312c322c332c352c362c372c392c31302c31332c31342c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33302c33312c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35362c35392c36302c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38382c39302c39332c39342c39362c39372c39382c39392c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3132392c3233312c3134312c39332c39332c3235302c38372c37372c3235352c3235312c3234392c3231302c3135392c39362c3130322c3135322c3134372c3234352c3132372c3139362c3134322c3135392c32312c372c3138362c3134382c3231392c38302c392c3130332c3136332c34302c39392c3231342c3233332c3133332c3233302c3231372c352c39322c39332c3133302c3132342c3132322c3231352c3137322c3131362c3137322c32352c3231322c37352c3136342c3137332c33332c352c3234372c33362c3232392c39362c3137302c3135332c32372c362c352c3131332c3137362c38302c3131312c3138382c38382c3231322c35372c3139352c37372c38302c3235302c3230352c362c34382c35362c3138382c37362c3138312c3130362c3136382c38312c3137312c3139352c3134362c3231312c35302c3136362c3230392c3131332c3137332c32365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231322c3135302c3131372c3138382c3132342c3234332c31392c3132372c3134382c36312c3235322c3134312c37322c3131322c3131392c3133372c3230372c3133392c312c3138312c3132362c3139392c33392c3235322c3131382c3139352c3231312c3231352c3233362c3230382c3133382c375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "daadf4ef8775b99e5f278e8a49c643e29135476ef082f30bf9914bd56286f894", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37312c3230352c3135352c3130302c32312c3133312c3135372c3230312c3131332c3132302c3139312c38392c31332c37342c38312c3133362c35382c3233362c38312c33362c34362c3130362c3137382c3134352c3230302c3131382c36392c37302c3138372c3130362c3136342c3139335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133342c31302c3234352c3231392c34312c39392c31302c37382c3134372c3136362c3136352c3137342c3235342c3135342c3136302c3231332c32322c3131362c3132382c33372c3232372c3230392c3234392c3134302c33302c3133332c3231322c3233342c34372c33302c3139332c39332c3233312c31352c37352c3233322c3139352c3232312c36322c3137312c35322c3134392c37392c3230372c3135332c31342c35382c3233395d2c22696e6465786573223a5b302c312c322c332c342c372c382c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32322c32332c32342c32352c32362c32372c32382c32392c33312c33332c33342c33352c33362c33372c33382c34302c34312c34322c34352c34362c34372c35312c35332c35342c35362c35382c35392c36322c36352c36362c36382c36392c37302c37312c37332c37342c37352c37372c37382c37392c38312c38322c38332c38342c38352c38362c38372c38382c39302c39312c39322c39342c39352c39372c39382c39392c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3133372c36382c3231312c3133322c3135312c33392c3132322c37392c35302c31372c3131382c38342c3234392c3131322c39382c3130312c31352c3233322c34332c3233362c372c3139362c3234342c33352c3138302c372c3132382c3231302c3134382c382c3232372c35342c3130352c3133312c3232332c3232322c32372c3138362c3131362c33302c3132322c32312c35362c3133322c3232372c372c312c3235302c31392c3231342c3131372c3139372c3133342c3230342c3134302c3234382c3134372c36332c3233302c31382c33342c3133362c3235332c3233332c3139332c3137302c36372c3138372c3235312c33312c3235342c35332c3135382c34332c3230322c3130332c38322c35362c31392c37392c31372c3138372c3135342c3137382c3131312c3231352c3134342c37392c38302c34392c32352c3130342c32382c3133312c3231332c31375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37392c3137342c3233302c3130312c31362c322c35392c3232392c36362c3133322c3133362c3130362c362c33342c3136352c39332c34362c3135392c31382c38392c36332c3133382c3137322c3134392c3230302c35392c362c3136352c3133322c3233322c3235342c3233335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "5f7b4754de2a6221c8a9f20c0fe024cc3a516354874b60a8651381863cc2d47e": { - "hash": "5f7b4754de2a6221c8a9f20c0fe024cc3a516354874b60a8651381863cc2d47e", - "previous_hash": "69405b53ab346dc38451bb60402190db798e4237e552ed391e04ef1aede05524", - "epoch": 21, + "e534f1bda85d1396c7e450aa4751c73f24dbda3f0c5b3421ea0a584c5959c39c": { + "hash": "e534f1bda85d1396c7e450aa4751c73f24dbda3f0c5b3421ea0a584c5959c39c", + "previous_hash": "", + "epoch": 12, "signed_entity_type": { - "MithrilStakeDistribution": 21 + "MithrilStakeDistribution": 12 }, - "beacon": { + "metadata": { "network": "devnet", - "epoch": 21, - "immutable_file_number": 6 + "version": "0.1.0", + "parameters": { + "k": 75, + "m": 105, + "phi_f": 0.95 + }, + "initiated_at": "2024-10-28T13:28:24.649343840Z", + "sealed_at": "2024-10-28T13:28:24.649344530Z", + "signers": [] + }, + "protocol_message": { + "message_parts": { + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3233312c37342c3234322c37312c3132332c3233342c32322c3136372c35382c39332c3233382c3138332c3132302c3139352c3139382c3232332c3135382c3231322c32332c38372c38342c32352c31312c3233352c3132362c31312c33322c3133302c32352c3132362c38335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "next_protocol_parameters": "cc890b19e701e993f03bec5b3aaba02b248f19712a3a24c5ede49fb0ec686430", + "current_epoch": "12" + } + }, + "signed_message": "7cd8c4e4d478b98d5c54e0df13a6edc326bab346059641d72b0c444c73dadcd3", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3233312c37342c3234322c37312c3132332c3233342c32322c3136372c35382c39332c3233382c3138332c3132302c3139352c3139382c3232332c3135382c3231322c32332c38372c38342c32352c31312c3233352c3132362c31312c33322c3133302c32352c3132362c38335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "", + "genesis_signature": "4498496a9001b85e4f43b0cdacd67e0975c4bcbe872acc915ff8ccfffade097a281d5bf791b979fcfbf69b51e9a227d126959bcf7bb25fe2d6e0c39242e99704" + }, + "e71776e71a6246fce8c1e8af66db2230ac27319a3332584f00d15cf318068577": { + "hash": "e71776e71a6246fce8c1e8af66db2230ac27319a3332584f00d15cf318068577", + "previous_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "epoch": 21, + "signed_entity_type": { + "CardanoStakeDistribution": 20 }, "metadata": { "network": "devnet", @@ -1373,40 +1362,37 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:57:50.268856690Z", - "sealed_at": "2024-09-09T12:57:50.676553978Z", + "initiated_at": "2024-10-28T13:28:51.826333953Z", + "sealed_at": "2024-10-28T13:28:51.958931360Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c3137372c3232392c3231332c3134372c3135362c3134312c3234332c31352c3135372c3135392c33362c36342c3130322c3231362c3232372c3133372c3135322c36302c3130362c3235322c3131372c3231382c3139342c3134352c3232302c3235332c3232352c35302c3137342c3131312c3132385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31312c3232382c33322c35302c3135382c3139392c3230342c3135332c3232382c3138392c38312c3232312c38352c372c3134392c3138352c3232342c3231382c35322c3138392c3134322c3134312c3137302c3134332c32352c3230372c31342c3232342c36362c33312c3133332c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "cardano_stake_distribution_epoch": "20", + "cardano_stake_distribution_merkle_root": "cbbba61b375a6d989b59f8ad077d354670ddbb6a08bbd7153beb5e2ce89340a0" } }, - "signed_message": "4736dfcce8a0423089d34b46530c8d28515114c218f65823b01656b27174a92c", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232322c39312c33372c3230352c34392c3231392c3233352c3232332c31312c302c3233322c3234362c34392c3230332c3233352c3232342c32362c32322c3131332c3132312c3133362c3234382c3137322c3137302c33392c3137362c3234332c3137322c3139322c37302c31352c39375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c342c3137322c3136312c34332c3131382c3139302c3235302c35312c3135322c34352c3230372c3230312c3138362c3135312c3131302c322c3233392c3230392c3131312c3234312c39332c33362c3135312c34342c332c3139372c3230392c39392c39362c3135342c3135352c3232302c342c3137392c342c3230352c3232372c3132302c3131352c3231332c3137322c3231312c35342c3131302c3133362c36332c32395d2c22696e6465786573223a5b302c312c322c362c382c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35382c36312c36332c36342c36352c36362c36372c36382c36392c37312c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39342c39352c39372c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136352c3135392c3231382c3132322c3233312c3230392c3138362c38372c3133332c3137342c3134392c3232392c3234362c3133372c3233332c38392c3139302c3137332c3132392c36372c3130342c302c3133312c3133332c3230322c3133322c3135302c3137382c32312c3132362c31362c39302c3232352c372c3138332c3235302c3231372c37372c3132342c3139342c322c38312c3233372c3136312c3133352c3134392c3133302c3132362c302c3130372c3231342c3132372c3135302c35372c3232382c3232392c3230362c3131372c39392c3138312c3134372c3234352c3139382c3134372c3133312c34362c39362c3139392c3130312c35352c302c31392c312c3231362c3137372c3138302c34372c3233392c34302c3130352c33332c3235322c32302c35322c3137322c31372c31312c3134362c38362c38372c33312c3139302c3133322c36362c31392c3231325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234312c39382c38332c3136332c36322c3130352c34332c3233372c38352c3134352c3131352c38302c3231372c3131332c3136372c38302c3232372c31392c39312c3131392c342c3231322c3233362c3234352c3234322c3139372c3136362c3133362c32382c3231322c3232362c36375d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "45d9d32911bbabadb0fb4d67b30e1640da19c878c52f9494f9a00346c6b5f20b", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3137302c37332c31382c3134322c38332c3235312c3232322c3230362c3131392c31312c3232332c35332c34342c3131372c3230392c32342c34322c3235332c37302c3132372c3132392c3132392c3138392c36392c3138342c37332c3139312c3138302c3139322c39342c3138302c3131365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c35312c32362c37322c3230362c31312c37312c3139362c31362c3137312c3136322c3230392c3139302c3132342c3136362c34322c3139312c32312c3231322c3132312c33342c33342c3135392c3130352c34312c3133332c36332c31362c3136342c3134362c3133372c3139342c3134372c3135342c36332c35302c3133302c3130322c3139302c31332c3132382c3139342c3139382c32382c3233392c3132372c3234372c3135365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31342c31352c31362c31382c32302c32322c32332c32342c32352c32362c32372c32382c32392c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34362c34372c34382c35302c35312c35322c35352c35362c35372c35382c35392c36302c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38312c38322c38332c38352c38372c38382c39312c39322c39332c39342c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134322c33302c342c35312c3134382c3130302c36382c312c3232382c3138332c3234312c3230332c34312c37372c3233332c3137382c3139372c35302c33332c382c3139372c34362c3235352c372c3131322c3138392c3139362c3137332c3130392c33352c3232302c31372c3139372c3136352c3130352c3132372c37392c34382c3232382c32372c33312c37352c3235312c35392c3231382c3138342c3136312c362c32302c35372c3136322c3134342c36352c31342c37322c3233312c35362c352c3139302c3137342c3231302c3132312c3138312c3136362c36312c3232362c3231372c3230372c31332c3133312c3135332c352c3234352c3132382c3230342c35332c3233322c3130302c31382c3230332c3139322c3135342c3133332c3133332c342c33392c33362c3132342c3235342c3137352c38342c32302c3131322c3138382c37302c37315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b34322c342c37392c3137392c3136362c3137392c3130342c39342c3234342c35332c3131372c33362c36312c3139322c37382c36372c3232312c3130392c35342c3135322c38302c3136312c3131362c33322c3131362c302c3232302c3136312c3139382c3137332c3230372c3135385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "60c5889afc6018d707b2a38be399497c01b44e35f47a7ee257a8b7bb5406d82b": { - "hash": "60c5889afc6018d707b2a38be399497c01b44e35f47a7ee257a8b7bb5406d82b", - "previous_hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", - "epoch": 51, + "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0": { + "hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "previous_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "epoch": 19, "signed_entity_type": { - "CardanoStakeDistribution": 50 - }, - "beacon": { - "network": "devnet", - "epoch": 51, - "immutable_file_number": 16 + "MithrilStakeDistribution": 19 }, "metadata": { "network": "devnet", @@ -1416,38 +1402,34 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:14.652125551Z", - "sealed_at": "2024-09-09T12:59:14.911883820Z", + "initiated_at": "2024-10-28T13:28:45.437737468Z", + "sealed_at": "2024-10-28T13:28:45.569199840Z", "signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "50", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "220b01159525d86593becee46b1fed0fd83d82d142a4441f8fd8431bdab865e6", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c3133302c3138372c34382c36372c3232392c3133352c3136362c3137322c3232382c3132312c302c34352c35392c3136342c3134392c3135372c3136382c3231312c32372c3235322c36352c37302c3234312c3235332c3132352c3136332c3131352c3136332c3134332c3230372c3233332c332c3231372c38362c3130392c34382c36352c3233312c33352c3133352c33342c3231302c3130382c33302c3232392c3230352c3131335d2c22696e6465786573223a5b312c322c332c342c372c382c392c31302c31332c31342c31362c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c33302c33312c33322c33332c33352c33362c33372c33392c34322c34332c34342c34352c34362c34372c34382c34392c35302c35332c35342c35352c35362c35382c35392c36312c36332c36342c36352c36362c36372c36382c36392c37302c37322c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38372c38382c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3138332c3234372c3231302c38362c3234332c33332c3134342c3235342c39322c3138312c3232352c36392c32392c31372c3139372c33312c33372c3132332c35352c302c3134392c3230392c31342c352c302c3130332c3231342c3231322c3139332c38362c3134332c3132372c3137322c3232312c3135382c3134382c392c3133342c3133342c35332c37312c32382c3131312c39302c3231302c3132322c3130302c3137342c362c3139302c3232312c3131332c3230332c3235352c34332c3130342c3138382c3232362c3132342c3136342c38362c3230322c3235352c36352c382c34342c362c33312c3131372c3233332c3235352c31312c3136392c3232342c3230332c3233372c36312c3234312c322c31352c392c352c3135342c3133362c37392c3132322c3233342c35392c3234372c33372c3230382c33322c31312c37322c39382c32385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134352c3132362c392c36302c3233352c35362c31332c38332c3136312c3136342c3138382c3231302c3234312c3134342c38352c3134362c3230332c3134352c3138322c3231362c34382c35322c3131312c3233342c36332c3135392c3137312c3133392c38372c39362c3134332c3233325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", + "signed_message": "e9f91de4f211cc7e1a7d125df27a543dd9787c642ac58c31017f0961c12bdfd2", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135322c352c3134392c3232312c31322c3136322c3135312c3232382c39362c3234362c32342c38302c3132372c3135362c38372c3233342c3138382c3136342c35382c35352c3132302c35392c3131342c3234312c31372c35392c37362c3233332c31352c3232332c3134302c3233312c3136332c36312c37312c3231302c32382c37392c3131362c392c3232382c382c38362c39322c3137362c3131332c3233382c36365d2c22696e6465786573223a5b312c322c332c352c362c372c382c392c31302c31312c31322c31332c31342c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33312c33332c33342c33352c33362c33382c33392c34302c34312c34332c34342c34352c34362c34372c34382c35302c35322c35332c35342c35352c35362c35372c35392c36302c36312c36322c36332c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37382c37392c38302c38312c38322c38342c38352c38362c38372c38382c38392c39302c39322c39332c39342c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133382c372c3133392c3135342c3136382c3130342c3232372c32332c3130312c35322c3231352c3135382c36372c38382c3136322c34322c33342c3233392c3134382c38302c3137372c33302c3139342c33332c36352c3232322c3230382c3234312c32302c3138342c3135322c3134352c35322c3134392c3132312c3232382c392c36342c392c362c33342c3132302c39362c3234372c3232392c3130382c332c3136352c31362c3132382c35342c37312c38352c3235312c3134302c34372c38322c372c3131382c3135312c3234342c3232312c382c3132322c3234342c31372c31302c3135392c3139382c3230382c3233342c3134382c312c32342c36332c3132322c3130312c3138312c32392c3132352c3232362c3234322c38302c3231332c32392c37302c3137302c3139372c3137362c35392c3139362c37322c31392c3135382c3131302c32325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138372c312c3230332c3232362c3139312c3131362c34382c36392c3138362c3136372c3235342c3136342c3138362c3235342c33332c3130302c34322c3132392c3231362c35352c3138332c3230372c36322c36342c3232342c3230322c37332c3135302c3138352c3131362c352c31385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7": { - "hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", - "previous_hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", - "epoch": 62, + "f729911e69d46a4e3b70bb454f6c3c3c94717db9651b1dd32d85bba53437b25d": { + "hash": "f729911e69d46a4e3b70bb454f6c3c3c94717db9651b1dd32d85bba53437b25d", + "previous_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "epoch": 19, "signed_entity_type": { - "MithrilStakeDistribution": 62 - }, - "beacon": { - "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 + "CardanoTransactions": [ + 19, + 569 + ] }, "metadata": { "network": "devnet", @@ -1457,2409 +1439,39 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:45.188270492Z", - "sealed_at": "2024-09-09T12:59:45.331998182Z", + "initiated_at": "2024-10-28T13:28:46.232735259Z", + "sealed_at": "2024-10-28T13:28:46.372307887Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" + "cardano_transactions_merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34362c33312c36352c3230362c3138302c31322c39342c3132362c3131372c3136312c3132332c33392c33382c3230302c3136372c3232382c3130352c3235302c3131332c3134322c3139332c3136322c3136312c3231332c3133312c3133322c3136342c3138342c3133342c36352c3136372c3235325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "latest_block_number": "569" } }, - "signed_message": "207cd61b42ef511abac11f5462c81dd3d16461015d7cc729b2e8ea682a1fd0ed", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c3233312c3230352c34392c3136362c3137372c3233372c3232382c38332c34312c3232382c3136312c3135312c33362c3230332c3139332c35362c3131302c31362c33392c39352c3138372c3130392c38382c39392c3233372c3234302c3137382c3230332c36302c3234332c3136302c32342c3232382c3234372c35362c34342c3136342c34332c3234362c3234392c3234332c31382c3134352c3137382c3137332c3233382c31335d2c22696e6465786573223a5b302c312c322c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32362c32372c32392c33312c33322c33342c33352c33362c33372c33392c34302c34322c34332c34342c34372c34382c34392c35312c35332c35362c35372c35382c35392c36302c36322c36332c36362c36382c36392c37322c37342c37352c37372c37382c38302c38312c38342c38352c38362c38372c38382c39302c39312c39322c39332c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3137332c3133332c3135392c3136312c3133362c3135342c3139332c3139392c31322c3134322c3131332c35382c37332c3133332c31342c3137392c37362c3234342c3231322c3230382c3136352c3138322c3139302c3139332c33332c34362c3234322c3230302c34322c31302c32332c31372c32332c3233362c3131322c3136372c3138302c3135322c3132372c38352c3234362c34332c3132352c39302c3133312c3137372c31302c34322c31392c3234352c3136302c3132332c3133372c3131382c3136302c31312c39352c35352c3131322c3131302c31322c32382c3134392c31382c3131372c3136392c31332c39362c3233332c3233312c31352c34342c33342c3131382c38372c33362c3131392c3235322c39312c39302c38342c3134392c36342c34382c3133392c3230372c31392c3133382c33332c3132302c3133342c3130382c342c3134342c3133322c32345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37302c3135322c3230312c35352c3131382c3131342c37392c34322c3134382c3132302c3232312c3139332c3138302c31342c3130392c33342c37352c3136322c3230382c33302c31332c3134382c3131372c33302c3233352c3139362c3230342c3130322c3133342c3231342c322c32395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "ee5cd2c4971b162f5484d0aeb11fbf93a6f2a643e71e5a47ed13810926136e57", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33332c34322c3132382c3136322c322c34342c3233382c3137352c32352c3130382c3131332c3235342c3132342c3138302c38362c3135332c3132312c322c3138302c3135322c33342c3132322c37312c3231302c3138392c3132332c3133372c3132322c3134392c3134332c31342c3134395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134352c39342c3131392c3137372c3131302c33382c3135362c3137362c3136372c34322c37392c38372c3135342c3131352c36392c3139352c3135372c3134312c3234322c3137382c3133332c3231302c3137382c34312c3136372c3138362c3232302c3130312c3232352c3135312c31352c39312c32382c3235312c3132342c3132302c3136382c35312c3134372c392c39342c3131382c35302c3134332c3231302c372c3232382c39375d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31342c31352c31362c31382c31392c32302c32322c32342c32352c32362c32372c32382c32392c33312c33322c33332c33342c33352c33382c33392c34302c34312c34322c34332c34362c34372c34382c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36332c36342c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38342c38352c38362c38372c38392c39302c39312c39332c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133382c372c3133392c3135342c3136382c3130342c3232372c32332c3130312c35322c3231352c3135382c36372c38382c3136322c34322c33342c3233392c3134382c38302c3137372c33302c3139342c33332c36352c3232322c3230382c3234312c32302c3138342c3135322c3134352c35322c3134392c3132312c3232382c392c36342c392c362c33342c3132302c39362c3234372c3232392c3130382c332c3136352c31362c3132382c35342c37312c38352c3235312c3134302c34372c38322c372c3131382c3135312c3234342c3232312c382c3132322c3234342c31372c31302c3135392c3139382c3230382c3233342c3134382c312c32342c36332c3132322c3130312c3138312c32392c3132352c3232362c3234322c38302c3231332c32392c37302c3137302c3139372c3137362c35392c3139362c37322c31392c3135382c3131302c32325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138372c312c3230332c3232362c3139312c3131362c34382c36392c3138362c3136372c3235342c3136342c3138362c3235342c33332c3130302c34322c3132392c3231362c35352c3138332c3230372c36322c36342c3232342c3230322c37332c3135302c3138352c3131362c352c31385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", "genesis_signature": "" }, - "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198": { - "hash": "68c9b5388bb91cc70f83d83d37e457e7dfa425aaa03d04f5788e28ec78c29198", - "previous_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", - "epoch": 59, + "f96feaa24deeb05e86e1c75cf50a0947a0924ed213f0609907681ff6e7132d29": { + "hash": "f96feaa24deeb05e86e1c75cf50a0947a0924ed213f0609907681ff6e7132d29", + "previous_hash": "3bb83a95eee930e17deb07f1e83b146125cd13c0ade99ef6dc7d764bda428e08", + "epoch": 14, "signed_entity_type": { - "CardanoStakeDistribution": 58 + "MithrilStakeDistribution": 14 }, - "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": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 49, - "immutable_file_number": 16 - } - }, - "beacon": { - "network": "devnet", - "epoch": 49, - "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:09.649612436Z", - "sealed_at": "2024-09-09T12:59:09.910512957Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "dc678af3014f4432303dbbc4f8c4e79c3e89816eacf2bbea993072c8762ac45b", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "b318e2d3fd95f43eab9ab6dcc6a29f40ff321c5bcaa67daf53cb56dba64428e1", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137362c34382c3231382c34372c3137352c37332c3130362c37372c3231342c3138362c3230322c3137352c302c3131362c38332c3130342c3131362c3133342c33362c3233362c35322c3132332c3132312c34332c3231312c31332c3139362c37372c3235312c39312c3135322c38352c3134352c36322c3235312c3231392c3233322c332c3137342c3137392c3139352c36392c38342c3133322c3133392c3234352c3133372c3230395d2c22696e6465786573223a5b312c332c342c362c372c382c392c31302c31312c31322c31342c31352c31372c31382c31392c32302c32322c32332c32342c32352c32362c32372c32382c32392c33312c33322c33332c33342c33362c33372c33382c34332c34342c34362c34372c34382c35302c35312c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37362c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c39302c39322c39332c39342c39362c39372c39392c3130315d2c227369676e65725f696e646578223a317d2c5b5b3135302c3137322c3136382c39312c34392c3135342c34362c3134372c312c3137342c3136312c3233332c3138332c37312c3234332c36382c3139312c34332c3133342c37302c332c3139332c3135372c3132302c34362c3231332c3138392c3134332c322c3137382c33362c33372c36362c3139362c3230392c3234322c3235332c3134332c3137302c39392c3132312c3232342c3235302c32382c35322c34362c35362c34392c302c31382c31312c3231312c3139362c32352c3138332c35392c3137382c3136352c35352c3233322c3231302c3130302c32382c3130372c34392c3131312c3131302c3232302c35322c3132352c3235342c36302c3233312c3232332c32382c3138372c31332c37312c3139312c3133352c34382c3235312c3130342c3131322c35332c3139352c3136352c3234352c34302c3235352c3130352c3235332c3139322c3130332c35312c37395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234322c3233392c3136332c35392c3135342c3138312c3235312c33392c3132312c3233312c3133302c3130352c34302c3131332c36332c3135312c35342c3137372c3231352c3136362c3131302c3130322c3138332c3136342c3133332c31322c3130312c362c31352c3135382c312c3136365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4": { - "hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", - "previous_hash": "4d674234cd3e602f78faea111462ddf994cc91222061df8627718b572a389afb", - "epoch": 48, - "signed_entity_type": { - "MithrilStakeDistribution": 48 - }, - "beacon": { - "network": "devnet", - "epoch": 48, - "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:05.890910721Z", - "sealed_at": "2024-09-09T12:59:06.283713437Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "c341a2585471a3efdfa3f5f234e792d6bb5df51cbb8ffb57ac5660016cb6e416", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c33332c31352c3230392c34332c3137352c3136362c36302c37362c3136382c3233392c39362c3233372c392c32372c31382c3235322c3134332c3231322c3136312c34372c33352c392c3132352c36352c342c3232322c302c33312c39322c37362c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137342c35352c3133352c372c37372c3137382c3233362c34372c35372c3233342c3234362c3136342c34382c392c38342c31342c3138332c3131362c3134342c3136322c3234382c35372c3134312c3232322c3135382c3133362c3233342c3231362c31312c3234352c3234332c3133322c3131342c3137382c3233362c3235322c3139352c3230372c3234382c38362c3136332c39302c3134342c34302c31372c35332c3135372c35335d2c22696e6465786573223a5b302c382c31302c31332c32322c32372c33392c34312c35332c35352c36322c36342c36372c37302c37382c38312c38322c38382c39395d2c227369676e65725f696e646578223a307d2c5b5b3133332c3134302c32332c33312c31382c3232322c3136322c3235302c3133372c34332c3137352c3137302c3231322c3130302c31312c3230302c3137362c3234302c3132312c3135362c32302c35312c3132312c3135332c3132302c3135382c37332c35382c34302c3131322c3233342c3136382c3139302c37362c3235342c3134342c3138352c35342c38362c3135322c3231332c34312c37322c3231352c3135352c32352c37382c3131312c392c3234322c37352c3232332c3133342c38352c3135352c3133342c36362c3136382c32352c3131312c3231322c39392c36332c35392c39332c362c3232332c35312c3231362c3130372c37392c36352c3133362c3132342c36332c3131312c39302c3136332c3231342c3135342c3137352c31352c3134322c36312c3131362c3131342c322c36352c37382c3234372c3133392c3134302c3234342c35332c32332c3131315d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3134302c3132322c3135322c38322c31382c32342c3235322c32362c39302c34372c3136392c3134322c35302c3133392c3232332c3131372c3233312c3230332c3131392c3134382c3131392c3135342c3135372c3134342c38342c3234312c3232362c3230382c3135382c34352c3133312c342c34312c36362c3233382c3139312c3231362c39372c3133352c3231302c33372c3233342c32342c3139352c3135332c32362c3235332c3135355d2c22696e6465786573223a5b322c332c342c352c362c372c392c31312c31322c31342c31352c31362c31382c31392c32302c32312c32332c32342c32352c32362c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c34302c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35342c35362c35372c35382c35392c36302c36312c36332c36352c36362c36382c36392c37312c37322c37332c37342c37362c37372c37392c38302c38332c38342c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137372c382c3136322c3138392c31392c312c362c36302c39302c3133322c3235342c3131332c322c3230372c3136352c3137352c3230362c35302c35342c3235322c3134322c3136392c3231392c39352c3130332c3133352c3137312c35342c3138392c3134302c3234302c37342c35312c3136392c3136372c3136312c31342c3139362c3138392c3139342c34382c3235322c37362c3134302c3233362c3137382c37302c33372c362c36322c3134332c3131372c3137302c3230392c3135302c3138312c33372c37362c31392c35342c3233352c33392c3130312c37302c39342c32362c332c37312c3235332c36362c3136392c3231302c3133322c352c3133342c32362c31372c3230382c3130372c3135362c3131372c3235322c3130392c35342c3230322c3138322c38332c3135312c352c3134332c32392c3137342c302c3233372c37392c35355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "8478f709685731ce68e1cca798087b397f34a2d6849c6aacee8de9d2477fcbf4": { - "hash": "8478f709685731ce68e1cca798087b397f34a2d6849c6aacee8de9d2477fcbf4", - "previous_hash": "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230", - "epoch": 50, - "signed_entity_type": { - "CardanoStakeDistribution": 49 - }, - "beacon": { - "network": "devnet", - "epoch": 50, - "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:13.020088684Z", - "sealed_at": "2024-09-09T12:59:13.541613455Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "49", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "fdb6cef912087f02a15bc8cee14ea3f185dcfe328ce5754dd781773206f8f70d", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133312c3135312c3134322c3131322c3230362c3139312c38302c3136392c39372c3133352c39372c3136362c35322c3135322c3233362c37322c39302c39342c352c3131392c3136362c3131372c3233392c35382c3136352c3233372c3131332c3231362c38352c3131392c37392c3230352c3230332c32362c3136342c3232332c332c3233312c33372c3133302c34392c3134362c34392c3134372c3233372c34302c3232312c33385d2c22696e6465786573223a5b302c312c322c332c362c372c382c31302c31312c31322c31352c31362c31372c31382c31392c32302c32312c32332c32342c32352c32372c33322c33332c33342c33352c33372c34302c34312c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35352c35372c35382c35392c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39322c39332c39352c39362c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133362c3136382c3139362c3137392c35392c39342c36312c32382c3131352c33392c3130362c3135302c3134312c32312c3132362c3234392c3234302c33382c3135362c3136362c3235332c32322c35352c36302c3135342c3135312c3233332c33312c312c37322c372c3233372c3134312c34382c35312c38362c3134392c3233392c38392c34372c3232332c3230302c3231372c33312c39302c3136362c3137302c3131332c382c3134352c3132312c31332c36342c3137382c34332c31392c3130352c31382c32382c3137332c3230392c32392c3138342c3230332c31322c3136342c3130372c3133342c33302c31332c3139372c3130302c3138372c3133382c37302c32372c3231312c39382c36372c33392c3132372c3130322c38382c3232332c382c35392c31342c372c3139302c37312c3133322c38302c3131302c37332c38322c3135365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231372c34302c3137322c33372c3138322c3230372c3137372c3130362c3235332c33352c37322c3138302c31352c3137372c34352c35362c36392c3131352c3134322c3132342c37312c37312c3232352c3232392c3138382c31302c3130302c3138342c32352c38322c3131322c3134315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "8523a61911ac4fd6713b3bfe6dfd01d5de855181cc844bc2bdc23c3e3cccd0e4": { - "hash": "8523a61911ac4fd6713b3bfe6dfd01d5de855181cc844bc2bdc23c3e3cccd0e4", - "previous_hash": "2c8066e4159e0547d3da9ad5f1e1a0f8d7470cc2f63901b0fe22bba850b7c3ef", - "epoch": 35, - "signed_entity_type": { - "MithrilStakeDistribution": 35 - }, - "beacon": { - "network": "devnet", - "epoch": 35, - "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:29.472335820Z", - "sealed_at": "2024-09-09T12:58:30.510350627Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c3131302c3233362c3134382c3130372c3134302c3230312c3230392c3234342c37322c33312c3134392c3137352c38362c35382c3132312c3231312c3138352c3235322c3139322c38362c3131392c32332c31312c372c3137362c32392c39372c36382c36382c3139332c3230325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "50b46e89228ff2172ed94a13faf9d46c7b37d0f53eb48fceefb2ca487cc9dc36", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b332c36372c3135342c3133312c33342c3235312c3133302c31382c3132362c3137392c3133362c3231322c3233312c3136312c3132322c3232352c342c3132392c36322c33352c342c38312c3139322c3130382c3137342c3134392c3234332c3135302c33372c3135332c38332c36385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c3130382c36352c31302c37352c3132382c3131332c31392c3131362c3234342c3139362c3131322c3233342c39382c3234332c39312c34372c3132392c3135342c35312c33382c35382c33322c3233392c3139362c332c33352c3234362c3134332c3132332c38352c3231372c3139332c3137322c3234332c3234302c36362c3232392c3231372c32352c3131352c33372c3139332c3234352c32382c33392c36392c37365d2c22696e6465786573223a5b312c332c342c352c362c382c392c31312c31322c31332c31362c31372c31382c31392c32302c32312c32322c32332c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33372c33382c34302c34312c34322c34342c34352c34372c34382c34392c35302c35312c35322c35332c35352c35372c36302c36312c36332c36342c36372c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38312c38322c38342c38352c38362c38372c38392c39312c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134362c3134392c3232322c37382c3230312c3131362c3130322c36302c37372c3138342c3131382c34382c3132312c3135352c3138352c382c31372c362c3137312c38392c3234332c3134342c3232362c3133352c3136362c34332c362c3232332c3136302c3137322c3133392c3133332c36372c37362c37392c392c3234332c39352c37372c3136392c3130322c3230302c322c33352c3230332c33382c3130352c3133332c31322c3234372c3234332c3234302c3232302c3231372c37332c39362c35312c3230322c3232332c3138392c362c3233352c3134342c3138332c34352c3234382c3134322c3130362c32342c3139342c3230382c3137322c3136382c3139352c3230322c3131342c3231372c38352c3234322c3133362c31322c362c37382c3131342c3135302c322c3132382c3235302c3138342c38352c3234352c34332c3134372c3234362c38342c35365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3136342c3235302c3130342c3233362c34332c32382c3137352c3130312c35372c3132352c3131312c3137342c3231332c38372c332c3132342c3131322c38392c3233382c36362c3132372c3230302c3234352c3130382c33392c3234342c39322c3132312c3231352c3133332c3230322c32375d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f": { - "hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", - "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", - "epoch": 61, - "signed_entity_type": { - "MithrilStakeDistribution": 61 - }, - "beacon": { - "network": "devnet", - "epoch": 61, - "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:42.858335072Z", - "sealed_at": "2024-09-09T12:59:44.546445986Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "c7956a0623f530cd736e51ef05978d405d39ecfe7256f3f8e5c3118c2040b9a9", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3132392c3134362c3234352c3231392c3230332c3130312c312c3232342c3233342c3130352c32302c3130342c3132382c36372c32352c3234352c3132392c31342c3138372c39332c3134372c3133352c36372c3132302c3131302c39312c33382c33352c3233342c3130362c31352c342c3130372c38312c3232312c3136362c39332c3130362c3233302c36382c3233382c32352c35352c3139352c32352c31322c32352c3139335d2c22696e6465786573223a5b302c312c332c362c372c392c31302c31322c31352c31372c31382c31392c32302c32322c32342c32352c32372c32392c33302c33312c33322c33332c33342c33352c33372c33382c34302c34332c34342c34362c35302c35312c35332c35352c35362c35372c36302c36312c36322c36332c36342c36362c36372c36392c37302c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38382c38392c39302c39312c39322c39332c39342c39362c39372c39382c39392c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133312c37332c33312c31302c34312c3235352c3234362c34362c3137332c3135382c31352c3136312c34352c3135392c3135392c3231302c37342c3139342c3231352c3136302c39372c3230372c3130322c36302c3135332c3138352c3138382c3231372c36382c3132392c3231352c3235302c3235332c37352c3234322c36352c3132382c34382c3130302c342c3135302c32392c33392c38312c36342c3233352c39312c3138342c31382c37392c3138392c3131352c33342c36382c3134342c3135302c34302c38362c3139362c31342c3136302c38352c37342c3230352c32352c39352c3234362c3234352c3233352c3232352c3132362c3133332c3132392c32342c3138312c39312c3133372c33322c3232322c3235322c3130352c33372c31392c3134342c35362c3136302c3134362c38372c3138302c3133382c3134332c3233392c3235352c37362c3131352c3138325d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133352c3230322c3139332c39392c3234322c32362c39342c3232322c3137352c3135352c3235322c32392c38302c38332c3234312c3131362c3139392c35352c38342c3136342c3135362c3131342c38312c3233372c33362c3131332c3235312c3136342c3139312c3230372c32332c39372c3131302c3135342c302c34362c3135352c3233302c3233372c39312c31312c36392c34332c3230332c3233342c3133352c3234382c3232315d2c22696e6465786573223a5b322c342c352c382c31312c31332c31342c31362c32312c32332c32362c33362c33392c34312c34322c34352c34382c35342c35392c36352c36382c37312c38332c38372c39352c3130312c3130325d2c227369676e65725f696e646578223a317d2c5b5b3136372c3134372c33302c3235332c3133342c3136332c38382c3134332c3231312c3233342c3136392c3136392c34352c3137332c3134392c31322c3234332c3235312c3132382c3135302c3231342c3137302c3137342c31322c3138312c362c35322c3135332c3131312c39302c3134352c33352c36372c3232342c3135392c3231342c38332c3131372c33332c3230312c3131352c3133382c3131342c3234382c31342c31372c3231382c3230352c31302c3137372c3131372c3231392c34312c3233392c3233332c37332c312c3137332c3235302c3135342c3230302c3133332c35362c3138312c3233302c33382c3235352c3133322c39362c3138332c31302c3130352c332c372c39362c3132392c3137312c3234342c34342c3133352c37332c3130372c37332c3134312c3230342c3133332c3132392c3131312c38302c38342c3132342c3137332c3230372c3233362c3232392c3235335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "8ae6981cc6e17ef561f9466380cf3442d368e1b34d706f0690382ba24cd27299": { - "hash": "8ae6981cc6e17ef561f9466380cf3442d368e1b34d706f0690382ba24cd27299", - "previous_hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", - "epoch": 48, - "signed_entity_type": { - "CardanoStakeDistribution": 47 - }, - "beacon": { - "network": "devnet", - "epoch": 48, - "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:06.424224195Z", - "sealed_at": "2024-09-09T12:59:06.946064392Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "47", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "a1eefcbf6873c75852efee047af47cdbfcf711ad46138c1a8854ff705ca44212", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c33332c31352c3230392c34332c3137352c3136362c36302c37362c3136382c3233392c39362c3233372c392c32372c31382c3235322c3134332c3231322c3136312c34372c33352c392c3132352c36352c342c3232322c302c33312c39322c37362c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133382c352c33312c3138312c3130392c37362c36392c38342c35332c3138322c3230342c3134332c37312c38302c38382c3230352c3130362c3133342c3130352c3235352c31322c3233312c3131392c33342c3132322c35362c3233372c36302c35312c3230362c3131302c35352c31302c3139392c3231302c3131312c3231312c3232302c3234302c392c3139392c3231322c3233332c31322c3232322c3231382c36342c38375d2c22696e6465786573223a5b312c322c332c352c372c382c392c31302c31312c31322c31332c31342c31362c31372c31382c31392c32302c32312c32322c32342c32352c32372c32382c33302c33312c33332c33342c33352c33362c33372c33382c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35322c35332c35342c35352c35372c35382c35392c36302c36312c36322c36342c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37372c37382c37392c38322c38332c38342c38362c38372c39312c39332c39342c39352c39362c39382c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133332c3134302c32332c33312c31382c3232322c3136322c3235302c3133372c34332c3137352c3137302c3231322c3130302c31312c3230302c3137362c3234302c3132312c3135362c32302c35312c3132312c3135332c3132302c3135382c37332c35382c34302c3131322c3233342c3136382c3139302c37362c3235342c3134342c3138352c35342c38362c3135322c3231332c34312c37322c3231352c3135352c32352c37382c3131312c392c3234322c37352c3232332c3133342c38352c3135352c3133342c36362c3136382c32352c3131312c3231322c39392c36332c35392c39332c362c3232332c35312c3231362c3130372c37392c36352c3133362c3132342c36332c3131312c39302c3136332c3231342c3135342c3137352c31352c3134322c36312c3131362c3131342c322c36352c37382c3234372c3133392c3134302c3234342c35332c32332c3131315d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3137312c38352c3135342c3135322c36382c3232352c3231342c3232362c3232352c32382c35332c34392c3131322c3137312c3233342c3133392c362c3134392c3130322c3131342c3132312c3130362c31372c3230392c3139382c3139362c3135392c35302c3131382c37312c38302c34312c3135312c31322c3132352c3133342c3233302c37392c38342c3231382c35362c32312c3138322c3231352c38342c37332c35362c3232385d2c22696e6465786573223a5b302c342c32332c32392c33322c33392c35312c35362c36332c36352c37322c38312c38352c38382c38392c39302c39322c39375d2c227369676e65725f696e646578223a317d2c5b5b3137372c382c3136322c3138392c31392c312c362c36302c39302c3133322c3235342c3131332c322c3230372c3136352c3137352c3230362c35302c35342c3235322c3134322c3136392c3231392c39352c3130332c3133352c3137312c35342c3138392c3134302c3234302c37342c35312c3136392c3136372c3136312c31342c3139362c3138392c3139342c34382c3235322c37362c3134302c3233362c3137382c37302c33372c362c36322c3134332c3131372c3137302c3230392c3135302c3138312c33372c37362c31392c35342c3233352c33392c3130312c37302c39342c32362c332c37312c3235332c36362c3136392c3231302c3133322c352c3133342c32362c31372c3230382c3130372c3135362c3131372c3235322c3130392c35342c3230322c3138322c38332c3135312c352c3134332c32392c3137342c302c3233372c37392c35355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "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": 39, - "immutable_file_number": 12 - } - }, - "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:42.288258585Z", - "sealed_at": "2024-09-09T12:58:42.549722498Z", - "signers": [ - { - "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": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "40", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "591d5e967158922d17a2f7e8b16be0f9bb9d695140dfca6ee3670592c5ac079e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c31362c33372c34392c3137362c3234352c3134392c31362c3137352c35302c33392c3235302c33312c3131312c3134312c3230332c3136372c36372c3130302c3138372c38342c3234392c3234362c3131392c3230342c34342c3135322c31302c3231352c3132342c3235302c3138322c3137342c31312c34312c332c3232342c3231342c35342c3235342c3133392c3134352c38302c3231362c3138352c34342c382c34325d2c22696e6465786573223a5b322c362c372c382c392c31302c31312c31332c31342c31352c31362c31372c31392c32302c32312c32322c32342c32352c32362c32372c32382c32392c33302c33332c33362c33372c33382c33392c34312c34322c34332c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35382c35392c36302c36322c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39302c39312c39322c39342c39352c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134302c3133322c39372c3231372c37342c38302c31352c3136332c3138362c312c36302c38352c31332c3230352c3137302c3139372c3135362c3234352c3131382c33322c37362c3133312c3139352c3230372c32362c3230352c33382c3231352c3139302c3130362c35342c3235302c3135392c3232322c3232392c38342c3139312c3230392c3137332c3230322c31302c35362c3133382c3134382c3134392c3232322c36382c3139392c382c3234302c3134372c39362c37332c3131372c3130322c3230362c3137302c31352c3139352c3137322c3138332c3136302c3135322c3234332c3231302c3137332c38372c36332c332c3234392c3231382c37312c3232302c3136322c3137352c39332c3138342c36382c3130332c3133362c3134372c35382c3138352c3233322c31322c3138322c31382c3232332c32342c31312c3136302c35362c32392c3137372c33342c3134325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135322c3132342c3139372c3131382c3133302c32302c3133302c33312c3134312c33312c31302c31392c3130332c33332c39302c3233312c32392c36342c3135322c3133352c3132392c352c3232342c302c3135332c3231322c3136382c32382c3131362c3134372c3136352c39325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "96c79d6fe626fb73aeb7e4c61083522cd23aa0b5cbfe54fcf5e7bd75ec2c066e": { - "hash": "96c79d6fe626fb73aeb7e4c61083522cd23aa0b5cbfe54fcf5e7bd75ec2c066e", - "previous_hash": "aa84c4ed03004982f9667958a701b223be8d452905a460a36f452be26bc81132", - "epoch": 42, - "signed_entity_type": { - "CardanoStakeDistribution": 41 - }, - "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.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", - "version": "0.1.0", - "parameters": { - "k": 75, - "m": 105, - "phi_f": 0.95 - }, - "initiated_at": "2024-09-09T12:58:55.176416401Z", - "sealed_at": "2024-09-09T12:58:55.700889152Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "43", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "badf9df0eed8f4f1f918843f5eeaae76e4cb55d3391e1b0cb248eeb2b233db19", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135312c3233362c34332c34352c3234342c3230332c32362c3136382c322c3137332c3233322c3130332c3235342c38312c3232382c37372c3231392c3133362c3134322c34342c3132382c3136342c3134332c33392c3136382c34322c3136342c3131382c3231322c3135332c3139342c35342c37332c39362c3235312c3133302c362c3138332c3139302c3235352c31322c36322c3134332c35312c32352c36362c3136332c3233395d2c22696e6465786573223a5b322c342c352c362c382c392c31302c31312c31332c31342c31352c31372c31382c32302c32312c32342c32372c32382c32392c33312c33322c33332c33342c33372c33382c33392c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35342c35352c35372c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37382c38302c38312c38322c38352c38372c38382c38392c39302c39332c39342c39352c39382c39392c3130302c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134392c33342c34362c3133352c34362c3136382c39382c31322c37312c3134302c3132372c33372c3235312c35372c3234352c36342c3135322c3139332c372c36362c31392c32372c3136302c3234322c38312c3131312c3136352c3131312c3134382c3230352c3235352c31322c3138342c3135342c3132362c3136312c3138332c38332c3231342c3132382c3139302c31362c3234302c35342c3232342c3134342c3231322c35372c32312c3235352c3232372c37312c36332c35342c3230352c32392c38382c39392c3132392c37332c3136382c3233322c31302c3231352c3134382c3136352c3231302c37302c3132392c3133302c3132382c33372c3232372c3135342c37382c38392c3231382c332c32362c36352c3137372c3130302c34352c3137312c3234392c3131342c31362c3138372c33392c3134312c3138312c3136302c3233302c3135352c3134382c3130385d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3138352c3130342c35392c31322c3130392c34352c3132342c39372c38312c3233372c31352c39362c3137312c3139392c34302c3139342c3134382c32312c35382c3134372c32352c3233322c32352c3137302c3138332c33352c3232362c37382c3133322c35392c34342c33302c3235332c3233342c32322c33322c36342c3130312c31372c32332c38382c3231362c3139332c36352c39322c3130392c39332c3132355d2c22696e6465786573223a5b302c332c372c31322c31362c31392c32322c32332c32352c32362c33352c33362c34302c34312c34362c35332c37372c37392c38332c38362c39312c39322c39362c39372c3130315d2c227369676e65725f696e646578223a317d2c5b5b3136362c3232322c3231392c3139362c38362c3138322c392c3231302c3134392c3134362c392c3132322c3136362c33382c332c31302c3231382c3132342c3134332c3234382c38382c3234322c392c3131382c31352c3130362c3134342c352c3135312c3231312c3231322c37372c3231322c3233392c31362c3233342c36372c3232302c39322c34392c3133322c34342c31322c3232362c3134302c3138382c3130392c3136382c31362c3232372c34392c3232302c3232322c3131352c3132362c3231312c31382c34332c3139392c3131322c31362c36322c3136302c3234392c3139312c3134372c38332c35322c39352c3230382c3139392c3131312c3234302c3139392c3135392c3139332c3232372c3230312c3134342c3137382c3232332c31372c3232362c3139342c33322c3133382c32382c39362c39352c3139332c3232322c31342c3131312c3235322c38342c3232355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "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": 43, - "immutable_file_number": 14 - } - }, - "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.931768175Z", - "sealed_at": "2024-09-09T12:58:53.193372670Z", - "signers": [ - { - "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": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "96b088304f7cbbfab8ec65673305b2482e2aa871260790795cb665bf3ecff5c3", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c32392c3231362c3232362c3231312c3133392c38322c32322c3130392c3230342c3137382c3234312c33382c372c3132332c3231332c3137352c3132362c3134352c3136362c39322c31362c31352c3138342c3138372c38322c3234302c3132322c3233302c3131342c36382c3133322c3134312c3131302c3232342c3133382c3134372c3234362c34382c3136332c36372c3132302c3234382c39312c33392c3134382c37322c3134315d2c22696e6465786573223a5b302c312c322c332c342c352c372c382c392c31302c31312c31322c31332c31342c31352c31362c31392c32312c32332c32342c32362c32382c32392c33302c33312c33342c33352c33362c33372c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c36312c36322c36332c36342c36372c36382c36392c37312c37322c37332c37342c37352c37382c37392c38302c38322c38332c38342c38352c38362c38382c39302c39312c39322c39332c39342c39352c39362c39372c39392c3130302c3130312c3130335d2c227369676e65725f696e646578223a307d2c5b5b3132392c3233312c3134312c39332c39332c3235302c38372c37372c3235352c3235312c3234392c3231302c3135392c39362c3130322c3135322c3134372c3234352c3132372c3139362c3134322c3135392c32312c372c3138362c3134382c3231392c38302c392c3130332c3136332c34302c39392c3231342c3233332c3133332c3233302c3231372c352c39322c39332c3133302c3132342c3132322c3231352c3137322c3131362c3137322c32352c3231322c37352c3136342c3137332c33332c352c3234372c33362c3232392c39362c3137302c3135332c32372c362c352c3131332c3137362c38302c3131312c3138382c38382c3231322c35372c3139352c37372c38302c3235302c3230352c362c34382c35362c3138382c37362c3138312c3130362c3136382c38312c3137312c3139352c3134362c3231312c35302c3136362c3230392c3131332c3137332c32365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231322c3135302c3131372c3138382c3132342c3234332c31392c3132372c3134382c36312c3235322c3134312c37322c3131322c3131392c3133372c3230372c3133392c312c3138312c3132362c3139392c33392c3235322c3131382c3139352c3231312c3231352c3233362c3230382c3133382c375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "abd22dc580ac6cfd94ccf1f4eb1bdf53056ff78fd8e243da886b3a0a1142d24c": { - "hash": "abd22dc580ac6cfd94ccf1f4eb1bdf53056ff78fd8e243da886b3a0a1142d24c", - "previous_hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", - "epoch": 44, - "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "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": 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:19.880251776Z", - "sealed_at": "2024-09-09T12:59:20.275177193Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - }, - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b352c3232302c3139322c3234352c33342c37312c3130392c3131372c3138302c3231352c3138362c3135322c3137352c33302c31342c32342c3235332c3132382c3230302c34392c36312c32392c3136362c3133352c3133362c3233352c3232322c35312c3130302c39332c3135342c315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "fed1bf1f3cffdc655f6ad57197cde692a803802f74f1b3d1ab821fd8e3fbd757", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138312c32382c3132372c3131302c3135332c3231302c36362c3139362c35362c3132322c35302c3137332c3230372c38392c36382c3139302c3135352c3135302c32312c39372c38302c33312c3136392c36342c32392c3230362c37372c35302c3135352c3139352c3139372c3232382c34322c362c3130302c39392c32302c302c35322c3232362c3230392c31332c3132352c3134312c31372c3136332c35382c36345d2c22696e6465786573223a5b302c362c392c31322c32302c32332c32382c33302c33352c34312c37322c37352c38322c39372c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134342c3234342c3233362c3230332c3130372c31362c3136312c36392c3131302c3230362c3137322c36322c342c31352c31392c3235332c33342c35312c3235322c39342c3138352c31392c3138352c3231372c3233322c3131372c3230342c3232302c36352c3233362c3134352c3234342c33362c3234392c3234312c34342c3138372c3133342c32312c3139372c33322c3234362c3230352c34332c36332c36372c3231322c3133352c31312c3134342c3235322c39342c39392c3139362c3230372c3135392c3137382c3132392c3138392c3130382c39302c302c3131322c342c3235302c3137362c3230312c39342c3233382c3230392c3138322c3230312c3233352c3130362c35312c362c3133372c39382c3136392c38322c3134342c34372c3130332c37312c3131312c35372c3134332c3139322c3231392c3136392c39312c3132362c3133392c3130362c36392c3233345d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3134382c35302c37382c3233312c33342c3138312c3230372c31372c3232352c3234312c39382c3133312c3234332c3130352c3232362c3132342c3133352c39342c38322c3231332c31392c3134352c3232302c35342c38342c35302c3131332c3133302c31322c3232332c3133372c35382c3130342c35392c3232332c3138322c34362c38322c3136392c3233322c3135362c34332c3133392c3130342c3234312c3232382c3136302c33395d2c22696e6465786573223a5b312c322c332c342c352c372c382c31302c31312c31332c31342c31352c31362c31372c31382c31392c32312c32322c32342c32352c32362c32372c32392c33312c33332c33342c33362c33372c33382c33392c34302c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37332c37342c37362c37372c37382c37392c38302c38312c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137372c3135312c3133332c3135352c3230372c3235312c3135382c34342c3234372c3134372c3139312c3233382c3134312c3230302c37312c39342c34372c38362c39312c39352c3232302c32322c36312c3232312c31392c3139392c34392c3231372c3137382c3133332c3132322c3135362c35322c35342c3230392c3138372c3137372c3136322c3131342c3135302c382c39332c31382c35392c3138342c3230352c37372c37372c342c3132312c31342c3230302c3234372c3134322c362c3137332c3134302c36332c3133382c3133382c37352c3230372c3232362c3131392c3231372c3233352c362c32392c37322c31392c3133352c3136362c332c38302c3133342c3234332c3136342c35392c362c3234312c3231382c3131392c3139372c3135392c3139342c3132302c3231332c3136352c3135312c3133362c3135332c33372c3234382c34312c3133332c315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9": { - "hash": "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9", - "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", - "epoch": 56, - "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 56, - "immutable_file_number": 18 - } - }, - "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:29.386268509Z", - "sealed_at": "2024-09-09T12:59:29.909816033Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "4b8f5d360e448ba376fab4563bd57d49c707617a382fc16f2fd5e30ea6a761de", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136362c38352c33332c31382c3132342c37392c3234392c3136352c3134302c3134362c3233382c34352c32332c34332c3137302c3133322c3235332c3137362c3130312c35342c3136312c3133342c38302c3136302c3234392c31312c3130372c3134312c3130312c3134302c37372c3233322c3133382c3138352c3132322c3132342c32372c3134342c37382c3136312c3130312c32392c39332c3136302c37382c34392c36392c3233375d2c22696e6465786573223a5b302c312c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c32302c32322c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37332c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39302c39312c39332c39342c39352c39362c39372c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c3137312c36362c34332c3130332c3234332c3231302c332c3130392c3131392c3231372c33382c3230342c35392c31342c38322c3235332c3133312c37362c3234382c37342c35342c3234362c3136392c37352c3134342c3136312c34302c34332c3235312c37332c3131302c3235312c352c37372c31352c3131372c37332c3131302c35392c34372c3137302c31382c3133302c3130332c37372c3137372c39372c322c38332c3132332c3234372c35332c3139372c37362c3135392c3235322c36342c3139382c3232332c36362c32302c3138352c3234342c3231322c3233322c302c38372c39332c3130372c3134362c3233302c3235322c3139352c3135382c3232312c37312c3131382c3135342c3134332c37362c3233322c3136302c39392c39362c3136302c35302c3134362c37372c35372c3230312c3130302c35302c3133322c38322c3133325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3130362c3235332c322c3132322c35392c32302c3133392c35372c3139302c38372c3234332c3133352c31342c3232352c3134392c3234332c3231322c3137302c3232362c3132312c3133342c3234362c34392c3232302c39322c3130362c3133382c3134332c39372c31392c372c3139385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "bb634f5aea5ceb4ece0a807375c17e6326d83102617a71267eb7eb6671041df0": { - "hash": "bb634f5aea5ceb4ece0a807375c17e6326d83102617a71267eb7eb6671041df0", - "previous_hash": "a2aa3c28351b86b3516170e7e09c100ba88ab8af244038e036333d34c6cc98a2", - "epoch": 40, - "signed_entity_type": { - "CardanoStakeDistribution": 39 - }, - "beacon": { - "network": "devnet", - "epoch": 40, - "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:43.842655611Z", - "sealed_at": "2024-09-09T12:58:44.240202510Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "39", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "8845afdc3d9bfa3b91fdddee09e5ba72232b0f2894393b371b128b260050b003", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233352c3133362c37322c37312c3234342c3130342c3130382c3137322c3138392c36302c37342c3132342c3235332c3230382c35312c3138302c342c3133352c382c3134362c3130312c3138312c3131362c3232382c3130342c3139372c3136392c3139312c3136362c35342c36332c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137362c3232392c3230372c3138392c34382c3134302c3131362c3135362c3132392c3137312c3135382c3135302c3233362c3139352c3134372c3135352c3136392c352c33352c3135382c3131312c3234372c35382c3230332c35382c36332c3138302c3137362c34372c3138342c3133362c35352c3234302c3134362c3132362c39352c3233342c3137352c3231302c37372c3137382c36342c312c3130392c3135342c3235342c3235322c3131305d2c22696e6465786573223a5b302c312c322c332c342c352c372c392c31312c31322c31332c31342c31352c31362c31382c31392c32352c32362c32392c33302c33312c33322c33332c33352c33372c33392c34302c34312c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35372c35382c35392c36312c36322c36332c36342c36362c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38362c38372c38382c38392c39312c39322c39332c39342c39352c39362c39372c39382c3130302c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136382c362c32392c3232332c3133332c3133332c3131392c3136312c3231362c3139302c3139382c3230342c35352c3134322c35332c3233302c32392c3137362c3133332c3135362c3135342c3235352c3230362c3130322c37392c3234322c35342c3230352c3231302c3137372c3135382c36302c3132362c38332c3133372c3134302c3231312c35382c3232322c3233372c3232342c31372c3138302c3130342c31322c37352c38342c3133372c322c3136312c3235332c3233372c31382c3135372c33342c3135392c3139302c3231382c3139342c37332c3138392c38372c39302c34372c36372c3235312c35352c3234342c3138352c3231392c3137322c3132302c36322c35352c39382c3133352c3234352c35322c3133342c3133332c32322c3137302c362c33352c3130372c3135382c33392c3135372c31322c33372c35362c362c32382c35352c31332c3134365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33332c35372c3135322c3135372c3135352c3231372c33362c34332c3131342c3138312c3231312c3130342c34332c33362c3139322c33312c3138332c3138372c34322c33382c3130372c3234312c3135382c3131382c3233382c3132302c32342c33382c31342c3134382c33332c35365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f": { - "hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", - "previous_hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", - "epoch": 52, - "signed_entity_type": { - "MithrilStakeDistribution": 52 - }, - "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:17.077738439Z", - "sealed_at": "2024-09-09T12:59:18.116281180Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "fd91a6f1d2292cb457ad4f2c3df4e69c8dbed6fdd463fe50558bb6bfe61b027e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138322c3133302c3234372c3234342c3134312c3235332c3233392c3130352c39382c382c3130322c3135392c38392c33312c3130362c39382c3235332c3130392c3231352c3135322c3233302c3131382c35312c362c3132362c382c37352c3134382c3136392c3230352c3131332c3133332c34372c3137302c37342c31302c3137312c35302c35382c3130312c34322c32302c37372c38312c312c36392c36302c3134345d2c22696e6465786573223a5b302c312c322c332c342c352c372c382c392c31302c31332c31352c31372c31392c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35322c35342c35352c35362c35372c35382c36302c36312c36322c36332c36352c36362c36382c36392c37302c37312c37322c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38362c38372c38382c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a317d2c5b5b3137382c322c32322c3136312c32372c37362c3231372c3234382c3138362c32362c3138392c3137362c3139352c3232342c36312c3134312c35352c3234352c32322c3231392c31362c39352c39392c39372c3233372c3135362c3133332c37352c35352c3130302c3136342c3232372c3230352c37372c3134342c3132352c33362c33352c3134392c322c3139362c302c382c3234392c3134312c3131352c3137342c3131322c322c38372c3137342c34362c35372c3134342c3233362c3132302c3139382c3230312c39362c3130382c3131362c38352c362c3231342c3134342c382c34302c3138302c3231382c3138372c3232342c3135392c3130362c3131302c3230352c33312c34312c3235322c32372c392c3133382c3232392c3137392c37362c3132362c37302c3133332c3133302c3233302c332c3139322c35302c36392c3132392c32362c3233345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32392c3136392c3137382c3133382c362c3136372c3231372c37362c3131372c33332c3139382c3139382c3138362c3232332c3137352c35322c36312c39342c39392c3131322c35372c3231332c3132312c3132382c36342c34322c3131332c3134382c3136372c3230332c38382c34335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba": { - "hash": "c36249b5201e0088428f519196dbbe2567c3360627bff520f770df7f98b102ba", - "previous_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", - "epoch": 57, - "signed_entity_type": { - "CardanoStakeDistribution": 56 - }, - "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:31.617098551Z", - "sealed_at": "2024-09-09T12:59:32.008270516Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "56", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "1f3dcf4c57bf79e291f21af4413e399e1a5fc108ecee3ac6526ea020e9279171", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137352c3138312c3139312c39382c3136302c3234392c34322c3230302c3134382c3134382c3138362c3130322c3231372c3136312c3134382c35352c3136302c31332c33362c3131332c3139322c3234382c3134372c3234332c332c3138382c3132332c37302c3139322c3131362c3131352c3231372c3134382c35342c3137302c3232342c3138312c3234322c33352c31342c39382c3234392c33372c3139362c32322c3233372c3134352c3139345d2c22696e6465786573223a5b302c332c342c352c372c382c392c31312c31322c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c33302c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35382c35392c36302c36312c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38322c38332c38342c38352c38372c38392c39302c39312c39332c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135312c3130322c3132352c3133382c3138362c3138372c31342c3235302c3131342c3235322c3133322c3133382c3132312c36372c312c3130392c32342c39332c332c3231352c31362c3231332c3230362c3132382c36332c3139302c3233332c3135372c3138302c3134382c3135352c3138392c3231322c3139322c34332c3131362c34302c34332c3134332c31352c3133302c38382c35332c3131302c35332c3230342c3231312c38322c322c3139362c3232372c3137312c3135342c31392c3139332c3233332c3139392c3234302c3130362c37342c3137352c3131352c3131382c3134302c3135352c3234342c39342c32322c3234352c3135332c3232302c3233312c3139372c39392c3136362c3133332c3130372c3130352c34332c38302c34362c39312c35362c34302c3232312c3132342c3136302c3134302c3135362c3232322c31302c3232382c3234392c302c3230302c3234305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231302c3135352c37352c3234312c38332c3132342c3232352c3138332c35362c3138342c38322c3139332c3231332c39332c35312c3132342c3139382c37312c3133302c39322c3231322c32352c31312c3130302c3134362c3138312c3132352c3234322c39322c3134372c3132382c34355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "c7d868cee0669eebf64df13b1ac8e82109488dddf653f940c8801a2a57af874e": { - "hash": "c7d868cee0669eebf64df13b1ac8e82109488dddf653f940c8801a2a57af874e", - "previous_hash": "f1454af28e0468031c76f8c3423dec3a32c94932ea0a373926f1658a3c8f5be2", - "epoch": 33, - "signed_entity_type": { - "MithrilStakeDistribution": 33 - }, - "beacon": { - "network": "devnet", - "epoch": 33, - "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:23.932387886Z", - "sealed_at": "2024-09-09T12:58:24.194057582Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34382c31392c3234382c3139302c38352c332c3135352c3133342c3139312c3230342c3235342c3130362c3231362c3137372c33342c3136332c39372c31342c3135322c3233362c3230322c33392c39352c3139352c33372c36352c39332c36342c332c39312c3136332c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "517a045f5f75a63231614430ae68731feb22d25b57834128bff928371cb091c1", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c3135332c3132322c38372c39362c3233332c3133332c39362c3232332c39312c35342c31362c39302c3231352c3135312c38372c32352c3137322c3138312c362c31342c34382c3134322c362c3234302c3139392c3232352c3139382c3137352c3231332c37302c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137352c342c3132352c3137302c3232392c33342c3231342c3138352c3138322c3134392c3139392c37322c3136382c33372c35322c3230372c34352c3231312c37312c392c3130352c3230332c3231342c3131342c39362c3136342c3134322c3234362c3133342c3136382c392c3134352c34352c38382c3132382c3136392c3133392c37342c35372c3133322c3139342c3135382c37342c33392c3132352c33342c39382c3137365d2c22696e6465786573223a5b302c312c332c342c362c382c392c31302c31312c31332c31352c31362c31372c31382c32302c32312c32322c32342c32362c32372c32382c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34362c34372c34382c35312c35322c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c37312c37322c37332c37372c37382c37392c38302c38312c38322c38332c38342c38352c38372c38382c38392c39302c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134342c3139332c33302c3235342c34352c38392c3130352c36392c3230302c3231382c352c3134342c3133332c35312c3230322c3232352c33362c3133312c33362c3139342c3233342c3231382c352c3132392c36372c35312c38372c39382c3235312c35372c36332c3134352c3131312c33382c3234322c3136342c3233382c3137322c33342c332c34362c3138352c3234352c3135392c3134382c3136332c3230392c34352c31312c34392c3139322c31372c3134362c3234312c31332c3131322c3130372c3230352c3134302c3139362c33372c3131342c392c34392c35372c35332c37392c3136322c3139312c3130362c32382c3130322c38382c34382c36352c3231322c3133322c3131322c3139332c3133322c372c3130342c3139372c31382c3132372c34312c33302c3138382c3135342c31312c33372c33362c36362c3234342c3135302c38355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35322c3137302c3138302c3130312c3233382c3232302c3138392c3231392c3232372c3135392c35352c3234332c3134302c3131352c3134362c35342c3133312c3231352c3131342c3131352c38322c38382c3130392c3130392c3230302c39382c3130382c332c3233322c3136332c33312c3131335d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "c8e8ea2892e9dfebf0862905874abcc7b12bb674559f448e9455ef5d30219dbd": { - "hash": "c8e8ea2892e9dfebf0862905874abcc7b12bb674559f448e9455ef5d30219dbd", - "previous_hash": "05d19d2376a82b913641d4b7fe833934f8a63cb7f99625901c3f32cf3d4c45f4", - "epoch": 26, - "signed_entity_type": { - "MithrilStakeDistribution": 26 - }, - "beacon": { - "network": "devnet", - "epoch": 26, - "immutable_file_number": 8 - }, - "metadata": { - "network": "devnet", - "version": "0.1.0", - "parameters": { - "k": 75, - "m": 105, - "phi_f": 0.95 - }, - "initiated_at": "2024-09-09T12:58:04.334547809Z", - "sealed_at": "2024-09-09T12:58:05.115689352Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3235312c3130342c3134352c39382c3235322c3233322c3234312c3138382c35392c312c33302c382c39392c3132352c3234302c3132332c3231382c39382c3231352c3130342c36352c3130342c3235322c3138332c3131302c3132382c3230362c3233322c3134362c362c3131322c34345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "b7aab2737aa6117120a1a17c81c292d5a309f0f197f2547e5d251997054daee9", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132312c36382c39352c39382c3134362c3132362c3131372c3139332c3132352c3131342c34322c3135372c36322c332c3135322c32372c38362c3230372c3132342c382c3130372c312c39312c32322c33382c3130352c33352c3233372c3136372c3138372c3234392c3130325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135322c36302c3233302c352c3133322c3137342c3134372c3139322c3131362c3132332c34362c3138352c32302c3233352c3132382c3137392c3235352c3138392c37332c33312c3139352c3235352c3135392c34352c352c3138382c3134302c3234332c34322c3133302c38312c31362c3232322c352c3132372c3233362c36372c38392c33382c3130392c39302c36302c39372c39332c3235312c32372c3135382c3131345d2c22696e6465786573223a5b302c322c332c342c352c362c372c382c392c31312c31342c31352c31362c31382c31392c32302c32322c32342c32352c32362c32372c32382c33302c33312c33332c33342c33352c33362c33392c34302c34312c34342c34352c34362c34372c34382c34392c35302c35312c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37322c37342c37362c37382c37392c38302c38322c38332c38342c38352c38362c38392c39302c39332c39352c39362c39372c39382c39392c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136342c38312c3231302c3137352c38362c3139392c3138322c3230332c31342c35302c3231312c33322c3137342c34332c3135392c3133362c33392c3137302c39332c3139322c3234362c36362c3138352c3232312c3232382c3135352c342c3135342c3139312c3135362c39332c34352c38332c3135332c35312c3231392c34352c31392c3133302c3139382c36302c3231362c31392c3233332c3235352c3131372c37312c3130382c31382c3131302c31392c332c3132322c31372c3136392c3135322c39312c3231322c3235332c36352c36342c3230372c37362c3132322c32312c3130372c3137342c3235312c31392c3136392c3233362c3136322c3232382c3133352c36392c3233332c35342c3135362c3135322c3136342c39332c33342c3134362c35362c3231382c3134352c38332c37312c322c39362c3234392c3130322c35382c3135382c31362c3137335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37382c3234352c34372c3130342c3137312c3131372c362c3135362c3138362c31372c3230332c3235352c3137372c34382c3138382c3235312c35332c32372c3132322c3232332c3231382c38392c3232322c3131332c3131362c38392c35392c3233352c3138352c3132372c3230352c3133365d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "c91269c75bd83e852f7fcb66496edab6e3e048933d14273c013d4d5b8585a250": { - "hash": "c91269c75bd83e852f7fcb66496edab6e3e048933d14273c013d4d5b8585a250", - "previous_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", - "epoch": 60, - "signed_entity_type": { - "CardanoStakeDistribution": 59 - }, - "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:39.826587150Z", - "sealed_at": "2024-09-09T12:59:40.089570533Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38372c39392c3138312c3139322c35382c38382c31392c3138392c35322c3130392c3131312c3130392c32332c3132332c3137362c33362c3234312c3132372c3232362c3139312c3139332c3132302c3232342c3235302c31372c3131322c3138332c33322c39382c3231392c3235312c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "59", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "45c85f91d536390a50baeea352f745e174b3ec43403252d9ffad1a924b6ec525", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137392c3139372c3133352c38302c37332c3233332c39332c3131372c3137352c32382c32392c3131382c3231302c39372c3136352c3139312c332c37392c3135392c3132302c312c3231302c3234312c3132332c3137382c31332c3235302c3230302c3232382c32382c32312c31392c3138312c3138312c39322c38392c38312c33392c3135392c33382c33302c31312c3132382c37372c3234392c3133382c3230332c3233305d2c22696e6465786573223a5b302c312c332c342c352c362c382c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32372c32382c33312c33322c33332c33342c33362c33372c33382c33392c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35322c35332c35342c35352c35372c35382c35392c36302c36312c36322c36342c36352c36362c36372c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38342c38352c38362c38382c39302c39322c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136322c3139322c3130322c3232352c3133312c3231352c3136382c3234342c3232362c3231382c3130302c31332c37312c39362c39382c3130342c3233382c38392c35382c3132332c3130352c31322c382c3136342c3138382c3136342c312c3233352c34382c3138362c31322c3233372c34382c3139322c3139362c34392c35312c3134322c362c35362c3131302c3231362c3232322c3132352c33382c39302c37372c3231312c31372c3134392c322c3132382c3231382c32322c3131352c37302c34352c36342c3138312c3135382c32372c3131352c3131362c3136302c3134332c3132322c3232312c37302c3133382c3232332c3132352c36392c3133362c36312c3232392c31362c35302c34302c3138312c3132382c39372c3130332c39362c3232322c3138322c3132342c3230372c3230302c3138352c32362c3234372c3136352c3231372c35322c39392c3130325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37362c38332c35392c3134342c31392c3136382c312c38372c37312c3134342c38352c3131342c3234322c3133352c3233352c35372c3131302c3231322c3233342c38342c33312c3139382c31302c3134322c3136372c31312c33392c35392c3130332c38352c35332c3130355d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "c94228c6f70dd5d50e5514091c431613cfd2e6a116f3cc1a45c0cda23e9d7e11": { - "hash": "c94228c6f70dd5d50e5514091c431613cfd2e6a116f3cc1a45c0cda23e9d7e11", - "previous_hash": "c8e8ea2892e9dfebf0862905874abcc7b12bb674559f448e9455ef5d30219dbd", - "epoch": 27, - "signed_entity_type": { - "MithrilStakeDistribution": 27 - }, - "beacon": { - "network": "devnet", - "epoch": 27, - "immutable_file_number": 8 - }, - "metadata": { - "network": "devnet", - "version": "0.1.0", - "parameters": { - "k": 75, - "m": 105, - "phi_f": 0.95 - }, - "initiated_at": "2024-09-09T12:58:06.953525468Z", - "sealed_at": "2024-09-09T12:58:07.484040356Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232302c3231372c3131302c332c38362c31372c33342c3131362c37382c35372c38342c3137322c352c3230352c3235322c33332c3131372c36342c34382c32392c38352c3134372c3230342c39322c3235322c3234362c3231332c3231362c3234382c33362c3230372c3133395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "2fc6210db083d532022bd5737ae15153383b43ba826c8f33cab07769db889420", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3235312c3130342c3134352c39382c3235322c3233322c3234312c3138382c35392c312c33302c382c39392c3132352c3234302c3132332c3231382c39382c3231352c3130342c36352c3130342c3235322c3138332c3131302c3132382c3230362c3233322c3134362c362c3131322c34345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134332c3233352c3132322c3132332c37302c3233332c3133352c33352c3137372c31382c3134342c3136302c3132332c3139372c39392c3234302c32372c3134332c3133322c35362c35342c3134302c3130302c31352c3133372c37342c3230322c31352c3234332c3134342c39352c33312c3232302c3231352c3234312c3132392c37392c39342c342c33362c39322c31332c37342c3230322c37352c38382c3131382c39365d2c22696e6465786573223a5b322c332c342c372c382c392c31302c31322c31332c31342c31362c31392c32302c32312c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34342c34362c34372c34382c34392c35302c35322c35332c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36362c36372c36382c37302c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38382c38392c39322c39332c39342c39362c39372c39382c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137382c352c3235302c3232352c33362c39392c3137332c35332c37322c322c35342c39312c3234302c3230332c3137372c322c3230382c37352c36302c39352c33322c32312c32382c36302c3137392c3134362c36332c35372c3136362c3139362c3135372c3137302c3138382c3133342c3137332c38382c3233342c32392c3132372c3135342c35382c36312c3138322c3234302c33352c3135372c3130352c3134362c31362c33352c3132302c3235352c3234342c3131362c3230302c3132372c39382c3135352c3134392c3233362c3234332c372c38372c3133302c3231362c38382c36302c3136312c3139312c3134302c3130302c37322c3233342c38312c31372c33332c36392c31372c38352c3234372c3233382c352c3135332c35372c3131352c3137312c3134342c3138352c3234382c3138322c33382c31362c38332c312c3137362c3137355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231372c3133372c32372c3136362c3232332c3134332c3230382c37392c31362c3231372c3135362c3133382c3130322c3138322c322c3137322c382c36372c35382c39392c39342c39302c31312c3130352c32322c33382c3235322c31302c3139382c36352c3131362c3233345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230": { - "hash": "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230", - "previous_hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", - "epoch": 50, - "signed_entity_type": { - "MithrilStakeDistribution": 50 - }, - "beacon": { - "network": "devnet", - "epoch": 50, - "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:11.583654329Z", - "sealed_at": "2024-09-09T12:59:12.883214384Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "cc354811ff4da53ed61ca806a86ac2101af6c472b6251909f0ccdc15e1c05998", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136382c37332c3135302c3133322c3138342c3138372c38352c31322c3135322c3135392c34332c3139322c3137302c38382c3130362c34312c3139322c3139332c3130332c3137352c3233332c37342c3139382c3234302c3134352c37352c3137362c3137342c3138332c3232362c3135352c322c37372c34372c37382c3136372c3130372c35372c3138322c3230302c3134302c38382c37382c3137302c38382c3132352c3135362c31365d2c22696e6465786573223a5b302c322c332c342c362c372c382c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32362c32372c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34372c34382c34392c35302c35322c35332c35342c35362c35372c35382c36312c36332c36342c36362c36372c37302c37312c37322c37332c37352c37362c37372c37392c38312c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133362c3136382c3139362c3137392c35392c39342c36312c32382c3131352c33392c3130362c3135302c3134312c32312c3132362c3234392c3234302c33382c3135362c3136362c3235332c32322c35352c36302c3135342c3135312c3233332c33312c312c37322c372c3233372c3134312c34382c35312c38362c3134392c3233392c38392c34372c3232332c3230302c3231372c33312c39302c3136362c3137302c3131332c382c3134352c3132312c31332c36342c3137382c34332c31392c3130352c31382c32382c3137332c3230392c32392c3138342c3230332c31322c3136342c3130372c3133342c33302c31332c3139372c3130302c3138372c3133382c37302c32372c3231312c39382c36372c33392c3132372c3130322c38382c3232332c382c35392c31342c372c3139302c37312c3133322c38302c3131302c37332c38322c3135365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231372c34302c3137322c33372c3138322c3230372c3137372c3130362c3235332c33352c37322c3138302c31352c3137372c34352c35362c36392c3131352c3134322c3132342c37312c37312c3232352c3232392c3138382c31302c3130302c3138342c32352c38322c3131322c3134315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "c98c0c706f10f62c99bb7ef93bcbdeec62359a3d9fcb9f7efc5dc6e11c0da0b9": { - "hash": "c98c0c706f10f62c99bb7ef93bcbdeec62359a3d9fcb9f7efc5dc6e11c0da0b9", - "previous_hash": "a25e25fe1e22b13420b390233d763008a0ed390616a295c170a8fbb65202f0c7", - "epoch": 38, - "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 38, - "immutable_file_number": 12 - } - }, - "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:39.136115979Z", - "sealed_at": "2024-09-09T12:58:39.402736859Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139322c3131372c3234382c342c3235302c3137302c3139352c31382c33342c33342c3230342c3132302c3235332c37352c3230392c34332c3232322c35392c3232332c3138312c3230342c3232382c3137322c31372c3231382c38332c3130392c36322c3235302c37382c352c35305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "ab7612c56417e7c771e8aebf1a845b37248ae81001e7c0c2bacfd490be666b50", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37342c35382c352c3232322c3138352c39362c33302c3232322c3139372c3139302c39372c36312c3133392c3136362c32332c3138322c37322c3233362c3135372c3136352c32372c3135332c3138342c31312c3231382c37302c38352c3130392c312c3133372c3138342c3138325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133342c3139322c3139312c35332c3134382c33342c37352c3135312c36352c31392c332c3136362c3235352c37382c3135322c32342c3130302c3135352c3232322c32342c362c3230322c3235312c37312c32352c3230332c3130382c332c3136392c35362c3130382c3131322c3132362c3233332c35382c37362c3230392c3139362c3230302c3130382c3231372c3133382c34342c31312c35312c38302c3231342c3234335d2c22696e6465786573223a5b302c312c322c332c342c352c362c382c392c31302c31312c31322c31342c31352c31362c31372c31382c31392c32312c32322c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33352c33362c33372c33382c34302c34312c34322c34332c34352c34362c34372c34382c34392c35312c35322c35342c35352c35362c35372c35382c35392c36302c36332c36342c36352c36372c36382c37302c37312c37322c37342c37352c37372c37382c37392c38302c38312c38332c38342c38352c38372c38392c39302c39312c39322c39332c39342c39352c39362c39372c39392c3130302c3130312c3130325d2c227369676e65725f696e646578223a317d2c5b5b3137382c3232322c3234322c3136322c3138392c34362c3136322c32342c38322c3133322c3137322c3134392c38302c3130372c322c3134372c3139332c39332c3138362c3233302c3234382c3137322c3136302c31332c3134382c3131392c3135332c3137362c35352c3138312c3234392c3234342c3136352c3234342c362c37312c3230382c3130382c3230312c37362c32342c3234342c3130362c3132302c3135332c3130352c3230392c35372c32352c3234372c3136312c34342c32302c36332c3233392c36392c3234322c3230302c37352c36372c39382c35382c3134372c35312c3137322c3137332c3233342c37342c3137322c322c342c3138392c3132302c362c3233312c3136302c3135382c3137302c3235322c3230392c36322c3134332c38372c382c3233352c3135362c3130352c3230382c34392c3133332c3137352c3230392c37382c3235342c3138342c3232375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b33372c3230362c38352c3231302c3132372c3233382c3232312c3231332c39342c362c3231312c3139332c31352c33332c3137362c3136382c3231332c3234362c3133382c37332c3135322c3230382c3230332c3139352c3138392c3133342c3134312c3131362c3139332c3135322c38302c3133345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "cc4765b54dcf37ac05024486215ed0aed871f88ce7c63e4de31087d39a3078bd": { - "hash": "cc4765b54dcf37ac05024486215ed0aed871f88ce7c63e4de31087d39a3078bd", - "previous_hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", - "epoch": 43, - "signed_entity_type": { - "CardanoStakeDistribution": 42 - }, - "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.521441647Z", - "sealed_at": "2024-09-09T12:58:52.786148420Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "42", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "e12dd74d22e2103f0e96393178ee90ce92d50e13af3c1defd8a0e36e3b6a3664", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136352c3139382c39362c33382c3135312c32312c31322c3133342c32372c3134332c39312c3232332c3137342c33302c3131322c3134302c3138332c36382c35312c38352c37392c39372c3234382c3130342c38362c38342c36332c38392c31322c35382c3137322c3137335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138312c3233352c342c31332c3130372c332c3135322c3132322c35302c3139322c3234322c3131312c332c3134302c3130312c34342c3230322c33332c37372c33332c3137382c3130372c3232302c32352c34352c39342c35342c35362c37362c3133312c32372c3138362c3134312c36352c32352c3137362c3133352c3137362c38312c34342c3136322c36372c39372c3234332c3137322c36312c31312c39335d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32382c33302c33322c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35322c35332c35342c35352c35362c35372c35382c35392c36312c36322c36332c36342c36352c36362c36382c37312c37322c37332c37342c37352c37362c37372c37382c38312c38322c38332c38352c38362c38382c38392c39302c39322c39332c39342c39352c39362c39372c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134352c34392c3138392c39352c3133392c35312c3139312c35332c3137392c32332c3233312c3134312c3137362c3131312c3230372c31392c3235312c3133362c37372c3131322c3133322c36362c3131392c38302c3132302c3134342c31372c31302c3131372c3233312c35352c3133342c38382c31362c3133382c3233362c3234332c3134322c37322c3137342c3138372c32392c3134332c3234382c332c39342c34352c3233332c342c3134392c3232312c3231332c3135302c34322c31302c33372c3139392c3132312c3138342c39392c32372c3139302c3231382c3230382c39302c3138302c3138312c36392c3231332c3137392c3234362c38332c3230302c32302c32352c3231352c3234382c31392c302c31302c3133312c34392c3232372c39332c3135312c3234332c342c34372c322c3234392c3130312c3232342c3232362c39302c35302c3132335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32352c33392c3136302c39392c31342c39382c3136342c3232362c3134322c33382c37372c32312c3234382c36372c3134382c3231322c3231372c3135372c3232382c35392c38362c3132302c31362c33332c33312c3136312c3230332c3234362c3139352c32362c3137302c3230345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38": { - "hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", - "previous_hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", - "epoch": 49, - "signed_entity_type": { - "MithrilStakeDistribution": 49 - }, - "beacon": { - "network": "devnet", - "epoch": 49, - "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:08.720023844Z", - "sealed_at": "2024-09-09T12:59:09.109426386Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "9b9420b19a599014e4164ccfc9031aed738b8b5e334c9e3394837b9be929e50f", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3131322c31342c3132372c3231382c35312c312c32302c33392c3231322c3138352c3137332c3134382c3233302c3231382c3135372c3137392c302c38302c34312c3234332c37362c3232312c33382c3233332c3131332c3231372c3132342c3231342c3132322c3233342c352c392c362c392c39372c33392c3136392c38382c3131392c3139352c31302c3231322c33352c3230332c3135382c3137302c3135305d2c22696e6465786573223a5b302c312c322c332c362c372c382c31302c31312c31322c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32392c33302c33312c33322c33332c33342c33352c33382c33392c34302c34312c34332c34342c34352c34362c34372c34382c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36312c36322c36332c36342c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38332c38342c38352c38362c38382c38392c39312c39322c39332c39342c39392c3130302c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135302c3137322c3136382c39312c34392c3135342c34362c3134372c312c3137342c3136312c3233332c3138332c37312c3234332c36382c3139312c34332c3133342c37302c332c3139332c3135372c3132302c34362c3231332c3138392c3134332c322c3137382c33362c33372c36362c3139362c3230392c3234322c3235332c3134332c3137302c39392c3132312c3232342c3235302c32382c35322c34362c35362c34392c302c31382c31312c3231312c3139362c32352c3138332c35392c3137382c3136352c35352c3233322c3231302c3130302c32382c3130372c34392c3131312c3131302c3232302c35322c3132352c3235342c36302c3233312c3232332c32382c3138372c31332c37312c3139312c3133352c34382c3235312c3130342c3131322c35332c3139352c3136352c3234352c34302c3235352c3130352c3235332c3139322c3130332c35312c37395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234322c3233392c3136332c35392c3135342c3138312c3235312c33392c3132312c3233312c3133302c3130352c34302c3131332c36332c3135312c35342c3137372c3231352c3136362c3131302c3130322c3138332c3136342c3133332c31322c3130312c362c31352c3135382c312c3136365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "d10068a231936c1994e9451ecd5f6dfde399869181ee392361bccaa43af9a066": { - "hash": "d10068a231936c1994e9451ecd5f6dfde399869181ee392361bccaa43af9a066", - "previous_hash": "83ff62fee13a86b707261afd59b37c4faa4e9acba3eacd93476814b0f7eb04c4", - "epoch": 48, - "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 48, - "immutable_file_number": 15 - } - }, - "beacon": { - "network": "devnet", - "epoch": 48, - "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:07.093603912Z", - "sealed_at": "2024-09-09T12:59:07.497475696Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "f0c5b3660bad42fbb56c8756921d81ead507f771c8ad1771e8d214789dfcb3ba", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3136302c33332c31352c3230392c34332c3137352c3136362c36302c37362c3136382c3233392c39362c3233372c392c32372c31382c3235322c3134332c3231322c3136312c34372c33352c392c3132352c36352c342c3232322c302c33312c39322c37362c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136352c3230372c33372c3230332c34302c34342c3134342c3233352c3137332c3139372c3233352c37332c35322c3131332c3130392c3133332c3133302c3130332c3132382c37382c35392c3134362c31312c342c3138352c3139312c3231332c3233332c3133362c3130332c342c3131392c3136352c36342c3133392c3136342c3137312c332c3136342c3138322c3131352c3234382c3136362c3231372c3231392c3230362c3234322c3231335d2c22696e6465786573223a5b302c312c332c342c352c372c382c392c31302c31332c31342c31352c31362c31372c31382c31392c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33372c33382c33392c34312c34332c34342c34352c34372c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37332c37352c37362c37372c37382c37392c38302c38312c38332c38352c38362c38372c38382c38392c39302c39332c39342c39352c39372c39382c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137372c382c3136322c3138392c31392c312c362c36302c39302c3133322c3235342c3131332c322c3230372c3136352c3137352c3230362c35302c35342c3235322c3134322c3136392c3231392c39352c3130332c3133352c3137312c35342c3138392c3134302c3234302c37342c35312c3136392c3136372c3136312c31342c3139362c3138392c3139342c34382c3235322c37362c3134302c3233362c3137382c37302c33372c362c36322c3134332c3131372c3137302c3230392c3135302c3138312c33372c37362c31392c35342c3233352c33392c3130312c37302c39342c32362c332c37312c3235332c36362c3136392c3231302c3133322c352c3133342c32362c31372c3230382c3130372c3135362c3131372c3235322c3130392c35342c3230322c3138322c38332c3135312c352c3134332c32392c3137342c302c3233372c37392c35355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b32382c38312c36382c3132362c39382c31332c3139372c3232302c3131382c3234342c36352c39372c34342c3134362c3139322c31342c3132332c39312c32392c3138352c39392c3131382c3137392c31382c31302c302c37342c34342c3235312c3138332c3137362c3231345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "d3ab661818d6c7109bc5a557118e3987aaccb964d2199ef04650d3504fe67740": { - "hash": "d3ab661818d6c7109bc5a557118e3987aaccb964d2199ef04650d3504fe67740", - "previous_hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", - "epoch": 46, - "signed_entity_type": { - "CardanoStakeDistribution": 45 - }, - "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:00.783692065Z", - "sealed_at": "2024-09-09T12:59:01.300865476Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c35362c3233332c3134382c39392c36352c31372c37352c33352c3134322c3232392c3134312c3135312c3136392c3234322c3134352c35382c3138332c3136382c3136342c3134302c3136312c35332c36322c3231332c3135372c39382c3139362c3234382c3136332c3136382c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "45", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "67e15ffd8b6c418062da53de6029589cef3ec0d78f1ab06c08da02da9d065549", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136312c3231382c31322c3134362c38382c36322c3137382c35382c36362c3231372c38332c31302c3234392c3131332c31312c31302c3136302c38392c3133372c36312c3139322c3233332c37352c3135362c3235342c31332c34332c31342c3232332c3234352c3230302c3137352c34322c31302c3134392c3139382c3138392c3230352c3137382c36342c3230332c3232352c31372c34332c3137392c3234392c3131322c32395d2c22696e6465786573223a5b332c342c352c362c372c382c392c31302c31312c31332c31342c31362c31372c31382c32302c32312c32322c32352c32362c32372c32392c33302c33322c33342c33352c33362c33372c34302c34312c34332c34342c34352c34372c35302c35312c35322c35332c35342c35352c35362c35372c35382c36302c36312c36332c36342c36352c36372c37302c37322c37332c37342c37352c37362c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38382c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136392c39302c3131322c34362c3139342c3130372c32392c3137382c37382c342c39312c3136372c3231382c36342c3230372c33392c38332c3131382c3231322c32382c32312c3139332c3134382c3130392c32352c3135342c3135362c3137352c32362c36372c39392c38312c37302c3234312c3233342c32322c39322c3131362c3139312c3230392c3131312c32332c3230322c36302c3231392c38392c35322c3132382c352c3234352c3138362c32322c362c3139332c34332c3133362c34382c32362c34372c3136342c3233342c3135332c3134392c3139392c3139362c3135362c3137312c3132322c39372c3136372c37382c36312c33352c3134362c39342c34342c39382c36352c3132372c3139322c3139312c3232312c372c3136372c3134312c3235322c312c3230352c3232362c36342c3137372c37302c3138382c3136362c34322c3131345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131362c3233302c3130392c34312c3131342c3133382c3137302c3234302c362c3133362c37342c3136352c3136382c3132362c35342c3133392c37302c3139372c3131332c3138302c32362c3232312c3130352c3136392c3135312c32372c3131322c3131382c33372c3135352c37322c3231315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "d402d98d38cadd400a4bc23af1d7a5a1ca86fdf9b6111d304315bda72d0b8ac8": { - "hash": "d402d98d38cadd400a4bc23af1d7a5a1ca86fdf9b6111d304315bda72d0b8ac8", - "previous_hash": "a2aa3c28351b86b3516170e7e09c100ba88ab8af244038e036333d34c6cc98a2", - "epoch": 41, - "signed_entity_type": { - "MithrilStakeDistribution": 41 - }, - "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.265287297Z", - "sealed_at": "2024-09-09T12:58:46.798851214Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138312c39302c3232352c3234342c3137312c3131332c3138332c3235332c3137382c3138372c33312c38332c3139362c3134392c362c32352c3138392c33312c3133302c38322c3134302c32332c3131322c39302c3230352c36312c39352c3230322c3136352c3130392c3133312c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "bfa1705bbcc29558366d945d4020f5c67e5a37717fe2681473f84fb6f9a116d4", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138302c3234382c31302c33312c3131302c36302c3136332c382c3138302c3234342c3135362c37302c3233392c31302c34312c3233382c3135382c3235342c3135312c32342c33302c3134312c36372c38302c392c3138332c3231302c31332c3130322c3139382c32362c3139302c3130352c31332c34362c31392c3135312c3130382c3230332c3235332c3234392c33332c3231322c39312c3137342c3235302c37392c3133395d2c22696e6465786573223a5b302c312c322c332c342c362c372c382c392c31302c31312c31332c31342c31352c31362c31372c31382c31392c32302c32312c32322c32342c32352c32382c33302c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34342c34352c34362c34372c34382c34392c35302c35322c35352c35372c35382c36302c36332c36342c36362c36372c36382c36392c37302c37322c37342c37352c37362c37372c37382c37392c38302c38312c38322c38342c38352c38362c38382c38392c39302c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3134302c3133322c39372c3231372c37342c38302c31352c3136332c3138362c312c36302c38352c31332c3230352c3137302c3139372c3135362c3234352c3131382c33322c37362c3133312c3139352c3230372c32362c3230352c33382c3231352c3139302c3130362c35342c3235302c3135392c3232322c3232392c38342c3139312c3230392c3137332c3230322c31302c35362c3133382c3134382c3134392c3232322c36382c3139392c382c3234302c3134372c39362c37332c3131372c3130322c3230362c3137302c31352c3139352c3137322c3138332c3136302c3135322c3234332c3231302c3137332c38372c36332c332c3234392c3231382c37312c3232302c3136322c3137352c39332c3138342c36382c3130332c3133362c3134372c35382c3138352c3233322c31322c3138322c31382c3232332c32342c31312c3136302c35362c32392c3137372c33342c3134325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3135322c3132342c3139372c3131382c3133302c32302c3133302c33312c3134312c33312c31302c31392c3130332c33332c39302c3233312c32392c36342c3135322c3133352c3132392c352c3232342c302c3135332c3231322c3136382c32382c3131362c3134372c3136352c39325d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "d7e1b05877169e5b12f35ad217e74190e4e435d53c353803fb7a6053c09b5e85": { - "hash": "d7e1b05877169e5b12f35ad217e74190e4e435d53c353803fb7a6053c09b5e85", - "previous_hash": "27a2171a4e6eb4a80bc36d71f1d11cf9e1640fae490dfd038235c5ffd1e789d8", - "epoch": 18, - "signed_entity_type": { - "MithrilStakeDistribution": 18 - }, - "beacon": { - "network": "devnet", - "epoch": 18, - "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:41.780111125Z", - "sealed_at": "2024-09-09T12:57:42.169800158Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133302c3133332c3230382c35372c3130372c3130312c3232312c3233312c3139322c3234332c3131312c32372c352c31392c36372c33342c32362c3232332c3234322c3231342c39332c36332c3135312c3132382c3137392c36342c34382c33362c3137362c3135322c3234312c3134325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "5a0c8223f22233a65d68f0cace545c763401a4b8154f86f7e8e026853725a607", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234342c35302c36332c32352c38392c3131342c31372c3233302c3135332c37332c3138322c3231302c3135372c3133372c3133322c322c32372c3138362c32392c3231332c3230372c3231352c3231312c3136312c3138352c3132322c39342c32392c39312c3130332c32322c3231325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134362c3138382c38382c3131332c3235342c3131302c3134342c36312c3139342c3235312c3134332c3134342c34342c3137382c3234392c3132332c32372c3134332c38332c3138352c3231332c3132302c32392c3232342c37332c37322c3130322c3135372c32322c33342c3132322c34382c32382c34312c31302c3136332c33342c31312c3231322c39332c3234372c3136312c32362c3235332c3234372c3232352c3135322c3232305d2c22696e6465786573223a5b302c312c322c342c352c372c382c31302c31312c31322c31342c31372c32302c32312c32322c32332c32342c32352c32392c33302c33312c33322c33342c33372c33382c33392c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35332c35352c35362c35372c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38372c38382c38392c39302c39312c39332c39342c39352c39362c39372c39382c3130312c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136352c3135382c3132392c36352c38342c39322c31302c3131372c3130302c34392c33392c3233352c362c34382c35332c3232372c3130372c3138382c3135392c31382c3132392c3230392c3132392c3136372c39322c3139372c35342c3132342c3134302c3138352c3231382c3139302c38352c3138332c3139392c3139312c3130352c35312c372c38372c3235312c3131372c36312c3232392c3133332c3137352c3136392c34372c31342c302c38362c3232382c3230352c37372c3234362c39392c3131352c35362c3231352c3230352c34322c3136352c34352c38342c31322c3232302c31382c3232332c3139352c3133392c3135332c39322c3133372c34372c332c3230342c32392c3232352c37302c3233362c37332c3133312c3138392c33322c3131392c3234392c3137312c3233342c3234312c3132372c34382c3137392c3131302c3133372c3134382c3130365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131302c32332c36362c3231362c3234332c3138332c35312c31352c35322c3234322c37392c3133392c3137352c36332c35352c3134332c3235302c3231332c38382c37372c3230362c3138302c35342c3131362c34362c32332c3135322c32362c3235322c3233362c3136352c3234355d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "d8378c77f18a605cec435443274014dffff5723b683ad7f8e71cf2c3ac37e1ce": { - "hash": "d8378c77f18a605cec435443274014dffff5723b683ad7f8e71cf2c3ac37e1ce", - "previous_hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", - "epoch": 51, - "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 51, - "immutable_file_number": 16 - } - }, - "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:15.051082341Z", - "sealed_at": "2024-09-09T12:59:15.310597676Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "d3bae6df21ff157b79ec4ab2ed864b48d06271d103a2cd54ccec9357d27d622c", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "d838cfa674be68f766ae9dee3746c94eafaffd3d3ed137cfaa59b1ed6b0501ec", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136322c3139362c37332c3135382c3135372c3139372c37302c302c3132372c36342c3131382c372c3230372c3232302c3133342c36392c3131392c3233392c3133382c3138332c38382c38312c382c3230362c3138322c3235342c3137342c3231362c3232382c37352c3135382c3233332c3137392c31312c38322c3138352c33302c31332c322c39382c3133302c39342c3135332c3230382c3235312c38352c3139372c3235355d2c22696e6465786573223a5b302c342c352c362c372c382c392c31302c31312c31322c31332c31352c31362c31372c31382c31392c32302c32312c32322c32332c32352c32382c32392c33302c33312c33332c33342c33352c33362c33372c33382c33392c34322c34332c34342c34362c34372c34392c35312c35322c35332c35342c35352c35362c35372c35392c36302c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37342c37352c37362c37372c37392c38302c38312c38322c38332c38352c38362c38372c38392c39302c39312c39322c39332c39342c39362c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3137322c3231352c37322c33342c37342c34342c3139372c39302c38352c3231302c3139372c3139302c37342c3231342c38392c332c3132382c3138392c33362c3135392c38312c3135322c3135352c3139382c3133362c36372c3133312c342c3134322c3139352c3133322c3133392c34372c3132382c36372c3137352c3234352c31342c3136302c3130312c3132332c3138322c3138382c3233362c3137362c3133302c3138332c3138302c392c34362c3135392c3131352c39392c34352c3234322c3234342c3137382c3231372c38312c3139372c3138382c38322c3233302c3135382c3136322c3130332c332c3134362c3139352c3232362c38352c3138322c32322c3134322c3231392c3130332c3234322c382c32322c3231352c39302c3130342c33372c38392c342c302c3136322c36332c31312c3232352c3130372c322c3133312c37352c3233382c3137345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230382c32392c31352c37382c3131312c37302c37362c3131372c3230352c3230392c3132372c3137302c3136372c3233322c3138312c38372c3231322c37362c39382c39342c3130352c3132322c3230382c302c3134392c3130342c3138372c3137382c3233342c3136302c38382c34395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "df2d6cefa95e2f90671555f2c5d611f3aa21c71ebd57cf47a66397dc4ee49ea8": { - "hash": "df2d6cefa95e2f90671555f2c5d611f3aa21c71ebd57cf47a66397dc4ee49ea8", - "previous_hash": "a2aa3c28351b86b3516170e7e09c100ba88ab8af244038e036333d34c6cc98a2", - "epoch": 40, - "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 40, - "immutable_file_number": 13 - } - }, - "beacon": { - "network": "devnet", - "epoch": 40, - "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:44.378614563Z", - "sealed_at": "2024-09-09T12:58:44.639317845Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b33322c3130362c3233322c3134382c3133352c33362c37372c38362c3132372c3135372c37382c34322c3137342c31312c32332c3233392c3139342c3131322c33302c38322c3131312c37352c3133362c3135302c32312c3235302c3232382c3131332c31372c34372c3135382c3138395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "fbf80fde22a064b7b5586dcb74c9920e11aefd5907c8c16ea1bedf0f5806e331", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233352c3133362c37322c37312c3234342c3130342c3130382c3137322c3138392c36302c37342c3132342c3235332c3230382c35312c3138302c342c3133352c382c3134362c3130312c3138312c3131362c3232382c3130342c3139372c3136392c3139312c3136362c35342c36332c3135315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137372c34372c3132332c37312c37392c38392c3136322c3132342c32302c39322c3231302c33372c3135312c38372c3131342c3230332c3133332c3135392c39332c3139332c382c37312c36322c3235342c32342c3136322c3133382c38312c38382c3230302c38332c37312c3134302c3139352c36352c33332c38352c3135352c33342c3135382c302c3137332c3134372c3135382c31302c39352c3132362c3135385d2c22696e6465786573223a5b302c312c342c362c372c31302c31312c31322c31332c31342c31352c31382c31392c32302c32312c32322c32332c32342c32362c32372c32382c32392c33302c33342c33362c33382c33392c34302c34312c34342c34352c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36342c36352c36362c36372c36382c37302c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39332c39342c39352c39372c39382c3130302c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3135322c3130382c3137392c3138332c3230342c3133352c3230322c3133372c3133352c34342c39382c3134322c31302c38322c3134382c37352c3135392c3230312c36332c32322c3136392c3233312c3136382c35372c37302c3137372c31332c38372c3134362c3130322c3137332c3134372c3232342c36382c39392c3130382c3233302c37312c34342c39352c3132302c3132352c3233322c3133312c3137352c3137392c3230362c37312c31352c3131362c39332c35302c34302c3138332c3134342c3233302c36382c302c38362c37362c3232392c37332c3234392c3136392c372c38392c3135352c3136362c3136382c37382c34392c32392c372c31322c33332c3133312c3232332c3138312c33372c3133392c322c3131322c3233332c3231312c3130322c3132382c39392c3130392c3131362c3137312c38302c3139372c3133352c3230332c3232372c35325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35372c3233372c37312c34322c38342c3232372c32352c38392c3132382c3231342c35302c3230382c3131382c32382c37372c3134362c39322c3233382c3138352c3132362c33392c3134392c3136302c35302c39322c33352c3133322c37352c3232352c3136382c3137342c3136345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "e08c33b16ffd90a63bf9a90ca81e76c483f7d0e219ecb4f36772f0e835aed89e": { - "hash": "e08c33b16ffd90a63bf9a90ca81e76c483f7d0e219ecb4f36772f0e835aed89e", - "previous_hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", - "epoch": 53, - "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 53, - "immutable_file_number": 17 - } - }, - "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.944241081Z", - "sealed_at": "2024-09-09T12:59:21.204200334Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "de3515f6f9ef0f2ad0a09e0acd4fa63113cf3f29f42a49a454e7c74cb943c005", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b352c3232302c3139322c3234352c33342c37312c3130392c3131372c3138302c3231352c3138362c3135322c3137352c33302c31342c32342c3235332c3132382c3230302c34392c36312c32392c3136362c3133352c3133362c3233352c3232322c35312c3130302c39332c3135342c315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "0624ca348ecffbf56ff706cf8b592bb139217d2b44e03b32e65846864f4c4e0e", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3135322c3131362c38322c3230322c36332c38392c3137352c37302c3137332c3131312c31352c3230372c3139302c38302c3134342c3230352c34352c32382c39312c3138382c3233322c3136302c33302c332c3130392c3133302c3138322c33322c3232302c3230382c3235332c33335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138332c3139302c3230322c36392c39332c362c3232332c3135352c3130322c36312c3137322c3233372c3137382c38362c3136322c302c33352c37332c3234342c3230302c35362c33382c3137312c3231392c39362c3132312c38312c32302c3130372c3134332c3233312c34362c3139352c3132322c3234312c36382c36372c3131312c3133332c39372c3133382c372c3232332c3234322c3135342c3137342c3132342c345d2c22696e6465786573223a5b302c312c332c342c352c372c382c392c31302c31312c31322c31332c31342c31362c31372c31382c31392c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34322c34332c34352c34362c34372c34382c34392c35312c35322c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37312c37352c37362c37382c37392c38302c38322c38342c38362c38372c38382c38392c39302c39312c39322c39342c39382c39392c3130302c3130312c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134342c3234342c3233362c3230332c3130372c31362c3136312c36392c3131302c3230362c3137322c36322c342c31352c31392c3235332c33342c35312c3235322c39342c3138352c31392c3138352c3231372c3233322c3131372c3230342c3232302c36352c3233362c3134352c3234342c33362c3234392c3234312c34342c3138372c3133342c32312c3139372c33322c3234362c3230352c34332c36332c36372c3231322c3133352c31312c3134342c3235322c39342c39392c3139362c3230372c3135392c3137382c3132392c3138392c3130382c39302c302c3131322c342c3235302c3137362c3230312c39342c3233382c3230392c3138322c3230312c3233352c3130362c35312c362c3133372c39382c3136392c38322c3134342c34372c3130332c37312c3131312c35372c3134332c3139322c3231392c3136392c39312c3132362c3133392c3130362c36392c3233345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3133382c3131322c3234372c3133332c3133352c34332c3233372c342c3231322c39392c3232332c3234302c3133332c32392c3233392c3133322c3138342c3231322c39302c3132302c3138342c3132342c37322c3139382c35392c3233352c3235312c33372c34312c3132392c3231342c32395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "e1bddee89293b9d7b73c7b07a2ae3d131a6b8c3aa0ac5354e02a6679bcca7353": { - "hash": "e1bddee89293b9d7b73c7b07a2ae3d131a6b8c3aa0ac5354e02a6679bcca7353", - "previous_hash": "2bebf6af48aa75fda8b21c19dad6201b4513e8bccbf0650531400abdca0d8593", - "epoch": 23, - "signed_entity_type": { - "MithrilStakeDistribution": 23 - }, - "beacon": { - "network": "devnet", - "epoch": 23, - "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:55.795237564Z", - "sealed_at": "2024-09-09T12:57:56.314561602Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - }, - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3136392c34302c32362c32372c3139352c3139332c3138312c36352c37322c3234392c3139362c36392c34362c3233382c31312c3233302c3230302c302c38312c34372c3233392c3232332c35312c35372c34372c3130362c32392c3131312c3134372c3131322c3135335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "e8e54610eb03c95bad36e24b5429dd5760587f775c2e377de97efd10cf17ce3b", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37392c3139372c3137322c3233362c372c35302c3139302c3136362c3234332c3138342c3134322c31372c342c3137322c3139312c34332c3138352c3131312c35342c3133392c37322c3137302c3231302c37322c3230392c3230322c36322c3134392c3130302c3134332c3135312c3137395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133392c31372c31352c36382c3136302c3139302c36332c3133302c3137312c3232382c32352c3235312c33312c3136372c3130322c3139362c3137392c38312c37392c33392c3230372c3132322c36392c35312c38392c3131302c3131392c3131392c3235332c3134352c3134362c3131392c35362c35352c3232302c3230302c35302c34382c38352c3133312c36312c3131362c3234332c3134342c3232362c3134322c3139362c3130305d2c22696e6465786573223a5b302c312c322c342c352c372c382c392c31302c31312c31332c31352c31372c31382c32302c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33322c33332c33342c33352c33362c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c35302c35312c35322c35332c35342c35352c35382c36302c36312c36322c36332c36342c36372c36382c36392c37302c37312c37322c37342c37352c37362c37372c37382c37392c38302c38322c38332c38342c38382c38392c39302c39322c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133302c3132302c3137372c35322c3136392c3136332c35352c3130312c31362c3138392c38322c39362c3235312c31302c32382c3136342c37372c3134312c3231382c3135372c3135322c31302c3133372c382c32382c38302c3139362c3232362c3138342c33362c34392c3235322c3139382c3138392c33392c3230342c31372c3232302c3138342c3139372c3135312c3232332c3133332c39372c35392c3233322c3139372c34352c31392c38342c3136382c3133302c34382c37312c3231372c3137372c3135302c3138342c3131392c36302c3133332c33382c3135302c3135392c3132372c3137372c3134332c3233352c38372c33392c33322c3131352c3232392c31332c3232322c3138352c3230392c3231392c3230362c39342c3130372c3233372c39322c3136362c3231302c3131342c37332c33352c38312c3138332c3135392c3232352c37302c3137342c3231342c3131365d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138332c3135352c312c3234362c33352c3232302c3235332c3132352c31312c342c3136362c3133372c35392c3139392c3139312c34332c3131332c3231342c3138362c3139382c382c3136302c3134302c3132392c3135362c3135312c3138382c3235342c3133332c312c3133352c3233315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "e1deb3c58329743012c1e944a5f6931af79a4fd9eef212e00b1a4a0e48466736": { - "hash": "e1deb3c58329743012c1e944a5f6931af79a4fd9eef212e00b1a4a0e48466736", - "previous_hash": "3453ad777b6cf1ac7076850d3a5a9b97cb1988c277a3569e7defee4fd524b63b", - "epoch": 12, - "signed_entity_type": { - "MithrilStakeDistribution": 12 - }, - "beacon": { - "network": "devnet", - "epoch": 12, - "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:24.947563162Z", - "sealed_at": "2024-09-09T12:57:25.339340835Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234352c3235312c3138332c39302c34322c3130362c3134322c3232382c3232392c34332c3135382c34312c36322c39362c3230392c3231372c3139332c3231352c36342c3234312c39382c3134362c3131352c31332c3233352c37392c3233332c3234312c3136362c3138342c3134332c35315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "413ad6ff36ef4c0848bd0d2252e1163c9dc51d61cfce90f530ebf2c190503422", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3131322c3133302c3136342c34352c3234382c3136322c36352c3133302c3138302c39362c3133392c36362c3233302c3131372c33312c3134392c3137372c3134302c32392c3136382c3235352c33302c33312c3130392c3136322c3134332c33372c3230372c3130312c3134382c3138302c36385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136302c3131392c36362c38392c3234302c3234362c3135302c3232342c3135332c37322c31302c32322c3133332c3135372c39372c3131332c3233372c3230342c38332c3234322c3131312c342c3234332c39392c3132352c3136332c3232372c3231322c3131302c34342c3130352c34392c34382c3134312c3233352c3230382c3233382c3233372c3230332c3134342c3232332c33302c3139342c3130302c32362c3131372c3132362c3136365d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c31302c31312c31322c31332c31342c31352c31372c31382c32302c32322c32332c32342c32352c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34352c34362c34372c34382c35302c35322c35352c35362c35382c35392c36302c36312c36322c36342c36352c36362c36392c37312c37322c37332c37342c37352c37372c37382c37392c38302c38312c38322c38332c38352c38362c39302c39322c39342c39352c39372c39382c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3133392c3135362c3139372c3136332c3132382c3130322c3131312c3135312c3137352c31312c3139332c39342c352c38392c31302c3232362c3231342c3134372c3132372c3135392c34332c3230352c33392c3132372c3133322c3131302c3130362c39362c3133312c3134372c32382c3230362c33322c3131352c37312c34332c36352c3134362c3233372c3137372c352c39372c3231372c37362c39372c35372c39322c36312c31382c38362c3137362c39362c3139372c3136302c37382c3130312c3134392c3132352c3231312c39392c31372c3139342c3134312c3138372c3137372c3234392c3137352c36322c3133372c38342c31372c3131372c39312c34352c3230332c3138342c3132392c3138352c3233312c3233322c3230322c3133332c3130392c3138362c3138302c35312c3137362c3139362c35342c3130332c33342c34392c37362c3134322c3133322c3231355d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39302c35302c3233392c3231312c36382c392c312c3134392c3232362c312c3130362c32372c39322c3132312c3136362c3130302c3132322c3132332c38322c3232302c3235342c35392c3235332c3133342c35372c38372c3137342c3134302c33362c31362c3138302c31325d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "e339157f5c81d34c325de0205a8a59dec30bc502978c8b4fb3c658ccedcbfae1": { - "hash": "e339157f5c81d34c325de0205a8a59dec30bc502978c8b4fb3c658ccedcbfae1", - "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "epoch": 58, - "signed_entity_type": { - "CardanoImmutableFilesFull": { - "network": "devnet", - "epoch": 58, - "immutable_file_number": 19 - } - }, - "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:35.252443732Z", - "sealed_at": "2024-09-09T12:59:35.770979814Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "snapshot_digest": "cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312", - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "fdfa5ebd1cf0394d0e923ae8a5b323525b287ed0f35044953004c33bd3b8ad32", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133312c3136312c31322c34362c3138372c35362c3130342c37342c3134302c3135312c38322c3137352c3139312c3136342c3133342c3130372c3139322c33352c32332c3139322c3135342c3232372c3132372c31342c3134342c3137372c36382c3137322c3233362c39392c3136302c3130322c36342c37382c37342c3139312c332c3233322c39392c322c34332c3133392c33362c3230322c35362c39382c3233372c38385d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c32322c32332c32342c32352c32362c32382c32392c33302c33312c33322c33332c33352c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35312c35322c35332c35342c35372c35392c36302c36312c36322c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37382c37392c38302c38312c38322c38332c38352c38362c38382c38392c39302c39312c39322c39332c39342c39362c39382c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136372c32382c3231342c3134322c3135322c3234362c3234362c3133372c3132352c3130382c3138392c32392c3132352c3137302c37362c3234392c3139362c3233312c3135372c3135392c32312c3234362c38352c38362c32342c3132322c3132302c3235342c31312c3234352c3132392c31382c3137352c3234322c3137352c3131332c3234382c31382c3137302c3134352c39382c3137382c3234332c3131322c3133342c3136322c31332c3138332c32332c31302c3133322c33332c3230352c3136342c3234352c3136382c39352c3231372c362c3134322c3136322c3134332c3133342c33332c3132382c39332c3131362c302c31352c372c3138342c3138342c3137352c3232322c3139352c35342c32312c3230342c38392c38342c3136352c3135382c3231352c3230362c3234392c3139322c3234312c3135382c33382c3134332c31382c33312c3133372c3138332c3130342c3233325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3134392c39312c37382c3134322c31332c38362c3234382c33362c3139352c302c3134342c36302c3231342c37352c39392c362c36382c31302c3136392c37342c3131392c3136382c3137322c33382c3130382c3133322c38392c3231372c3132362c3230302c36302c33355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3": { - "hash": "e3bc0ede9541f5a14e3bf32b9ad5e4c7fa2be2ac88731ea68b13d8b7a62f1fc3", - "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", - "epoch": 56, - "signed_entity_type": { - "CardanoStakeDistribution": 55 - }, - "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.854422087Z", - "sealed_at": "2024-09-09T12:59:29.244804372Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "55", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "926d1ad43ec2151d7954d1eac9590143f741a60d1e721aee550d53310d699d33", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134302c36382c3231372c3231382c3130372c32382c3139302c3232352c3134382c32312c3230362c39332c302c3133362c3138302c32372c3232362c332c3232332c3138362c3233322c35322c37342c3136342c31362c3137342c3137312c3136382c3139312c3132342c3133342c3130312c32322c3131332c3137302c3232352c3131372c362c3132302c3231342c35372c3130332c3233312c37382c3131382c3232332c3232322c31335d2c22696e6465786573223a5b312c322c332c342c352c362c372c382c31312c31322c31332c31342c31372c31382c31392c32302c32312c32322c32332c32342c32352c32372c32382c32392c33312c33332c33342c33352c33362c33372c33382c33392c34302c34322c34332c34362c34382c34392c35302c35332c35352c35362c35372c35392c36302c36322c36332c36362c36372c36382c37302c37312c37332c37342c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c38392c39302c39312c39322c39332c39352c39362c39372c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c3137312c36362c34332c3130332c3234332c3231302c332c3130392c3131392c3231372c33382c3230342c35392c31342c38322c3235332c3133312c37362c3234382c37342c35342c3234362c3136392c37352c3134342c3136312c34302c34332c3235312c37332c3131302c3235312c352c37372c31352c3131372c37332c3131302c35392c34372c3137302c31382c3133302c3130332c37372c3137372c39372c322c38332c3132332c3234372c35332c3139372c37362c3135392c3235322c36342c3139382c3232332c36362c32302c3138352c3234342c3231322c3233322c302c38372c39332c3130372c3134362c3233302c3235322c3139352c3135382c3232312c37312c3131382c3135342c3134332c37362c3233322c3136302c39392c39362c3136302c35302c3134362c37372c35372c3230312c3130302c35302c3133322c38322c3133325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3130362c3235332c322c3132322c35392c32302c3133392c35372c3139302c38372c3234332c3133352c31342c3232352c3134392c3234332c3231322c3137302c3232362c3132312c3133342c3234362c34392c3232302c39322c3130362c3133382c3134332c39372c31392c372c3139385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75": { - "hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", - "previous_hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", - "epoch": 44, - "signed_entity_type": { - "MithrilStakeDistribution": 44 - }, - "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:54.779152163Z", - "sealed_at": "2024-09-09T12:58:55.039194631Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "82ed81b61a96c54b7adc25ba48d0cfb2b327eecae14223ea1b6511ff90dde83f", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3133372c31302c3231372c34312c3232322c33382c392c39352c35392c3131382c3231342c3135382c3232372c3136312c38372c3233382c3139392c3133302c3139322c3235332c3136322c3130332c33382c3132302c3137312c31342c3233332c362c3232362c37392c3130312c3230305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3137302c31382c3230372c37322c36322c3134312c3231352c3130372c3234312c32332c3130372c3134332c302c3232382c3137302c32302c37352c3139312c3234342c3234362c3230322c382c31352c3138392c3139352c38352c34362c3137332c32372c3138362c3133322c3138382c3132322c36322c3134332c332c39312c3234332c3230382c3234392c36302c3132322c3230332c36362c3234302c3232342c3137342c3235345d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c31322c31332c31342c31352c31362c31372c31382c32312c32322c32332c32342c32352c32362c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34322c34332c34342c34352c34362c34372c34382c35302c35312c35332c35352c35372c36302c36312c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37342c37352c37372c37382c37392c38302c38342c38352c38362c38372c38382c38392c39302c39332c39342c39352c39362c39372c39382c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134392c33342c34362c3133352c34362c3136382c39382c31322c37312c3134302c3132372c33372c3235312c35372c3234352c36342c3135322c3139332c372c36362c31392c32372c3136302c3234322c38312c3131312c3136352c3131312c3134382c3230352c3235352c31322c3138342c3135342c3132362c3136312c3138332c38332c3231342c3132382c3139302c31362c3234302c35342c3232342c3134342c3231322c35372c32312c3235352c3232372c37312c36332c35342c3230352c32392c38382c39392c3132392c37332c3136382c3233322c31302c3231352c3134382c3136352c3231302c37302c3132392c3133302c3132382c33372c3232372c3135342c37382c38392c3231382c332c32362c36352c3137372c3130302c34352c3137312c3234392c3131342c31362c3138372c33392c3134312c3138312c3136302c3233302c3135352c3134382c3130385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3234312c3131372c3132392c37312c3132312c392c3138382c35392c39302c3235322c3139352c35362c3139362c3133392c33372c32322c3130332c3136382c3132312c3232382c3135382c3130352c3131382c3135312c3131322c352c3234362c3232322c3131392c36312c3137352c3134315d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49": { - "hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", - "previous_hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", - "epoch": 46, - "signed_entity_type": { - "MithrilStakeDistribution": 46 - }, - "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:00.382487635Z", - "sealed_at": "2024-09-09T12:59:00.648101415Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c35362c3233332c3134382c39392c36352c31372c37352c33352c3134322c3232392c3134312c3135312c3136392c3234322c3134352c35382c3138332c3136382c3136342c3134302c3136312c35332c36322c3231332c3135372c39382c3139362c3234382c3136332c3136382c3232345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "1ae535f6d1d661bee6460b40c32c5ad2f938b8d6e3eefc35e8e07b4a6ad4c50c", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135302c3135352c3232372c3230312c3139312c3230392c3231352c3234342c3137352c37382c3131312c33312c3136332c3137332c3232332c31342c3138312c32352c3138302c3133352c3230312c33372c31302c35352c3133322c3230322c3132382c3231312c35312c3231322c3231342c3234332c3136312c3234362c34342c3139372c3132392c39332c38382c36342c38352c3133392c332c37372c3234342c36332c3130392c37395d2c22696e6465786573223a5b302c312c322c332c342c362c372c382c392c31312c31332c31342c31352c31362c31372c31392c32302c32322c32352c32362c32372c32382c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34372c34382c34392c35302c35312c35342c35352c35362c35372c35382c36312c36322c36332c36342c36352c36362c36382c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c39302c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3136392c39302c3131322c34362c3139342c3130372c32392c3137382c37382c342c39312c3136372c3231382c36342c3230372c33392c38332c3131382c3231322c32382c32312c3139332c3134382c3130392c32352c3135342c3135362c3137352c32362c36372c39392c38312c37302c3234312c3233342c32322c39322c3131362c3139312c3230392c3131312c32332c3230322c36302c3231392c38392c35322c3132382c352c3234352c3138362c32322c362c3139332c34332c3133362c34382c32362c34372c3136342c3233342c3135332c3134392c3139392c3139362c3135362c3137312c3132322c39372c3136372c37382c36312c33352c3134362c39342c34342c39382c36352c3132372c3139322c3139312c3232312c372c3136372c3134312c3235322c312c3230352c3232362c36342c3137372c37302c3138382c3136362c34322c3131345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3131362c3233302c3130392c34312c3131342c3133382c3137302c3234302c362c3133362c37342c3136352c3136382c3132362c35342c3133392c37302c3139372c3131332c3138302c32362c3232312c3130352c3136392c3135312c32372c3131322c3131382c33372c3135352c37322c3231315d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4": { - "hash": "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4", - "previous_hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", - "epoch": 54, - "signed_entity_type": { - "MithrilStakeDistribution": 54 - }, - "beacon": { - "network": "devnet", - "epoch": 54, - "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:22.784551391Z", - "sealed_at": "2024-09-09T12:59:24.629078458Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "903b1e562ec409d9f900482cffd34477706ac6a6465601e550e6026275114861", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b352c3232302c3139322c3234352c33342c37312c3130392c3131372c3138302c3231352c3138362c3135322c3137352c33302c31342c32342c3235332c3132382c3230302c34392c36312c32392c3136362c3133352c3133362c3233352c3232322c35312c3130302c39332c3135342c315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138302c3134392c32342c3135372c31302c31302c3137392c34382c3233392c37382c3235322c3232322c3232302c3137342c382c3131362c31352c3233342c3139392c3138382c37332c33302c3230382c3132382c31372c3133382c32312c3135372c34332c3136392c3132392c37322c3232302c3133362c38372c33362c33362c3235302c3231372c39302c39332c3233372c3131392c3233302c3131332c3137342c3135302c38305d2c22696e6465786573223a5b302c312c332c342c352c372c382c31312c31332c31342c31352c31362c31382c32302c32312c32322c32342c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c33362c33372c33392c34302c34322c34332c34342c34352c34362c34372c34382c34392c35312c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36362c36372c36392c37302c37312c37332c37342c37362c37372c38302c38312c38322c38332c38342c38352c38362c38372c38392c39312c39322c39342c39352c39372c39382c39392c3130302c3130312c3130335d2c227369676e65725f696e646578223a317d2c5b5b3134392c3130312c34342c39332c34382c3139302c3131312c3137382c3130392c3230372c3131382c3131362c3130332c37332c322c3130312c3138302c3234392c3134302c3137392c34382c3139382c3139392c3134322c37352c3136302c31332c3230312c38382c37312c37332c3138382c33392c372c3231382c3135332c3135332c34322c3132342c35312c3134362c342c34312c38372c36372c3137342c3131352c35302c31362c3136302c37352c3137322c39382c3139392c3133302c32382c3139352c3233392c3233372c3135332c3233352c3230352c39382c38362c38302c36302c35352c3133342c3134342c3134322c3235352c38382c3136372c34312c3132302c3231352c3133352c33352c32372c322c36352c3136332c33302c32332c34342c3136332c34352c3234392c3137362c3231322c3232332c3232342c3232382c3232362c3137362c3132385d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35392c36332c3232362c32382c32322c3232362c34342c32392c3135362c3230372c3135332c3131362c3230382c3134352c3136392c3136302c3234332c3231312c31332c3233362c3138302c3134352c3135332c3131312c3231312c3139392c3235312c3230352c3133392c3135382c3133302c3131385d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd": { - "hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", - "previous_hash": "c956a727e0611dfdd38e188e5a94090e8dcbe2a2b62862d08499407fdbcfe230", - "epoch": 51, - "signed_entity_type": { - "MithrilStakeDistribution": 51 - }, - "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.253813895Z", - "sealed_at": "2024-09-09T12:59:14.513254004Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35382c32312c3133322c3131312c3137342c3138322c3230372c3130372c3134362c3232342c3234322c3232302c3138352c3131372c3138342c3139332c3130362c3232392c332c3131382c362c3137312c3135322c34322c3137322c3130342c3136352c3130332c37342c34362c3139332c37345d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "26a7448fe11faf2a05d98499290865c6c3bf756a2ee9c6e23997ca24d7527555", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3139382c3131382c3230312c37372c3234382c3230322c3136332c3231392c3135372c3138342c3135392c3130332c33312c3231362c38302c31322c3138332c3137312c342c37352c3234312c3234352c3235312c3139302c3232332c31342c3137382c33312c3234352c3230332c36362c3137305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136332c39342c36392c3130362c34362c3233302c3138342c3132342c37342c32352c3139342c3133312c3132312c3232372c3232342c39392c3235332c3233392c37392c3234332c3232362c38332c37362c31302c3130382c3138322c36342c3139362c3139372c3232392c3137352c3234312c3230352c3138382c33362c3137302c38302c32382c36302c3233332c39332c3138392c32382c32332c36362c3130342c3137352c3130385d2c22696e6465786573223a5b302c312c332c342c352c362c372c392c31312c31322c31332c31342c31352c31362c31382c31392c32302c32312c32332c32342c32352c32372c32382c33302c33312c33322c33332c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35312c35322c35332c35342c35352c35362c35372c35382c35392c36302c36312c36322c36342c36352c36372c36382c36392c37302c37312c37322c37342c37352c37372c37392c38302c38322c38332c38342c38362c38372c38382c39312c39322c39332c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3137322c3231352c37322c33342c37342c34342c3139372c39302c38352c3231302c3139372c3139302c37342c3231342c38392c332c3132382c3138392c33362c3135392c38312c3135322c3135352c3139382c3133362c36372c3133312c342c3134322c3139352c3133322c3133392c34372c3132382c36372c3137352c3234352c31342c3136302c3130312c3132332c3138322c3138382c3233362c3137362c3133302c3138332c3138302c392c34362c3135392c3131352c39392c34352c3234322c3234342c3137382c3231372c38312c3139372c3138382c38322c3233302c3135382c3136322c3130332c332c3134362c3139352c3232362c38352c3138322c32322c3134322c3231392c3130332c3234322c382c32322c3231352c39302c3130342c33372c38392c342c302c3136322c36332c31312c3232352c3130372c322c3133312c37352c3233382c3137345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230382c32392c31352c37382c3131312c37302c37362c3131372c3230352c3230392c3132372c3137302c3136372c3233322c3138312c38372c3231322c37362c39382c39342c3130352c3132322c3230382c302c3134392c3130342c3138372c3137382c3233342c3136302c38382c34395d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "ee9ff754e1ab8a1e6facf4f721abff6c688ac394eb0e2186dab3a8a9b034b0cb": { - "hash": "ee9ff754e1ab8a1e6facf4f721abff6c688ac394eb0e2186dab3a8a9b034b0cb", - "previous_hash": "13a3061ff6bb00bb08342782cd82378d4b260c536e9aa78451d0711424429179", - "epoch": 37, - "signed_entity_type": { - "MithrilStakeDistribution": 37 - }, - "beacon": { - "network": "devnet", - "epoch": 37, - "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:35.212467534Z", - "sealed_at": "2024-09-09T12:58:35.614990664Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b37342c35382c352c3232322c3138352c39362c33302c3232322c3139372c3139302c39372c36312c3133392c3136362c32332c3138322c37322c3233362c3135372c3136352c32372c3135332c3138342c31312c3231382c37302c38352c3130392c312c3133372c3138342c3138325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "2955b13409f273ff724e155a7798a51eb1320a5f7ea1af41749e9eee1da198d1", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3132322c3134382c3139332c3136342c33382c3133382c37352c3130372c3133392c32372c3138382c3234392c3137352c3234382c3130322c39322c3137362c3130392c3234342c3232332c32352c33372c31352c3139322c38362c33382c3136372c34352c3130302c3136392c38332c34315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134322c37372c32302c3137302c3232362c3130332c37372c3230302c3132352c3235342c3234302c38372c33382c3135342c362c3138362c32302c3136302c31322c33362c3137322c39352c34382c3232342c36302c3232372c37352c3232362c352c3137332c3232312c3135372c3132332c37372c3135302c3234312c38362c3233322c3234392c3230352c3139352c3134312c3130312c3233372c3132322c3134332c39382c3232315d2c22696e6465786573223a5b302c312c322c352c362c372c382c31322c31332c31342c31362c31382c32302c32312c32322c32332c32342c32372c32382c32392c33302c33312c33332c33342c33352c33362c34302c34312c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c35382c35392c36332c36342c36362c36372c36382c36392c37312c37322c37332c37352c37362c37382c37392c38302c38322c38342c38352c38362c38372c38382c38392c39312c39322c39332c39342c39352c39362c39372c39382c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c3132392c3231362c3134362c3138392c3134322c3138332c312c3231302c3130342c3136332c3232322c38392c3230362c3132372c3137312c3135372c33392c36362c3234362c37332c3135322c3138362c36382c36382c3136302c39302c3234382c33352c3136322c3230302c3133392c38372c3133392c3135332c3235342c3134302c36332c36332c3139372c34332c3132332c37302c3131322c31352c3134382c33332c3233302c372c3230342c3133342c32312c3135372c3137322c3233302c3234332c3130342c3136342c3234372c3130302c33322c3134392c3132342c34322c3235342c3138392c39392c39372c3233392c3136322c3138332c3134342c3130392c33322c3138372c312c37302c32352c3137332c3130322c3232372c31322c38362c34322c332c3137352c3235342c3137372c3131342c3233302c3132382c3135372c34352c3232392c3230372c3136325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3230302c392c36362c31352c33362c3137332c39392c36352c39372c31362c3232332c32342c3235352c39302c3132382c3135362c3133302c31372c3132342c33312c3133382c35352c3231342c3138362c3137352c3231372c31372c3233322c3134322c3135302c3134382c3131345d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f": { - "hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", - "previous_hash": "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4", - "epoch": 55, - "signed_entity_type": { - "MithrilStakeDistribution": 55 - }, - "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:25.510891189Z", - "sealed_at": "2024-09-09T12:59:25.920810057Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - }, - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b35302c31302c3134312c35342c3136362c302c38312c31302c31352c3135312c3134302c332c352c3135342c34332c3231312c312c3139342c3130382c38362c322c3139392c3235322c3134392c32362c3231302c3136382c3233392c3137372c3130312c32332c3231385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "65a46e77a8689aedb2b7023f9914adeeea0bb2528ddd86f00a5af87b736992a9", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c3134392c3136382c34392c3139382c3138322c3133352c35342c3136342c39342c3137302c32332c34352c3232352c32342c3230322c33372c392c3139382c3233372c37332c3233352c34372c3139362c3234302c3139392c3132392c3231302c33382c35372c3139302c38305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c3132312c32322c3132392c31352c33322c3138352c3138342c32312c3234342c36392c3137322c3230302c3130322c36372c36322c3137372c34392c3131362c37352c31342c3130322c3132362c3130382c37302c3135362c3231322c3139372c3133312c39382c3137372c3132392c3138372c3232352c33372c3233302c3232302c3133392c3136312c3133302c3133382c37362c32372c3235352c37392c3233332c3132322c37345d2c22696e6465786573223a5b302c312c322c342c352c362c392c31302c31312c31322c31332c31342c31352c31362c31382c32312c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33352c34302c34312c34332c34352c34362c34372c34382c34392c35302c35312c35332c35352c35362c35372c35392c36302c36312c36322c36342c36352c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37372c37392c38302c38312c38322c38332c38352c38372c39312c39322c39352c39362c39372c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3134302c36382c3138392c3139322c3235302c3131382c3133302c3130322c3132342c352c3131352c37322c36352c3132382c3130342c3235312c33352c3130322c3233382c3231312c3136352c3137332c3135352c3134332c3231302c37392c3136322c3139312c3131302c34332c3232392c3135302c3138362c32302c3232342c39392c3139372c34352c34332c352c36342c32392c3131382c3139322c39382c33302c36342c3132352c382c32362c33352c35342c3134312c3136382c31392c3232342c36342c3131302c3233372c31342c34342c34312c34362c3130302c3133392c3135392c3135352c34372c352c3235332c3231322c39312c35302c3134392c32332c3231332c36302c3133392c3137322c382c3230352c37382c3234362c3234362c3138342c3133342c3137392c32382c37312c3231372c3134322c3137332c3233392c34302c322c3136395d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3136372c32302c3138342c3234352c32322c312c3134332c38382c3131362c35332c3231392c3232302c3134322c34342c3230392c38332c37322c3137362c3135302c3133382c33342c3135372c3136382c3233382c3139302c32382c3134392c3133332c3138342c39332c3130332c3231322c3130342c3230342c3235332c38392c37302c3132352c3132372c32302c3234362c3231332c35322c3139352c3233322c35342c36372c36375d2c22696e6465786573223a5b332c372c382c31372c31392c32302c32322c32332c32342c33362c33372c33382c33392c34322c34342c35382c37382c38342c38362c38382c38392c39332c39342c39382c39395d2c227369676e65725f696e646578223a317d2c5b5b3135302c3231382c34332c31322c3137352c312c38302c34332c34382c3230352c3135362c3136382c38342c3231332c3132322c3134332c32392c3137302c3134332c3139372c3132312c33312c3235322c32382c3231302c3231312c3231382c32302c32322c3230302c3233352c3230382c3230362c33382c3132352c3231392c3135352c3139362c3135332c3233322c3134312c3134322c35392c36312c382c3232342c32382c3137312c31322c3234342c3138352c3135372c3137342c36392c3233372c3233322c3133372c3234322c3235332c3130342c3135342c3230312c33372c3234392c3231392c38392c3137362c34302c3233382c37322c35362c38392c33342c3136392c3137302c3230382c3231322c3231342c3234312c34352c3231372c3230372c3137312c3136302c3132372c3136332c3230302c3136342c3139372c3137382c3132312c3133302c3231332c3133372c3133322c375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "f087ab01dcc7be081554b9fb0f569c89f5e46acc01538e0b884a83c1f9257ee7": { - "hash": "f087ab01dcc7be081554b9fb0f569c89f5e46acc01538e0b884a83c1f9257ee7", - "previous_hash": "3fd85abeaf29806f53bdc78643e042d5292aa66b4935fc4a75fbc9f04d79e4ce", - "epoch": 16, - "signed_entity_type": { - "MithrilStakeDistribution": 16 - }, - "beacon": { - "network": "devnet", - "epoch": 16, - "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:36.161725894Z", - "sealed_at": "2024-09-09T12:57:36.556285509Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - }, - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39352c3232332c3130322c3137332c3234372c3231372c38352c3138302c38352c3133332c34302c3133382c39332c36312c38332c3132352c3232382c3136342c3133392c37302c3231302c3230362c3231332c37392c33342c39382c3133312c3132312c38382c3235332c3232392c3233395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "d4b0ec7ebc6b1d8bd4287b2fb505d5bbcfbe89f77f7263973ab7bc54194ee883", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232342c3139382c3137362c39352c34332c3136392c3132372c322c36302c37312c39382c35312c3136392c3231362c3133342c3137342c3136312c36342c3135392c3231302c3130342c3132372c3234352c3137382c3135352c31392c32322c32302c36332c3130392c3139312c375d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3134392c3230342c3135312c3235302c31352c3130322c38382c35382c3230352c3136372c3133352c3233392c3137322c39342c34312c3134332c3139342c33332c3133342c39372c3136332c3231332c3138382c3231342c3131362c3231382c3139342c3234362c3130302c3232332c3233372c3232302c3139322c34312c34372c3234302c3136382c3130352c3139362c3230362c32322c34382c3131392c3235302c3231362c3234302c31322c36325d2c22696e6465786573223a5b342c352c372c31312c31342c32302c32342c33352c34362c34372c34392c35312c35332c35392c36352c36382c36392c37312c37332c37392c38312c38322c38332c38392c39325d2c227369676e65725f696e646578223a307d2c5b5b3134322c31342c3231362c34342c3130312c3234302c36332c38322c34322c3132372c3138382c3233352c33332c33362c36342c3135332c3135312c3233332c39352c3137312c3234352c3234322c342c35362c36322c3131322c3233362c3235352c31382c31382c3132322c3132302c39302c3138322c3232332c3132362c36382c3139392c34312c31302c3231302c3139312c3132342c3235342c3135302c38332c3132342c322c392c38342c37322c3230332c3130382c3130352c392c37392c31352c3136372c3131342c3137382c33322c3136392c36322c3135352c3139302c3137342c3136332c332c3135302c3135302c31322c3137312c3230362c3132302c3230302c3135322c3137372c302c3139312c3131332c3230382c32322c36302c3134352c3135322c3235302c3131382c35352c3230342c37312c3132302c3139332c37322c32322c3234392c38305d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133352c3136322c39342c3232332c37332c31392c3137362c3230332c3138302c3137392c3135362c3139332c3235302c3231312c3234312c32372c3138362c332c32302c34362c3132392c3131342c35322c3137322c3132332c39312c3232332c3137362c37372c3139352c3130372c3131352c3132342c3136312c342c3130392c3230312c3132312c3130362c3235302c3138342c3231342c37322c3233382c3231312c3233362c37372c35375d2c22696e6465786573223a5b312c322c332c382c392c31302c31322c31332c31352c31362c31372c31382c31392c32312c32322c32332c32352c32362c32372c32382c32392c33302c33312c33322c33332c33342c33362c33372c33382c33392c34302c34312c34322c34332c34352c34382c35302c35342c35352c35362c35372c35382c36302c36312c36322c36332c36342c36362c36372c37302c37322c37362c37372c37382c38302c38342c38352c38362c38372c38382c39302c39312c39332c39342c39352c39362c39372c39382c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3137352c3231322c3231392c3231302c3139312c32332c3233342c32372c3139322c3134352c3234352c3139322c39352c3131372c36362c3139312c3138342c32342c3138392c3136352c3131372c3132382c3232362c3230302c33312c3230342c3132362c3136372c3231392c3130342c3234302c32342c3230362c38342c3231342c34372c3232372c36342c32352c3133352c3139312c3135322c362c3231362c3138392c3136302c3232332c3137382c322c3231302c36332c3138302c3235352c3130382c36332c31392c3232332c36392c3137342c3130362c3133342c38302c3139302c3136372c3134382c3231372c3137382c3131372c3136332c39322c3230322c36372c3234352c3136302c39372c3136392c3135302c3233372c36332c3130372c3230322c3136352c33362c3136382c3230382c3134392c34332c39332c37362c3136382c3135342c38362c3134342c37322c3130352c3232375d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "f1454af28e0468031c76f8c3423dec3a32c94932ea0a373926f1658a3c8f5be2": { - "hash": "f1454af28e0468031c76f8c3423dec3a32c94932ea0a373926f1658a3c8f5be2", - "previous_hash": "5b2183f66de9d0004ee78f40aa3939ce3d3424824032803c08a4620b1e3e961f", - "epoch": 32, - "signed_entity_type": { - "MithrilStakeDistribution": 32 - }, - "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:21.024849374Z", - "sealed_at": "2024-09-09T12:58:21.542488259Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231372c3135332c3132322c38372c39362c3233332c3133332c39362c3232332c39312c35342c31362c39302c3231352c3135312c38372c32352c3137322c3138312c362c31342c34382c3134322c362c3234302c3139392c3232352c3139382c3137352c3231332c37302c3231395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "252fc6a30a9cdda446305607d613c1dab567d23282d2792409d11b8ac8d7446b", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138302c31342c31302c31342c3231362c3139342c3234332c3132362c35342c3132302c32352c332c3232312c35332c34362c31332c35312c3136312c372c3230302c3135312c36382c3136372c3230362c38352c3139342c34332c31312c37302c3133382c3137362c36355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138302c35382c3136382c37352c3230312c39372c3135332c3133322c37332c31322c3134392c3134342c3130322c3136382c3234342c382c39322c3132322c35392c36372c35372c33342c37352c39312c3232392c3134302c3234312c3131342c3134362c3134342c32312c3138342c32322c3235352c36392c35332c3133312c3235332c36322c3130312c3135342c3134322c31342c3130342c3233362c39372c37392c39365d2c22696e6465786573223a5b312c322c332c342c352c362c372c382c392c31302c31312c31322c31352c31362c31372c31382c32302c32312c32322c32342c32352c32362c32372c32382c32392c33332c33342c33372c33382c33392c34302c34332c34352c34382c34392c35302c35312c35322c35342c35352c35362c35372c35382c35392c36302c36312c36322c36332c36342c36352c36372c36382c36392c37302c37332c37352c37362c37372c37382c38312c38332c38342c38352c38362c38372c38382c38392c39312c39322c39332c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130335d2c227369676e65725f696e646578223a307d2c5b5b3133392c3234392c3131332c39302c3132342c39312c322c34392c3138332c34372c32362c3232302c3138302c3132352c38372c3230332c3131302c3232372c3233372c392c32322c3138332c3139322c32322c31382c37332c33372c32332c38302c3130382c3233382c35302c3231312c3233302c3133342c34302c34322c3132392c3135342c3136352c3136372c3135322c3230382c3135382c302c3234342c3131322c3234392c31352c3138332c35352c3130342c35332c38372c33372c33332c34302c352c3231392c3136302c3134372c3231302c3233382c38392c37342c3233322c3230332c3231342c3136392c32362c3130322c37302c3232362c3235342c3131322c3231352c3230392c34362c35392c3131382c3234342c3135302c3232392c31382c3234382c3230362c3131342c36392c35342c34332c3232362c37372c3136312c33342c37342c3137345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b39382c35312c38392c35382c3231322c3131382c38352c37332c332c3130312c3232392c3134342c3136362c3139342c35372c37382c3132322c3137302c3134322c3134342c32352c3136352c3234312c36312c3235322c3136312c39312c3139312c3138322c3132362c3136362c38375d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d": { - "hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", - "previous_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", - "epoch": 57, - "signed_entity_type": { - "MithrilStakeDistribution": 57 - }, - "beacon": { - "network": "devnet", - "epoch": 57, - "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:31.089963428Z", - "sealed_at": "2024-09-09T12:59:31.478907862Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b34312c3139322c3233392c3137302c3138312c3130362c31382c37382c312c36342c3133352c32352c36362c3135382c31342c31332c3135382c38312c3138372c35392c35352c35322c3234392c37342c3231342c3137352c3137342c31362c3131352c3131342c3234382c385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "0671b0b9dc2f5f3cec9a253fd40246361dbc1180e03bc78da4e47f9b3ef2c1c2", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3231342c34392c3235322c36332c3131362c3130322c36342c3231382c3232392c34322c3234322c3230392c3132302c3132302c3234312c34352c3134382c3130392c3132312c3233312c3232372c31372c39342c39312c3133362c3131392c3138372c3134342c3137372c39352c31312c32315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133372c3134362c3233342c3132342c3137332c3138352c3235332c3136392c3136332c3234312c3131372c39352c3138332c37372c3131342c32332c31352c3231382c3138302c3231362c31362c3230392c3137362c3234302c3130302c3138322c3233312c302c3234332c37342c34312c35342c3136362c31352c3139362c3136342c36302c3133372c3131332c3235342c3133352c3138302c3234302c3139342c36382c3139372c3233382c3232375d2c22696e6465786573223a5b302c312c332c352c362c31302c31312c31322c31332c31342c31352c31362c31372c31382c32302c32312c32322c32342c32352c32372c32392c33302c33312c33322c33332c33342c33352c33362c33382c33392c34312c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35342c35372c35382c36302c36332c36352c36362c36372c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38312c38332c38342c38362c38372c38392c39302c39312c39322c39332c39342c39352c39362c39382c39392c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3135312c3130322c3132352c3133382c3138362c3138372c31342c3235302c3131342c3235322c3133322c3133382c3132312c36372c312c3130392c32342c39332c332c3231352c31362c3231332c3230362c3132382c36332c3139302c3233332c3135372c3138302c3134382c3135352c3138392c3231322c3139322c34332c3131362c34302c34332c3134332c31352c3133302c38382c35332c3131302c35332c3230342c3231312c38322c322c3139362c3232372c3137312c3135342c31392c3139332c3233332c3139392c3234302c3130362c37342c3137352c3131352c3131382c3134302c3135352c3234342c39342c32322c3234352c3135332c3232302c3233312c3139372c39392c3136362c3133332c3130372c3130352c34332c38302c34362c39312c35362c34302c3232312c3132342c3136302c3134302c3135362c3232322c31302c3232382c3234392c302c3230302c3234305d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3231302c3135352c37352c3234312c38332c3132342c3232352c3138332c35362c3138342c38322c3139332c3231332c39332c35312c3132342c3139382c37312c3133302c39322c3231322c32352c31312c3130302c3134362c3138312c3132352c3234322c39322c3134372c3132382c34355d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "f69d6cd98a633aa01bec877fa38a3023ba43b7e868f0ac4a5be370c9c2f9ac6c": { - "hash": "f69d6cd98a633aa01bec877fa38a3023ba43b7e868f0ac4a5be370c9c2f9ac6c", - "previous_hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", - "epoch": 45, - "signed_entity_type": { - "CardanoStakeDistribution": 44 - }, - "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:58.738816909Z", - "sealed_at": "2024-09-09T12:58:58.999591946Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3130302c3138322c3133322c34392c3233372c39352c36332c3130382c3139352c3230352c3234352c3131302c36312c39392c3234312c38302c36342c3131392c3138372c36362c38342c32382c3235312c3135362c3138332c34332c3235322c34312c35332c3232342c3138352c3133335d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "44", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "383eefb1e4bece2f4cd5500d176e94c8cb27690d35c25131c043bf461c3592bf", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3138372c36342c39352c3132372c3130382c3131342c34392c33302c3135392c37322c3134312c3231342c38352c3137362c3131342c342c34382c3234322c3232302c36332c32302c39352c35322c35322c3132322c31302c3131362c36352c31342c32382c3231322c39365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133362c3230302c3138352c36312c3233332c3233372c3133302c3230372c38392c3235322c3138332c3134392c37392c3131392c302c3135312c34382c35362c3139352c3232382c3137312c3131302c35302c3133332c3137342c3232352c3231322c34382c35352c3137372c3234362c3234302c38372c3138322c3133342c33382c32392c3131372c37342c3230312c33332c3138302c3131352c35332c3138392c32372c3235312c36335d2c22696e6465786573223a5b302c322c342c352c362c372c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32302c32322c32332c32342c32352c32362c32372c32392c33302c33312c33322c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34362c34382c34392c35312c35322c35332c35352c35362c35372c35382c35392c36302c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37352c37362c37372c37382c37392c38302c38332c38352c38372c38382c38392c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134372c31322c39332c3233352c35362c3136302c3130342c38392c37332c3136342c3231372c362c3234362c37382c35302c3133332c38372c31332c3230362c3130362c31322c3132312c37372c3230322c38362c32342c39342c39302c36342c34332c3231342c3134302c35372c37342c36322c31312c3138322c3233362c3136392c3230332c3136332c39312c3230322c33322c32312c36392c3230312c3138352c31352c33352c362c31382c3135332c31372c33372c3139302c3130322c3232352c3235332c3133332c3132392c33322c35342c37332c35342c3232312c32392c39312c372c3137312c3137342c3230302c3130312c38312c34322c352c32392c3134382c3130312c3134372c3233362c3137342c3139392c3139362c3233332c3137342c3232302c3139342c3132352c31362c3235322c35352c34322c3233342c35342c315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b35312c3233312c3233352c3232352c3139322c3134372c39372c36322c3230312c36322c35352c3131342c3134362c3233332c3233302c39352c3133392c332c362c3136392c3137362c3231332c3231322c3235352c3132392c3133392c3138382c3134392c3134352c3130322c322c3138355d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52": { - "hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", - "previous_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "epoch": 59, - "signed_entity_type": { - "MithrilStakeDistribution": 59 - }, - "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:36.822017929Z", - "sealed_at": "2024-09-09T12:59:37.210902199Z", - "signers": [ - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3234312c35302c3132342c3138312c3133342c39352c3134342c3139362c3135352c32332c3137352c3234302c3135352c3132342c392c3138302c3230312c3133312c3133372c3231382c3130302c32352c37322c3230382c3233392c3235302c35372c3233392c3130352c3137302c3232302c35385d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "a91356ddf5bc6ce62e589dc002611d6265d5e21b77f513d6eb343b11fc78bb33", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134392c3130372c3136382c32392c37362c33302c392c3231352c3232382c3134392c362c3232392c37352c38362c3231332c3134362c3137312c3139362c33382c3233382c3136382c34372c3130372c3230352c31342c3131372c372c3135362c3134342c35352c3133352c3235305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138352c3235302c3231312c3230332c312c3132312c3133302c34352c3233342c3137322c3139322c3232322c34322c35382c3131322c3234352c36312c33382c3230322c312c31332c3138362c35322c38352c34392c3137322c3137322c3134332c3231362c3136352c3131342c37312c32362c3130332c3131332c3138322c32302c3235312c3234342c3232342c32312c3138392c37372c38382c3234352c3131392c3139312c3135305d2c22696e6465786573223a5b302c322c342c352c362c372c382c392c31302c31312c31322c31332c31342c31352c31372c31382c31392c32302c32312c32322c32342c32352c32362c32382c32392c33302c33312c33332c33342c33352c33382c34302c34332c34342c34362c34372c34392c35302c35322c35352c35362c35372c35382c35392c36332c36352c36362c36372c36392c37302c37312c37322c37332c37342c37352c37362c37372c37392c38312c38322c38332c38342c38362c38372c38382c38392c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3136392c3134322c34392c39312c3133332c3234302c3130312c39322c3233352c3232312c3134382c31372c33302c35342c3130392c33302c3132352c35352c38312c3233382c3234302c3230392c3132322c37302c32372c3230372c3134352c3234332c3231392c3132322c3230322c39312c37392c3139302c3231342c3233322c3136322c3232352c372c36352c3138312c3234302c33382c3133372c37392c37392c35352c37352c31382c38332c3137392c38332c3131312c3234332c302c33342c3135322c3139332c3136312c3131392c372c3138352c322c36382c3139332c3131382c362c37392c36352c35342c31312c3234322c31302c3235302c3138312c38312c3137372c3230322c3139342c38382c31302c3133382c36392c36312c3135392c3137332c3139392c3132342c35382c302c3234332c3135372c35342c37312c3139312c35315d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3233372c3139362c3234382c38302c37352c3131312c3136302c3138392c3231392c3130382c3130332c3234332c32302c3130342c3132312c3131352c3138332c3136342c3231342c3137332c3232382c3139312c33372c38312c32312c35342c3131362c38352c3232332c33362c372c385d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "f88d22f2977aa0161b3dd0775cccdcb935d90e3c621d5bb8d51893785c8252f5": { - "hash": "f88d22f2977aa0161b3dd0775cccdcb935d90e3c621d5bb8d51893785c8252f5", - "previous_hash": "c94228c6f70dd5d50e5514091c431613cfd2e6a116f3cc1a45c0cda23e9d7e11", - "epoch": 28, - "signed_entity_type": { - "MithrilStakeDistribution": 28 - }, - "beacon": { - "network": "devnet", - "epoch": 28, - "immutable_file_number": 8 - }, - "metadata": { - "network": "devnet", - "version": "0.1.0", - "parameters": { - "k": 75, - "m": 105, - "phi_f": 0.95 - }, - "initiated_at": "2024-09-09T12:58:09.930058110Z", - "sealed_at": "2024-09-09T12:58:10.452771030Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b39312c35382c3134332c3134392c3134372c3133392c3135332c322c31372c352c3234362c3131302c33312c37392c3135312c3130382c36332c3232352c3137322c3235342c33312c3235352c3132342c3136372c3137322c36332c37372c3136372c3234322c3231322c3232302c33355d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" - } - }, - "signed_message": "e0662e9e0d0850d512f05292e9d2aeaaf6da2f708ac45e5861e508c9447a07e0", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3232302c3231372c3131302c332c38362c31372c33342c3131362c37382c35372c38342c3137322c352c3230352c3235322c33332c3131372c36342c34382c32392c38352c3134372c3230342c39322c3235322c3234362c3231332c3231362c3234382c33362c3230372c3133395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3138312c3235352c37332c3233352c34342c3233372c3132392c3235342c332c34312c3133372c34372c37382c3230392c3135332c3139382c34312c31392c3231382c3234312c3133322c36362c3135372c32372c36332c3232372c302c382c37342c3132352c3233332c36332c3134372c33372c3139332c38372c3133372c3131352c3139382c38362c31362c36372c3137312c39322c34322c35382c3138382c3136335d2c22696e6465786573223a5b302c312c372c382c392c31352c31362c32302c32342c32392c34312c35382c35392c36332c37312c37342c39362c3130335d2c227369676e65725f696e646578223a307d2c5b5b3134302c3131392c3138322c34332c3134342c3132362c3139322c3139392c3131382c3230342c35332c342c3138362c3139372c36382c342c302c3131322c3138382c37372c34332c39382c3231342c3234342c34302c3135322c3231302c3130312c392c3136392c34322c3232382c34362c3131302c3232312c3134352c3132372c38382c38392c34392c3137322c3130312c38362c31312c32342c382c3132382c3132392c31372c31302c32342c3232372c3232312c3231382c3136312c37312c3139372c3135382c3231312c3233372c32362c38332c35392c35372c3139312c3138312c3234312c3134342c3235352c3232342c3235322c3138382c3136332c3137362c38302c3235302c3230302c3138332c33302c3131382c3132312c3135382c3134302c3131382c39322c3231342c3132302c392c3132322c35302c36312c37342c3231362c3131382c33302c38315d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3133342c3139392c3135332c3137352c3138342c3234322c3234352c3231312c3137332c3230312c3135302c3130332c35342c3133372c3130312c3234302c32352c3132372c3234302c3233342c3134332c37392c32302c3232322c34382c3231332c3136332c36362c37372c3230352c3230332c3133352c3136332c3233302c34382c3130342c3232392c36342c3132322c31332c3131312c36322c39352c3132362c3139392c37372c3132362c365d2c22696e6465786573223a5b322c342c352c362c31302c31312c31322c31332c31342c31372c31382c31392c32312c32322c32332c32352c32362c32372c32382c33302c33312c33322c33332c33342c33352c33362c33372c33392c34302c34322c34332c34342c34352c34362c34372c34382c34392c35302c35312c35322c35332c35342c35352c35362c35372c36302c36312c36322c36342c36352c36362c36372c36382c36392c37302c37322c37332c37352c37362c37372c37382c37392c38302c38312c38322c38332c38342c38352c38362c38372c39302c39312c39322c39332c39342c39352c39372c39382c39392c3130302c3130312c3130322c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138312c3230382c39392c36392c34312c31352c3231312c38372c32362c37382c3231322c3133372c3138372c34332c35332c37312c3130322c3131362c3138302c3130362c3131362c3135312c32312c3132392c35362c34392c3132352c3134332c31382c31312c32302c352c3137332c33362c372c3235352c3136362c3134312c37392c3135382c3138322c38362c3132392c3131312c3136312c34312c32362c3234332c32322c34322c3136312c3233352c3137302c362c33342c3133322c31322c31342c3132382c3138362c3231392c3132332c32312c33342c3234382c3231322c39352c3134352c3135332c35302c3135382c3130342c3138372c3138322c33352c3230322c3134382c3132382c33352c3138342c34302c37342c3235332c3132322c3231382c34352c3131322c34322c3132312c3130342c3136322c3235352c31342c37392c37332c38335d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "f8ca3cf68c39f45c29d12e29c3642453ecffcb6d18bfcf5d559b915d8df8c07c": { - "hash": "f8ca3cf68c39f45c29d12e29c3642453ecffcb6d18bfcf5d559b915d8df8c07c", - "previous_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", - "epoch": 62, - "signed_entity_type": { - "CardanoStakeDistribution": 61 - }, - "beacon": { - "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 - }, - "metadata": { + "metadata": { "network": "devnet", "version": "0.1.0", "parameters": { @@ -3867,70 +1479,27 @@ "m": 105, "phi_f": 0.95 }, - "initiated_at": "2024-09-09T12:59:45.470454219Z", - "sealed_at": "2024-09-09T12:59:45.865126929Z", + "initiated_at": "2024-10-28T13:28:30.350797385Z", + "sealed_at": "2024-10-28T13:28:30.619531515Z", "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "stake": 13333333334 - } - ] - }, - "protocol_message": { - "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b31372c3233362c39312c3231372c3133332c3135332c3133392c3230332c3230392c3233352c33392c3136352c3137372c38392c3132372c3232382c372c3232352c3132382c34352c3137312c38332c3135362c3133362c3133372c3234392c38322c3230382c3138332c39332c3137372c31325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "61", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" - } - }, - "signed_message": "7a47525577d16881e5cb0fd80d50552caef7eb980095ba25ecee6f2b8b485ee4", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134302c3231302c3138392c3230392c3232302c3136312c3233372c3231322c36382c34302c3138362c3234312c3139362c3131352c3131392c3136352c32372c34332c32332c38332c32392c38372c31352c3233342c3234312c33302c38342c3130372c3137302c31352c3233352c3130305d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3133322c3134312c3231372c3130302c3132342c3136392c36312c3232302c31342c38362c34302c3230382c3137302c32322c3137342c3132342c3132302c32312c3231322c362c31322c3133322c33312c3131352c37342c34392c35302c39362c38342c3138372c3232392c39332c33352c3133392c342c39352c342c3133362c37392c372c3234342c3134362c35312c31382c3132302c342c3231322c3131395d2c22696e6465786573223a5b302c312c322c332c342c352c362c372c382c392c31312c31322c31332c31342c31352c31362c31382c31392c32302c32312c32322c32342c32362c32372c32382c32392c33302c33312c33322c33342c33352c33362c33372c33382c33392c34302c34312c34322c34332c34342c34362c34382c34392c35302c35312c35322c35332c35342c35352c35382c35392c36312c36322c36332c36342c36352c36362c36372c36382c36392c37302c37312c37322c37332c37342c37352c37362c37382c37392c38312c38322c38332c38342c38352c38362c38372c38392c39312c39342c39352c39362c39372c39392c3130302c3130312c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138332c322c35312c37362c3233342c37312c3131302c3133382c3234312c3232392c37362c3234372c362c3136362c3234372c3130352c3135382c39322c36392c31312c3234382c3138322c33332c32372c3133372c3136362c3232352c3230312c3135362c3234372c3230312c3138372c3138372c3133312c36362c3131342c3230372c3234322c36392c3130372c3231332c35302c3233342c35382c32392c3233382c362c31332c31342c3138352c35382c3139382c33312c3134372c3232312c33332c3232322c33342c37362c3230302c3133332c3233312c3232372c32332c352c3139312c3139372c35302c38312c3235302c37302c3137382c3136382c3139332c3232382c3134352c3134372c3135322c3136322c3130322c3136322c3234352c3231302c3230392c38392c3132352c3136342c3230332c32362c37372c37362c3130342c35312c3131382c34362c34395d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b3138362c33322c3136342c32362c38362c3134322c33392c3232382c35322c39312c36352c3130382c3230322c35372c32382c3134312c3130392c38352c3138382c362c3232332c3136352c3139352c38302c3135332c31342c37362c3133362c33352c3136302c3230382c33365d5d2c22696e6469636573223a5b315d2c22686173686572223a6e756c6c7d7d", - "genesis_signature": "" - }, - "faaac20f065e09df16ce5699bfe553b142a21b37a7e7e1fd6d6e03d7c04f4f6c": { - "hash": "faaac20f065e09df16ce5699bfe553b142a21b37a7e7e1fd6d6e03d7c04f4f6c", - "previous_hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", - "epoch": 49, - "signed_entity_type": { - "CardanoStakeDistribution": 48 - }, - "beacon": { - "network": "devnet", - "epoch": 49, - "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:09.248199515Z", - "sealed_at": "2024-09-09T12:59:09.509734366Z", - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", "stake": 13333333334 } ] }, "protocol_message": { "message_parts": { - "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3233342c39372c3235322c34362c3136352c3134372c3232372c3233332c3139342c31382c3133332c3134322c3231312c3234312c3136352c302c3133362c3235332c302c3230312c3232372c3136302c3235342c3130362c39362c3232362c34352c36382c3233332c33382c3130352c3136325d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "cardano_stake_distribution_epoch": "48", - "cardano_stake_distribution_merkle_root": "a7cab9be249458bb6d490460af105686b741747c967328755783a219a3f59f10" + "next_aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3230392c3136332c3132322c3135302c3139392c3137302c3132372c3138342c3138382c35312c3130332c36382c37372c3130312c3234302c39362c38372c3139312c35342c3232362c36342c3130302c37362c3231322c3233312c31352c35342c3135332c3230362c3233382c3130382c3135395d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d" } }, - "signed_message": "372a5532f21a31a6d29f44d8d1c2666aac92560cc6026fd5b3a749d5bf9b021f", - "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b3134312c39392c3136322c3131332c32392c3233322c3130312c39302c36392c3135362c3234362c3134322c3231332c3231302c3136312c3137342c3138392c34322c36322c3231322c3138392c3137362c3235322c37342c3132302c34382c3232332c3233392c34372c3132342c3138382c3137365d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", - "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3135322c36322c39372c33302c39312c3137362c33302c3231312c3135312c3139312c3233372c3233382c3130382c3231322c31392c3139382c31362c3233372c3232392c3131382c3134302c33302c3232362c3137322c3134382c31332c3138372c37392c3230392c33352c3230382c37312c3130352c33392c392c3134352c35372c36382c3132332c32312c35312c35302c3235322c39302c3133322c3133302c3135362c3234385d2c22696e6465786573223a5b312c322c342c352c362c382c392c31302c31312c31322c31332c31342c31352c31362c31372c31382c31392c32322c32332c32352c32362c32372c32382c32392c33302c33312c33332c33342c33352c33362c33382c33392c34312c34332c34352c34372c34382c34392c35312c35322c35332c35342c35352c35362c35382c35392c36302c36312c36322c36332c36342c36362c36372c36382c36392c37302c37342c37352c37362c37372c37382c37392c38302c38332c38342c38362c38392c39312c39332c39342c39352c39362c39372c39392c3130322c3130332c3130345d2c227369676e65725f696e646578223a307d2c5b5b3134322c36342c3233392c3132302c38332c3132352c3134332c3138312c3133312c3130312c3232362c3231332c32302c33342c3135372c3232382c3135392c3230352c3230382c3135312c3230342c3138342c33342c3233372c38392c3131332c3137392c3233322c3130382c3231352c3232382c3235302c3134362c3134352c3134392c38382c39382c3230322c36392c36332c38372c332c3232302c3132302c3135362c3135332c34332c3132322c322c3134332c3136342c3233312c3136322c3138372c3233352c3130382c3131302c3137392c3135332c38302c3233372c3132342c3137352c3130302c3136302c37332c3232372c332c3137332c322c3234342c3232332c39362c3136352c3234362c372c3231332c3232342c3135332c37312c34382c37312c3132312c3136392c3138302c3230322c39322c3137332c3233382c39352c3230302c33372c3138382c3235322c3235332c33345d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5b37362c34372c3233322c35322c3233312c3230322c3137372c36392c3134362c3234362c37302c3130312c35372c3130382c37362c3231372c3138312c3130352c36362c3134372c3232322c37322c3234392c36392c34352c36302c32382c3130352c3233362c3231392c3130362c3235345d5d2c22696e6469636573223a5b305d2c22686173686572223a6e756c6c7d7d", + "signed_message": "346bc6d4b360e3d1131643108bd2b03f9949e9b02c66a063edcda08b93726527", + "aggregate_verification_key": "7b226d745f636f6d6d69746d656e74223a7b22726f6f74223a5b38342c33332c31392c31332c3233362c3133352c3135332c3233372c3138382c3136302c37322c35362c3231302c38382c3230372c3131382c3138372c34372c3139322c3136342c3135322c37342c3133302c39322c3234392c3134342c38342c3234322c3233372c3231362c3132332c31315d2c226e725f6c6561766573223a322c22686173686572223a6e756c6c7d2c22746f74616c5f7374616b65223a32363636363636363636387d", + "multi_signature": "7b227369676e617475726573223a5b5b7b227369676d61223a5b3136322c3230382c3138322c342c3139352c35322c36302c38302c31362c37392c34382c3139332c3135392c3133352c37342c3233392c3134352c38342c33342c3133312c31372c322c3136322c3138332c37312c35382c37312c39392c35312c36332c3232322c34312c392c3134372c3131352c3132302c3130332c3130372c3135362c3134342c38332c3132322c3134302c3230352c3139352c3136302c38392c35395d2c22696e6465786573223a5b302c31312c31372c31382c31392c32332c32392c33312c34302c34342c34352c35302c36342c37322c38325d2c227369676e65725f696e646578223a307d2c5b5b3135302c3136322c36322c3132362c3134362c3134332c34362c3233322c3131352c3137392c31322c3139382c3130302c38352c3233322c3135342c36312c39392c31302c3231382c35322c3130392c34372c3232372c3235312c3134322c3137352c34362c33302c3134362c35302c3137302c3230322c38332c322c3136302c33322c33352c39302c3138392c3137322c3132332c33322c32302c3231392c3230342c382c3133302c31362c3131322c3234392c3138382c31342c3130322c3137312c37332c31342c3234332c3137362c39312c31362c3130302c3130352c34392c3130332c3135312c3131302c392c32372c3231382c3132302c3233382c3130352c3136342c34302c38352c3130312c3230362c39372c3136362c3233362c3131312c3131302c34382c34312c36392c3132382c3132342c3137362c3131392c35332c35382c3135392c33302c3139332c39385d2c31333333333333333333345d5d2c5b7b227369676d61223a5b3134322c34302c3234372c38312c37332c382c31312c33342c3136302c33362c3234352c3230312c34322c3130362c35392c31322c3231312c3135352c3233362c3135322c35332c35322c3131312c35332c35302c3232392c3135322c3132392c36382c3231342c3139302c3135352c3133322c372c3232362c3232302c3137382c3134372c3231392c3230342c38352c3131362c37372c3138392c34372c3131392c3133332c39355d2c22696e6465786573223a5b312c322c342c352c362c382c392c31302c31322c31332c31342c31352c31362c32302c32312c32322c32342c32352c32362c32372c32382c33302c33322c33332c33342c33352c33362c33372c33382c33392c34312c34322c34332c34362c34372c34382c34392c35312c35322c35332c35362c35372c35382c35392c36302c36312c36322c36332c36352c36362c36372c36382c36392c37302c37312c37332c37342c37352c37362c37372c37382c37392c38302c38312c38332c38342c38352c38362c38392c39302c39312c39322c39342c39352c39362c39372c39382c39392c3130302c3130312c3130322c3130332c3130345d2c227369676e65725f696e646578223a317d2c5b5b3138322c37372c32362c39302c3231302c3233352c3131332c3231352c3138382c33332c35372c3134352c39332c36342c3134392c3135352c3132302c37392c3134352c35342c37392c3230352c39372c3230332c3233372c3133302c3231382c3137382c31302c3134332c3136322c3132392c3136392c3137312c3230362c38352c3235332c34382c36322c38352c39332c39372c3231352c3233392c3135362c3135312c3138332c38332c31392c37382c3234302c33352c3231392c3135322c34352c3134382c3136392c3138382c3133362c3132382c3139362c3234382c392c34322c3138352c35312c31392c38332c3133312c37312c3138382c3131302c35302c3233372c3136312c3232352c3231352c3137352c3234392c33312c3134382c3139362c3132352c3136342c32322c3134362c392c35332c31352c36302c3234392c39302c3130352c342c332c3137325d2c31333333333333333333345d5d5d2c2262617463685f70726f6f66223a7b2276616c756573223a5b5d2c22696e6469636573223a5b302c315d2c22686173686572223a6e756c6c7d7d", "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 a52f3ae3f81..aaf1f2327f3 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,13 +1,7 @@ [ - { "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" } + { "transaction_hash": "1e400d68708fc336bb3dd77c228fae0128ea2bad8056b573ff7bb3abaee09430" } +, { "transaction_hash": "e9be5869a12075a34566d041b08ac2e562ca6fcaa96369ef9ebfd7ccb8fab6d0" } +, { "transaction_hash": "3d7a31c78477805666b1d4cadd9c79fdbb6552300ad8f2330660b6dd91d4cb45" } +, { "transaction_hash": "0be7f3afe6621a6f2d1593031057b5c05b85230780cc9932dc4a8d43ae319e7d" } +, { "transaction_hash": "015bfef5ae0a698c837eed6a692d2d7f076c553f08d1d4c2134cabc320a1ef5a" } ] 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 dd00d15e454..740340a3dfc 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,145 +1,67 @@ { - "02bc3d625eec7de97660567a16a5001103b118b52a71b6310e92a4cc83819444": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", + "015bfef5ae0a698c837eed6a692d2d7f076c553f08d1d4c2134cabc320a1ef5a": { + "certificate_hash": "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353", "certified_transactions": [ { "transactions_hashes": [ - "02bc3d625eec7de97660567a16a5001103b118b52a71b6310e92a4cc83819444" + "015bfef5ae0a698c837eed6a692d2d7f076c553f08d1d4c2134cabc320a1ef5a" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b31312c7b2268617368223a5b33322c3234322c33302c342c3136322c34312c31302c3234372c3132392c3131372c31312c3235302c3230372c32352c35362c3235302c37312c39352c33332c38372c3134342c3135382c35322c3234302c3138302c3234372c3134352c37352c3230392c3234332c38342c3133325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3132332c31312c3136342c342c3230362c35342c34382c3232392c3131342c3230392c33352c3132382c3130382c39312c3130322c3231372c3234352c38362c34312c33342c3131302c3230382c37382c32372c38312c3139362c38312c3135302c3234322c3235302c35392c3232365d7d2c7b2268617368223a5b3234392c33342c32342c3234352c32382c33342c382c32372c3133392c3232322c3137342c3132342c3232322c3134382c3134382c38392c34302c36302c3131392c3234332c35382c3133352c32352c3233342c3230362c3132312c3233302c32392c3231392c3138312c3130322c395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3531302c22656e64223a3532357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130392c3133382c31362c3133302c31392c35322c32312c38332c3135342c38382c3138362c37392c3231352c3234312c39372c3231332c3135332c36302c37352c3137392c37362c34392c3233392c31322c3235312c3230342c35332c3231322c3233362c32342c3233362c3132315d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34382c35302c39382c39392c35312c3130302c35342c35302c35332c3130312c3130312c39392c35352c3130302c3130312c35372c35352c35342c35342c34382c35332c35342c35352c39372c34392c35342c39372c35332c34382c34382c34392c34392c34382c35312c39382c34392c34392c35362c39382c35332c35302c39372c35352c34392c39382c35342c35312c34392c34382c3130312c35372c35302c39372c35322c39392c39392c35362c35312c35362c34392c35372c35322c35322c35325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b35312c34382c39372c35372c35332c35322c39392c35372c35312c3130312c34392c35312c35332c35342c34392c39382c35372c39392c35312c35372c35312c35302c35332c34392c35342c35332c3130312c39372c3130312c39392c35372c35362c3130302c3130312c39382c39392c34382c34392c39382c3130302c39392c34382c35372c35342c34392c34382c35312c35312c39392c35312c35332c34382c35352c35342c39382c39372c39372c35372c3130312c34382c35362c3130322c35322c34395d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3231302c35362c392c322c3232342c3231352c3231352c3131332c32332c3134312c3138302c36322c3135322c352c3233302c3131312c392c37352c31302c34322c3231342c3138392c362c3136342c3132332c3137372c3130372c3131382c3132382c3131342c34332c3231385d7d2c22696e6e65725f6c6561766573223a5b5b372c7b2268617368223a5b33332c3230392c3133342c3139322c37312c3132362c3234362c33322c3130382c33362c3133322c3233302c362c35382c3133322c37342c39362c3138382c35342c3135392c34372c38342c3135382c32332c3233382c3130352c3137372c3137312c32372c38382c38322c31335d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b312c38372c3135372c3137372c3130382c3139392c3139342c3230362c39332c3134392c3133342c3134392c3231322c37362c3131382c3233302c3133342c3138362c36392c34372c3132362c3137302c3230322c3235342c37342c33372c39362c3138372c3233332c32352c38352c3133385d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3435302c22656e64223a3436357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34382c34392c35332c39382c3130322c3130312c3130322c35332c39372c3130312c34382c39372c35342c35372c35362c39392c35362c35312c35352c3130312c3130312c3130302c35342c39372c35342c35372c35302c3130302c35302c3130302c35352c3130322c34382c35352c35342c39392c35332c35332c35312c3130322c34382c35362c3130302c34392c3130302c35322c39392c35302c34392c35312c35322c39392c39372c39382c39392c35312c35302c34382c39372c34392c3130312c3130322c35332c39375d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34382c34392c35332c39382c3130322c3130312c3130322c35332c39372c3130312c34382c39372c35342c35372c35362c39392c35362c35312c35352c3130312c3130312c3130302c35342c39372c35342c35372c35302c3130302c35302c3130302c35352c3130322c34382c35352c35342c39392c35332c35332c35312c3130322c34382c35362c3130302c34392c3130302c35322c39392c35302c34392c35312c35322c39392c39372c39382c39392c35312c35302c34382c39372c34392c3130312c3130322c35332c39375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 1139 + "latest_block_number": 644 }, - "0d799aed0d6a5eee11a064a82ee6f34f6593c529b1653ae9e4b5b6fad69d555a": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", + "0be7f3afe6621a6f2d1593031057b5c05b85230780cc9932dc4a8d43ae319e7d": { + "certificate_hash": "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353", "certified_transactions": [ { "transactions_hashes": [ - "0d799aed0d6a5eee11a064a82ee6f34f6593c529b1653ae9e4b5b6fad69d555a" + "0be7f3afe6621a6f2d1593031057b5c05b85230780cc9932dc4a8d43ae319e7d" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b342c7b2268617368223a5b3138332c3132302c3235322c3234302c3134322c34392c34322c3234332c3133332c3232302c3233302c37332c3134322c31322c3137322c32332c34302c3235352c3134362c31362c32312c3233322c35372c3139352c3138332c3230302c3136372c32342c3130332c32342c36342c3135345d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b37322c322c3232332c32382c3133382c3232362c39392c31322c3134302c3139352c3138342c322c3235312c382c35332c33332c32322c3135322c3138322c33382c3139372c3134302c31392c3230372c3130322c3132332c3136352c3137372c3235302c36382c35322c31355d7d2c7b2268617368223a5b3135372c34312c38342c3136382c3138342c35392c39382c3231352c3130322c3231302c3230332c31312c38372c3133392c3132352c32332c3133382c3233342c3139352c3233332c39352c312c36352c38312c32382c3133362c3234372c32332c38312c3230312c39302c37345d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3337352c22656e64223a3339307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34382c3130302c35352c35372c35372c39372c3130312c3130302c34382c3130302c35342c39372c35332c3130312c3130312c3130312c34392c34392c39372c34382c35342c35322c39372c35362c35302c3130312c3130312c35342c3130322c35312c35322c3130322c35342c35332c35372c35312c39392c35332c35302c35372c39382c34392c35342c35332c35312c39372c3130312c35372c3130312c35322c39382c35332c39382c35342c3130322c39372c3130302c35342c35372c3130302c35332c35332c35332c39375d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34382c3130302c35352c35372c35372c39372c3130312c3130302c34382c3130302c35342c39372c35332c3130312c3130312c3130312c34392c34392c39372c34382c35342c35322c39372c35362c35302c3130312c3130312c35342c3130322c35312c35322c3130322c35342c35332c35372c35312c39392c35332c35302c35372c39382c34392c35342c35332c35312c39372c3130312c35372c3130312c35322c39382c35332c39382c35342c3130322c39372c3130302c35342c35372c3130302c35332c35332c35332c39375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3231302c35362c392c322c3232342c3231352c3231352c3131332c32332c3134312c3138302c36322c3135322c352c3233302c3131312c392c37352c31302c34322c3231342c3138392c362c3136342c3132332c3137372c3130372c3131382c3132382c3131342c34332c3231385d7d2c22696e6e65725f6c6561766573223a5b5b342c7b2268617368223a5b3134302c3135342c3233392c3138322c3132302c3231352c3139382c3234392c3230362c3130382c33312c3139312c34322c34352c3234372c352c3133342c33302c3135372c3137322c3130322c3135372c3130372c3135322c38352c33322c3137392c3134322c3134382c38332c3230392c3134375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3130332c3131332c36362c33342c3230352c3133372c34352c3233322c3136382c35332c3231302c3134352c3230332c362c31322c31332c36322c3131382c33372c3138382c3134352c39382c32392c34352c39302c3234342c3138382c36392c352c3233382c3233332c3234335d7d2c7b2268617368223a5b332c38352c3136392c38382c3233372c35392c3139362c3231342c39372c35362c38342c39392c3233392c31372c3130332c38352c3234392c3132362c3136372c37322c36382c3231332c33352c38302c3131322c32352c31312c3132392c35332c3138362c3135302c3232395d7d2c7b2268617368223a5b33332c3230392c3133342c3139322c37312c3132362c3234362c33322c3130382c33362c3133322c3233302c362c35382c3133322c37342c39362c3138382c35342c3135392c34372c38342c3135382c32332c3233382c3130352c3137372c3137312c32372c38382c38322c31335d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3430352c22656e64223a3432307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34382c39382c3130312c35352c3130322c35312c39372c3130322c3130312c35342c35342c35302c34392c39372c35342c3130322c35302c3130302c34392c35332c35372c35312c34382c35312c34392c34382c35332c35352c39382c35332c39392c34382c35332c39382c35362c35332c35302c35312c34382c35352c35362c34382c39392c39392c35372c35372c35312c35302c3130302c39392c35322c39372c35362c3130302c35322c35312c39372c3130312c35312c34392c35372c3130312c35352c3130305d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34382c39382c3130312c35352c3130322c35312c39372c3130322c3130312c35342c35342c35302c34392c39372c35342c3130322c35302c3130302c34392c35332c35372c35312c34382c35312c34392c34382c35332c35352c39382c35332c39392c34382c35332c39382c35362c35332c35302c35312c34382c35352c35362c34382c39392c39392c35372c35372c35312c35302c3130302c39392c35322c39372c35362c3130302c35322c35312c39372c3130312c35312c34392c35372c3130312c35352c3130305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 1139 + "latest_block_number": 644 }, - "0e1ee41d9c13ae4917586c55f653bf2e37f62cce202843e16f2018409b1a8410": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", + "1e400d68708fc336bb3dd77c228fae0128ea2bad8056b573ff7bb3abaee09430": { + "certificate_hash": "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353", "certified_transactions": [ { "transactions_hashes": [ - "0e1ee41d9c13ae4917586c55f653bf2e37f62cce202843e16f2018409b1a8410" + "1e400d68708fc336bb3dd77c228fae0128ea2bad8056b573ff7bb3abaee09430" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b382c7b2268617368223a5b3230332c3231342c3136382c38312c31372c3135392c31392c3131302c3232322c3137372c3234382c3231322c3136332c3235332c3137332c3230372c3130372c3130342c3135302c3231322c3233312c39352c3131302c3132312c39372c3138372c32312c3133362c3135322c3231362c3138372c32325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3133302c3230322c3138322c35302c3233362c3137362c38392c382c3232332c38382c38392c3135372c3231362c3231322c3233382c352c3136382c3131312c34312c3138362c3135332c37372c382c3235342c36332c3130332c3133382c3138352c33342c3132382c3233342c34305d7d2c7b2268617368223a5b39362c3133372c39372c3232342c31322c3231322c3138342c3233352c38342c3139372c36332c3233312c32352c3133342c3133312c3139392c3230352c3130312c35392c37352c3139352c36342c3231382c36332c3137382c3137362c35392c31352c3130382c3231382c31392c39395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3433352c22656e64223a3435307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34372c3233332c33332c38312c3233312c3130362c3134332c3232372c35312c31332c36322c3131342c3234362c31312c31382c34392c39362c3230312c3137332c3231352c3230382c3230352c31372c36372c3137392c35372c3138362c31362c35372c3233312c3132312c3136315d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b34382c3130312c34392c3130312c3130312c35322c34392c3130302c35372c39392c34392c35312c39372c3130312c35322c35372c34392c35352c35332c35362c35342c39392c35332c35332c3130322c35342c35332c35312c39382c3130322c35302c3130312c35312c35352c3130322c35342c35302c39392c39392c3130312c35302c34382c35302c35362c35322c35312c3130312c34392c35342c3130322c35302c34382c34392c35362c35322c34382c35372c39382c34392c39372c35362c35322c34392c34385d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b35302c39382c35312c35332c35362c35322c35332c3130322c35312c39392c35342c35322c3130302c34392c35322c34382c39382c35332c39392c35322c35322c3130312c35332c3130322c35372c35322c3130312c3130302c39372c3130322c34392c35352c34392c35362c39392c35312c35312c35302c3130312c39382c35312c39372c35332c35352c35342c3130312c3130302c35332c35372c35362c35352c3130302c35332c3130322c3130322c35322c35332c3130322c35302c35302c3130322c35332c35362c34395d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3231302c35362c392c322c3232342c3231352c3231352c3131332c32332c3134312c3138302c36322c3135322c352c3233302c3131312c392c37352c31302c34322c3231342c3138392c362c3136342c3132332c3137372c3130372c3131382c3132382c3131342c34332c3231385d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3231312c3134302c3132332c3130352c302c3130342c3235302c3233362c3234362c3132382c31322c3134352c3232362c3231312c33342c3230342c36372c3231382c31372c3136382c3232352c34302c32352c3137332c38312c3139302c33372c3234382c3133302c3134362c36392c3138335d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b32392c35332c3235342c3131362c312c3139372c3130322c3233352c3232362c3233352c3134322c32312c382c3231382c3136312c3138392c38372c3131322c39352c3135332c3235322c3137302c3234342c38372c39382c38302c362c39312c3139372c3135322c36332c3135395d7d2c7b2268617368223a5b302c32342c3134332c3130392c3138322c3230362c3131332c33332c3231312c3230312c39342c39332c3231322c3230312c37362c34352c3132332c3235322c3131372c3130342c3234332c32342c3132372c38362c36342c32352c3133332c3231352c3233322c31362c3133312c3136305d7d2c7b2268617368223a5b33332c3230392c3133342c3139322c37312c3132362c3234362c33322c3130382c33362c3133322c3233302c362c35382c3133322c37342c39362c3138382c35342c3135392c34372c38342c3135382c32332c3233382c3130352c3137372c3137312c32372c38382c38322c31335d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3136352c22656e64223a3138307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34392c3130312c35322c34382c34382c3130302c35342c35362c35352c34382c35362c3130322c39392c35312c35312c35342c39382c39382c35312c3130302c3130302c35352c35352c39392c35302c35302c35362c3130322c39372c3130312c34382c34392c35302c35362c3130312c39372c35302c39382c39372c3130302c35362c34382c35332c35342c39382c35332c35352c35312c3130322c3130322c35352c39382c39382c35312c39372c39382c39372c3130312c3130312c34382c35372c35322c35312c34385d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b34392c3130312c35322c34382c34382c3130302c35342c35362c35352c34382c35362c3130322c39392c35312c35312c35342c39382c39382c35312c3130302c3130302c35352c35352c39392c35302c35302c35362c3130322c39372c3130312c34382c34392c35302c35362c3130312c39372c35302c39382c39372c3130302c35362c34382c35332c35342c39382c35332c35352c35312c3130322c3130322c35352c39382c39382c35312c39372c39382c39372c3130312c3130312c34382c35372c35322c35312c34385d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 1139 + "latest_block_number": 644 }, - "2a2501bd8d9b70e28af0eec7fde926624a91548a76ac1a13bd19ac852c58949c": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", + "3d7a31c78477805666b1d4cadd9c79fdbb6552300ad8f2330660b6dd91d4cb45": { + "certificate_hash": "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353", "certified_transactions": [ { "transactions_hashes": [ - "2a2501bd8d9b70e28af0eec7fde926624a91548a76ac1a13bd19ac852c58949c" + "3d7a31c78477805666b1d4cadd9c79fdbb6552300ad8f2330660b6dd91d4cb45" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b38392c3232372c3138372c3133302c3234392c36302c3230372c3138372c31382c36352c3230302c3139322c31382c34332c3231342c3132362c3131312c3231312c3234352c38362c3234342c3235302c3232322c39302c3132322c34312c36352c36392c35352c3134372c3234392c39395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3131392c36392c3133312c39372c3134392c3135342c3231322c31342c33362c3137392c3139322c3133302c3232352c34372c3139312c32302c3232392c3135312c35372c3138382c332c36362c3138352c3135372c34312c3232362c3130322c3138372c3137342c34322c3234392c3135315d7d2c7b2268617368223a5b37362c3133372c3134372c3231332c3139302c34332c3132332c35322c3131392c3134322c3134362c38312c3232312c3134382c3137332c3231352c38392c3137342c3133372c3136312c36342c3135382c3230342c39302c38362c31392c3136392c3234322c3232322c3231312c3235332c3233375d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3136352c22656e64223a3138307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35302c39372c35302c35332c34382c34392c39382c3130302c35362c3130302c35372c39382c35352c34382c3130312c35302c35362c39372c3130322c34382c3130312c3130312c39392c35352c3130322c3130302c3130312c35372c35302c35342c35342c35302c35322c39372c35372c34392c35332c35322c35362c39372c35352c35342c39372c39392c34392c39372c34392c35312c39382c3130302c34392c35372c39372c39392c35362c35332c35302c39392c35332c35362c35372c35322c35372c39395d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35302c39372c35302c35332c34382c34392c39382c3130302c35362c3130302c35372c39382c35352c34382c3130312c35302c35362c39372c3130322c34382c3130312c3130312c39392c35352c3130322c3130302c3130312c35372c35302c35342c35342c35302c35322c39372c35372c34392c35332c35322c35362c39372c35352c35342c39372c39392c34392c39372c34392c35312c39382c3130302c34392c35372c39372c39392c35362c35332c35302c39392c35332c35362c35372c35322c35372c39395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3231302c35362c392c322c3232342c3231352c3231352c3131332c32332c3134312c3138302c36322c3135322c352c3233302c3131312c392c37352c31302c34322c3231342c3138392c362c3136342c3132332c3137372c3130372c3131382c3132382c3131342c34332c3231385d7d2c22696e6e65725f6c6561766573223a5b5b332c7b2268617368223a5b3130332c3131332c36362c33342c3230352c3133372c34352c3233322c3136382c35332c3231302c3134352c3230332c362c31322c31332c36322c3131382c33372c3138382c3134352c39382c32392c34352c39302c3234342c3138382c36392c352c3233382c3233332c3234335d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3134302c3135342c3233392c3138322c3132302c3231352c3139382c3234392c3230362c3130382c33312c3139312c34322c34352c3234372c352c3133342c33302c3135372c3137322c3130322c3135372c3130372c3135322c38352c33322c3137392c3134322c3134382c38332c3230392c3134375d7d2c7b2268617368223a5b332c38352c3136392c38382c3233372c35392c3139362c3231342c39372c35362c38342c39392c3233392c31372c3130332c38352c3234392c3132362c3136372c37322c36382c3231332c33352c38302c3131322c32352c31312c3132392c35332c3138362c3135302c3232395d7d2c7b2268617368223a5b33332c3230392c3133342c3139322c37312c3132362c3234362c33322c3130382c33362c3133322c3233302c362c35382c3133322c37342c39362c3138382c35342c3135392c34372c38342c3135382c32332c3233382c3130352c3137372c3137312c32372c38382c38322c31335d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3336302c22656e64223a3337357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35312c3130302c35352c39372c35312c34392c39392c35352c35362c35322c35352c35352c35362c34382c35332c35342c35342c35342c39382c34392c3130302c35322c39392c39372c3130302c3130302c35372c39392c35352c35372c3130322c3130302c39382c39382c35342c35332c35332c35302c35312c34382c34382c39372c3130302c35362c3130322c35302c35312c35312c34382c35342c35342c34382c39382c35342c3130302c3130302c35372c34392c3130302c35322c39392c39382c35322c35335d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35312c3130302c35352c39372c35312c34392c39392c35352c35362c35322c35352c35352c35362c34382c35332c35342c35342c35342c39382c34392c3130302c35322c39392c39372c3130302c3130302c35372c39392c35352c35372c3130322c3130302c39382c39382c35342c35332c35332c35302c35312c34382c34382c39372c3130302c35362c3130322c35302c35312c35312c34382c35342c35342c34382c39382c35342c3130302c3130302c35372c34392c3130302c35322c39392c39382c35322c35335d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 1139 + "latest_block_number": 644 }, - "2b35845f3c64d140b5c44e5f94edaf1718c332eb3a576ed5987d5ff45f22f581": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", + "e9be5869a12075a34566d041b08ac2e562ca6fcaa96369ef9ebfd7ccb8fab6d0": { + "certificate_hash": "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353", "certified_transactions": [ { "transactions_hashes": [ - "2b35845f3c64d140b5c44e5f94edaf1718c332eb3a576ed5987d5ff45f22f581" + "e9be5869a12075a34566d041b08ac2e562ca6fcaa96369ef9ebfd7ccb8fab6d0" ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b382c7b2268617368223a5b3230332c3231342c3136382c38312c31372c3135392c31392c3131302c3232322c3137372c3234382c3231322c3136332c3235332c3137332c3230372c3130372c3130342c3135302c3231322c3233312c39352c3131302c3132312c39372c3138372c32312c3133362c3135322c3231362c3138372c32325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3133302c3230322c3138322c35302c3233362c3137362c38392c382c3232332c38382c38392c3135372c3231362c3231322c3233382c352c3136382c3131312c34312c3138362c3135332c37372c382c3235342c36332c3130332c3133382c3138352c33342c3132382c3233342c34305d7d2c7b2268617368223a5b39362c3133372c39372c3232342c31322c3231322c3138342c3233352c38342c3139372c36332c3233312c32352c3133342c3133312c3139392c3230352c3130312c35392c37352c3139352c36342c3231382c36332c3137382c3137362c35392c31352c3130382c3231382c31392c39395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3433352c22656e64223a3435307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b34372c3233332c33332c38312c3233312c3130362c3134332c3232372c35312c31332c36322c3131342c3234362c31312c31382c34392c39362c3230312c3137332c3231352c3230382c3230352c31372c36372c3137392c35372c3138362c31362c35372c3233312c3132312c3136315d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35302c39382c35312c35332c35362c35322c35332c3130322c35312c39392c35342c35322c3130302c34392c35322c34382c39382c35332c39392c35322c35322c3130312c35332c3130322c35372c35322c3130312c3130302c39372c3130322c34392c35352c34392c35362c39392c35312c35312c35302c3130312c39382c35312c39372c35332c35352c35342c3130312c3130302c35332c35372c35362c35352c3130302c35332c3130322c3130322c35322c35332c3130322c35302c35302c3130322c35332c35362c34395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b34382c3130312c34392c3130312c3130312c35322c34392c3130302c35372c39392c34392c35312c39372c3130312c35322c35372c34392c35352c35332c35362c35342c39392c35332c35332c3130322c35342c35332c35312c39382c3130322c35302c3130312c35312c35352c3130322c35342c35302c39392c39392c3130312c35302c34382c35302c35362c35322c35312c3130312c34392c35342c3130322c35302c34382c34392c35362c35322c34382c35372c39382c34392c39372c35362c35322c34392c34385d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" + "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3231302c35362c392c322c3232342c3231352c3231352c3131332c32332c3134312c3138302c36322c3135322c352c3233302c3131312c392c37352c31302c34322c3231342c3138392c362c3136342c3132332c3137372c3130372c3131382c3132382c3131342c34332c3231385d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b32392c35332c3235342c3131362c312c3139372c3130322c3233352c3232362c3233352c3134322c32312c382c3231382c3136312c3138392c38372c3131322c39352c3135332c3235322c3137302c3234342c38372c39382c38302c362c39312c3139372c3135322c36332c3135395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a382c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3231312c3134302c3132332c3130352c302c3130342c3235302c3233362c3234362c3132382c31322c3134352c3232362c3231312c33342c3230342c36372c3231382c31372c3136382c3232352c34302c32352c3137332c38312c3139302c33372c3234382c3133302c3134362c36392c3138335d7d2c7b2268617368223a5b302c32342c3134332c3130392c3138322c3230362c3131332c33332c3231312c3230312c39342c39332c3231322c3230312c37362c34352c3132332c3235322c3131372c3130342c3234332c32342c3132372c38362c36342c32352c3133332c3231352c3233322c31362c3133312c3136305d7d2c7b2268617368223a5b33332c3230392c3133342c3139322c37312c3132362c3234362c33322c3130382c33362c3133322c3233302c362c35382c3133322c37342c39362c3138382c35342c3135392c34372c38342c3135382c32332c3233382c3130352c3137372c3137312c32372c38382c38322c31335d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3237302c22656e64223a3238357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130312c35372c39382c3130312c35332c35362c35342c35372c39372c34392c35302c34382c35352c35332c39372c35312c35322c35332c35342c35342c3130302c34382c35322c34392c39382c34382c35362c39372c39392c35302c3130312c35332c35342c35302c39392c39372c35342c3130322c39392c39372c39372c35372c35342c35312c35342c35372c3130312c3130322c35372c3130312c39382c3130322c3130302c35352c39392c39392c39382c35362c3130322c39372c39382c35342c3130302c34385d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130312c35372c39382c3130312c35332c35362c35342c35372c39372c34392c35302c34382c35352c35332c39372c35312c35322c35332c35342c35342c3130302c34382c35322c34392c39382c34382c35362c39372c39392c35302c3130312c35332c35342c35302c39392c39372c35342c3130322c39392c39372c39372c35372c35342c35312c35342c35372c3130312c3130322c35372c3130312c39382c3130322c3130302c35352c39392c39392c39382c35362c3130322c39372c39382c35342c3130302c34385d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" } ], "non_certified_transactions": [], - "latest_block_number": 1139 - }, - "30a954c93e13561b9c39325165eaec98debc01bdc0961033c35076baa9e08f41": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", - "certified_transactions": [ - { - "transactions_hashes": [ - "30a954c93e13561b9c39325165eaec98debc01bdc0961033c35076baa9e08f41" - ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b31312c7b2268617368223a5b33322c3234322c33302c342c3136322c34312c31302c3234372c3132392c3131372c31312c3235302c3230372c32352c35362c3235302c37312c39352c33332c38372c3134342c3135382c35322c3234302c3138302c3234372c3134352c37352c3230392c3234332c38342c3133325d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3132332c31312c3136342c342c3230362c35342c34382c3232392c3131342c3230392c33352c3132382c3130382c39312c3130322c3231372c3234352c38362c34312c33342c3131302c3230382c37382c32372c38312c3139362c38312c3135302c3234322c3235302c35392c3232365d7d2c7b2268617368223a5b3234392c33342c32342c3234352c32382c33342c382c32372c3133392c3232322c3137342c3132342c3232322c3134382c3134382c38392c34302c36302c3131392c3234332c35382c3133352c32352c3233342c3230362c3132312c3233302c32392c3231392c3138312c3130322c395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3531302c22656e64223a3532357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130392c3133382c31362c3133302c31392c35322c32312c38332c3135342c38382c3138362c37392c3231352c3234312c39372c3231332c3135332c36302c37352c3137392c37362c34392c3233392c31322c3235312c3230342c35332c3231322c3233362c32342c3233362c3132315d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b35312c34382c39372c35372c35332c35322c39392c35372c35312c3130312c34392c35312c35332c35342c34392c39382c35372c39392c35312c35372c35312c35302c35332c34392c35342c35332c3130312c39372c3130312c39392c35372c35362c3130302c3130312c39382c39392c34382c34392c39382c3130302c39392c34382c35372c35342c34392c34382c35312c35312c39392c35312c35332c34382c35352c35342c39382c39372c39372c35372c3130312c34382c35362c3130322c35322c34395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b34382c35302c39382c39392c35312c3130302c35342c35302c35332c3130312c3130312c39392c35352c3130302c3130312c35372c35352c35342c35342c34382c35332c35342c35352c39372c34392c35342c39372c35332c34382c34382c34392c34392c34382c35312c39382c34392c34392c35362c39382c35332c35302c39372c35352c34392c39382c35342c35312c34392c34382c3130312c35372c35302c39372c35322c39392c39392c35362c35312c35362c34392c35372c35322c35322c35325d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" - } - ], - "non_certified_transactions": [], - "latest_block_number": 1139 - }, - "393f8739c8e7805f528045096c16095fbb3e60301fee9c268aca72396e4dd6e2": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", - "certified_transactions": [ - { - "transactions_hashes": [ - "393f8739c8e7805f528045096c16095fbb3e60301fee9c268aca72396e4dd6e2" - ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b332c7b2268617368223a5b37322c322c3232332c32382c3133382c3232362c39392c31322c3134302c3139352c3138342c322c3235312c382c35332c33332c32322c3135322c3138322c33382c3139372c3134302c31392c3230372c3130322c3132332c3136352c3137372c3235302c36382c35322c31355d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3138332c3132302c3235322c3234302c3134322c34392c34322c3234332c3133332c3232302c3233302c37332c3134322c31322c3137322c32332c34302c3235352c3134362c31362c32312c3233322c35372c3139352c3138332c3230302c3136372c32342c3130332c32342c36342c3135345d7d2c7b2268617368223a5b3135372c34312c38342c3136382c3138342c35392c39382c3231352c3130322c3231302c3230332c31312c38372c3133392c3132352c32332c3133382c3233342c3139352c3233332c39352c312c36352c38312c32382c3133362c3234372c32332c38312c3230312c39302c37345d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3336302c22656e64223a3337357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3233372c3139352c38342c3133332c3137372c3136342c38312c3230392c39372c32312c32382c37372c392c39362c31382c3233332c3231392c39302c3234352c3232382c3139372c31302c39322c35312c37392c3133382c3133342c35392c3136372c39332c3135312c33365d7d2c22696e6e65725f6c6561766573223a5b5b312c7b2268617368223a5b35312c35372c35312c3130322c35362c35352c35312c35372c39392c35362c3130312c35352c35362c34382c35332c3130322c35332c35302c35362c34382c35322c35332c34382c35372c35342c39392c34392c35342c34382c35372c35332c3130322c39382c39382c35312c3130312c35342c34382c35312c34382c34392c3130322c3130312c3130312c35372c39392c35302c35342c35362c39372c39392c39372c35352c35302c35312c35372c35342c3130312c35322c3130302c3130302c35342c3130312c35305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3130312c34392c35362c3130312c35332c34392c3130322c35302c3130322c35342c35352c39392c34382c34392c3130322c3130322c39382c39372c39382c35372c35352c35372c35362c39392c34392c34392c3130302c39372c35342c35342c35352c35322c39372c39382c35312c3130322c39382c35372c35322c35312c34382c3130302c35342c35342c3130322c34382c35302c39382c35352c34392c35332c35302c35372c34382c39382c35302c39382c35332c35312c35352c34382c35362c35342c35355d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" - } - ], - "non_certified_transactions": [], - "latest_block_number": 1139 - }, - "7b3997266f549638cf86a1aa4db9e4b486a83c7b40dab84d05e0a010c732705d": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", - "certified_transactions": [ - { - "transactions_hashes": [ - "7b3997266f549638cf86a1aa4db9e4b486a83c7b40dab84d05e0a010c732705d" - ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b372c7b2268617368223a5b3133302c3230322c3138322c35302c3233362c3137362c38392c382c3232332c38382c38392c3135372c3231362c3231322c3233382c352c3136382c3131312c34312c3138362c3135332c37372c382c3235342c36332c3130332c3133382c3138352c33342c3132382c3233342c34305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3230332c3231342c3136382c38312c31372c3135392c31392c3131302c3232322c3137372c3234382c3231322c3136332c3235332c3137332c3230372c3130372c3130342c3135302c3231322c3233312c39352c3131302c3132312c39372c3138372c32312c3133362c3135322c3231362c3138372c32325d7d2c7b2268617368223a5b39362c3133372c39372c3232342c31322c3231322c3138342c3233352c38342c3139372c36332c3233312c32352c3133342c3133312c3139392c3230352c3130312c35392c37352c3139352c36342c3231382c36332c3137382c3137362c35392c31352c3130382c3231382c31392c39395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3432302c22656e64223a3433357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b35352c39382c35312c35372c35372c35352c35302c35342c35342c3130322c35332c35322c35372c35342c35312c35362c39392c3130322c35362c35342c39372c34392c39372c39372c35322c3130302c39382c35372c3130312c35322c39382c35322c35362c35342c39372c35362c35312c39392c35352c39382c35322c34382c3130302c39372c39382c35362c35322c3130302c34382c35332c3130312c34382c39372c34382c34392c34382c39392c35352c35312c35302c35352c34382c35332c3130305d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b35352c39382c35312c35372c35372c35352c35302c35342c35342c3130322c35332c35322c35372c35342c35312c35362c39392c3130322c35362c35342c39372c34392c39372c39372c35322c3130302c39382c35372c3130312c35322c39382c35322c35362c35342c39372c35362c35312c39392c35352c39382c35322c34382c3130302c39372c39382c35362c35322c3130302c34382c35332c3130312c34382c39372c34382c34392c34382c39392c35352c35312c35302c35352c34382c35332c3130305d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" - } - ], - "non_certified_transactions": [], - "latest_block_number": 1139 - }, - "e18e51f2f67c01ffbab9798c11da6674ab3fb9430d66f02b715290b2b5370867": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", - "certified_transactions": [ - { - "transactions_hashes": [ - "e18e51f2f67c01ffbab9798c11da6674ab3fb9430d66f02b715290b2b5370867" - ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b332c7b2268617368223a5b37322c322c3232332c32382c3133382c3232362c39392c31322c3134302c3139352c3138342c322c3235312c382c35332c33332c32322c3135322c3138322c33382c3139372c3134302c31392c3230372c3130322c3132332c3136352c3137372c3235302c36382c35322c31355d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b3138332c3132302c3235322c3234302c3134322c34392c34322c3234332c3133332c3232302c3233302c37332c3134322c31322c3137322c32332c34302c3235352c3134362c31362c32312c3233322c35372c3139352c3138332c3230302c3136372c32342c3130332c32342c36342c3135345d7d2c7b2268617368223a5b3135372c34312c38342c3136382c3138342c35392c39382c3231352c3130322c3231302c3230332c31312c38372c3133392c3132352c32332c3133382c3233342c3139352c3233332c39352c312c36352c38312c32382c3133362c3234372c32332c38312c3230312c39302c37345d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3336302c22656e64223a3337357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3233372c3139352c38342c3133332c3137372c3136342c38312c3230392c39372c32312c32382c37372c392c39362c31382c3233332c3231392c39302c3234352c3232382c3139372c31302c39322c35312c37392c3133382c3133342c35392c3136372c39332c3135312c33365d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130312c34392c35362c3130312c35332c34392c3130322c35302c3130322c35342c35352c39392c34382c34392c3130322c3130322c39382c39372c39382c35372c35352c35372c35362c39392c34392c34392c3130302c39372c35342c35342c35352c35322c39372c39382c35312c3130322c39382c35372c35322c35312c34382c3130302c35342c35342c3130322c34382c35302c39382c35352c34392c35332c35302c35372c34382c39382c35302c39382c35332c35312c35352c34382c35362c35342c35355d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a332c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b35312c35372c35312c3130322c35362c35352c35312c35372c39392c35362c3130312c35352c35362c34382c35332c3130322c35332c35302c35362c34382c35322c35332c34382c35372c35342c39392c34392c35342c34382c35372c35332c3130322c39382c39382c35312c3130312c35342c34382c35312c34382c34392c3130322c3130312c3130312c35372c39392c35302c35342c35362c39372c39392c39372c35352c35302c35312c35372c35342c3130312c35322c3130302c3130302c35342c3130312c35305d7d5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" - } - ], - "non_certified_transactions": [], - "latest_block_number": 1139 - }, - "ed707b474d34e7995997f22afedec5daee87d4589318ccf76111d4358bd6c369": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", - "certified_transactions": [ - { - "transactions_hashes": [ - "ed707b474d34e7995997f22afedec5daee87d4589318ccf76111d4358bd6c369" - ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b31302c7b2268617368223a5b3132332c31312c3136342c342c3230362c35342c34382c3232392c3131342c3230392c33352c3132382c3130382c39312c3130322c3231372c3234352c38362c34312c33342c3131302c3230382c37382c32372c38312c3139362c38312c3135302c3234322c3235302c35392c3232365d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b33322c3234322c33302c342c3136322c34312c31302c3234372c3132392c3131372c31312c3235302c3230372c32352c35362c3235302c37312c39352c33332c38372c3134342c3135382c35322c3234302c3138302c3234372c3134352c37352c3230392c3234332c38342c3133325d7d2c7b2268617368223a5b3234392c33342c32342c3234352c32382c33342c382c32372c3133392c3232322c3137342c3132342c3232322c3134382c3134382c38392c34302c36302c3131392c3234332c35382c3133352c32352c3233342c3230362c3132312c3233302c32392c3231392c3138312c3130322c395d7d2c7b2268617368223a5b3131312c3137382c34332c3234322c3131382c3138352c32332c3232322c3131332c32392c332c3132322c3139342c3138302c37332c38382c38352c372c3233362c32372c39312c3233362c34392c3232312c33302c3136392c3139372c34312c34302c3135302c3233342c3132345d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3439352c22656e64223a3531307d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130312c3130302c35352c34382c35352c39382c35322c35352c35322c3130302c35312c35322c3130312c35352c35372c35372c35332c35372c35372c35352c3130322c35302c35302c39372c3130322c3130312c3130302c3130312c39392c35332c3130302c39372c3130312c3130312c35362c35352c3130302c35322c35332c35362c35372c35312c34392c35362c39392c39392c3130322c35352c35342c34392c34392c34392c3130302c35322c35312c35332c35362c39382c3130302c35342c39392c35312c35342c35375d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130312c3130302c35352c34382c35352c39382c35322c35352c35322c3130302c35312c35322c3130312c35352c35372c35372c35332c35372c35372c35352c3130322c35302c35302c39372c3130322c3130312c3130302c3130312c39392c35332c3130302c39372c3130312c3130312c35362c35352c3130302c35322c35332c35362c35372c35312c34392c35362c39392c39392c3130322c35352c35342c34392c34392c34392c3130302c35322c35312c35332c35362c39382c3130302c35342c39392c35312c35342c35375d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" - } - ], - "non_certified_transactions": [], - "latest_block_number": 1139 - }, - "ee9630fee2081f17f6b53b1c56b72adafd664bb93ec8f050d8059507cfaeb0ec": { - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", - "certified_transactions": [ - { - "transactions_hashes": [ - "ee9630fee2081f17f6b53b1c56b72adafd664bb93ec8f050d8059507cfaeb0ec" - ], - "proof": "7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3132362c3230372c3235322c3132322c3135392c3231352c3138342c3235352c32372c36362c39302c3131342c3135302c3130342c38302c37392c38312c32332c3233312c3135372c322c38382c362c3234342c3132392c31392c3131382c3139392c31372c3132332c3231342c3132345d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3131392c36392c3133312c39372c3134392c3135342c3231322c31342c33362c3137392c3139322c3133302c3232352c34372c3139312c32302c3232392c3135312c35372c3138382c332c36362c3138352c3135372c34312c3232362c3130322c3138372c3137342c34322c3234392c3135315d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a31352c22696e6e65725f70726f6f665f6974656d73223a5b7b2268617368223a5b38392c3232372c3138372c3133302c3234392c36302c3230372c3138372c31382c36352c3230302c3139322c31382c34332c3231342c3132362c3131312c3231312c3234352c38362c3234342c3235302c3232322c39302c3132322c34312c36352c36392c35352c3134372c3234392c39395d7d2c7b2268617368223a5b37362c3133372c3134372c3231332c3139302c34332c3132332c35322c3131392c3134322c3134362c38312c3232312c3134382c3137332c3231352c38392c3137342c3133372c3136312c36342c3135382c3230342c39302c38362c31392c3136392c3234322c3232322c3231312c3235332c3233375d7d2c7b2268617368223a5b33392c3138322c37352c3233302c35342c3231322c33362c36372c3234322c3235332c38342c37382c3231302c3132362c3231332c3133322c3135362c34342c37342c33372c3230332c3234362c36382c3232352c35362c3232332c3131322c3134352c3132342c3234352c37332c3133305d7d5d7d2c227375625f70726f6f6673223a5b5b7b22696e6e65725f72616e6765223a7b227374617274223a3132302c22656e64223a3133357d7d2c7b226d61737465725f70726f6f66223a7b22696e6e65725f726f6f74223a7b2268617368223a5b3130312c3130312c35372c35342c35312c34382c3130322c3130312c3130312c35302c34382c35362c34392c3130322c34392c35352c3130322c35342c39382c35332c35312c39382c34392c39392c35332c35342c39382c35352c35302c39372c3130302c39372c3130322c3130302c35342c35342c35322c39382c39382c35372c35312c3130312c39392c35362c3130322c34382c35332c34382c3130302c35362c34382c35332c35372c35332c34382c35352c39392c3130322c39372c3130312c39382c34382c3130312c39395d7d2c22696e6e65725f6c6561766573223a5b5b302c7b2268617368223a5b3130312c3130312c35372c35342c35312c34382c3130322c3130312c3130312c35302c34382c35362c34392c3130322c34392c35352c3130322c35342c39382c35332c35312c39382c34392c39392c35332c35342c39382c35352c35302c39372c3130302c39372c3130322c3130302c35342c35342c35322c39382c39382c35372c35312c3130312c39392c35362c3130322c34382c35332c34382c3130302c35362c34382c35332c35372c35332c34382c35352c39392c3130322c39372c3130312c39382c34382c3130312c39395d7d5d5d2c22696e6e65725f70726f6f665f73697a65223a312c22696e6e65725f70726f6f665f6974656d73223a5b5d7d2c227375625f70726f6f6673223a5b5d7d5d5d7d" - } - ], - "non_certified_transactions": [], - "latest_block_number": 1139 + "latest_block_number": 644 } } 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 8b87b64a029..56cd3c1aca3 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,90 +1,138 @@ [ { - "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", - "epoch": 32, - "block_number": 1139, - "hash": "5aa3bf60fd7d0069812439e4799fc0727ffa94b55474ad06eb3fad981ee5f856", - "certificate_hash": "af57299e6860920eec2fd1b11661cdf976eda580d6774dcfedc81ed8c8ecf163", - "created_at": "2024-09-09T12:58:23.413027945Z" + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 21, + "block_number": 644, + "hash": "699f2369916ae7f7a04b69e32b8df567af5d7e985dd0d8835be5c459ef050fd8", + "certificate_hash": "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353", + "created_at": "2024-10-28T13:28:52.797733868Z" }, { - "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", - "epoch": 29, - "block_number": 1034, - "hash": "2565c712495a20fdf3d3ad31b93a040f0ee317024343e9d114c396f4b5a5ddde", - "certificate_hash": "8aaf2e130cb89d27fb66a7acc38742f13004237d6f629fccd87b6822009e09ad", - "created_at": "2024-09-09T12:58:14.776383092Z" + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 21, + "block_number": 629, + "hash": "7465b695660d79c6ca99fcb3ccfff7d2462f3e6b91e7215d1412a4e2d0057b3e", + "certificate_hash": "037f344049193bdc1d21598fb300bc834ee1f1f24cf0137832815942d73e50a4", + "created_at": "2024-10-28T13:28:52.512624658Z" }, { - "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", "epoch": 20, - "block_number": 719, - "hash": "5253dd86c59eb80e20761264f87c84777f078241c848b440a0e21bc42c80880a", - "certificate_hash": "592effe35e1d28d56f0963824ebded82a32cd36ad25ad1c87e80e08b6271cda2", - "created_at": "2024-09-09T12:57:49.130193448Z" + "block_number": 614, + "hash": "f1ac337128d4ac1770e72133513889d73f8479a779751385f9cab91cbeaf1478", + "certificate_hash": "98e6bd1f4b686061f52630af55e5599fc41bdf1908795bd3729e5bafeaa5a2c5", + "created_at": "2024-10-28T13:28:49.780390286Z" + }, + { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 20, + "block_number": 599, + "hash": "459a5d867f6e6d11f0b11aa7bf4862e752240afa6ae1183f2ed8b92b9fadfc20", + "certificate_hash": "d0aa596e8f31857d769a38511adfbadb12d31129c92212ef2029f82010584715", + "created_at": "2024-10-28T13:28:49.515071868Z" }, { - "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", "epoch": 19, - "block_number": 689, - "hash": "225fce1a43a3afd946d684878556266fdd8bb11a9d174162ea32757319f5b27e", - "certificate_hash": "001f7e3a3599a795a48974c36e4e3ac2d201a7657e213d1514cc3141b2455abc", - "created_at": "2024-09-09T12:57:46.757386248Z" + "block_number": 584, + "hash": "d05372baf3ba5489808782c8e3af70639f1e341de63be345f733b57e559e192f", + "certificate_hash": "28ecdde5aab11c32f140ac7aa5ce498d5c6f2642d27499cbfc0425efa925ca24", + "created_at": "2024-10-28T13:28:46.804509300Z" }, { - "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", - "epoch": 17, - "block_number": 614, - "hash": "001e2c169c701061b7ed61b248eb228dfd34d3b4de8ae3fbf469adcc8cb2f3af", - "certificate_hash": "73bdbcc0ec56a912e9d17dae7f5a16945e4715476add3f91bd8b8e834c8de2a0", - "created_at": "2024-09-09T12:57:41.056611894Z" + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 19, + "block_number": 569, + "hash": "c36e6c7d02bb30e771a82cd7ba9170f1dac04ff629bcb48425cd2ceee5ab21f4", + "certificate_hash": "f729911e69d46a4e3b70bb454f6c3c3c94717db9651b1dd32d85bba53437b25d", + "created_at": "2024-10-28T13:28:46.381053269Z" }, { - "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", - "epoch": 16, - "block_number": 584, - "hash": "470004765989d274666d1824e3bcc50806f89871bd3fe2ffcd068d04b56bbd17", - "certificate_hash": "bce8b084bb9ea2609d7157a61825f39a5775831b6ee50b763022d5e7e6817dd7", - "created_at": "2024-09-09T12:57:38.332387772Z" + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 18, + "block_number": 554, + "hash": "7ccd46850682b6d4bf03c70b6db08055a93ccaf6a0f394ee442e8b6c8fd6e061", + "certificate_hash": "9ec669a7f796b9111cbc2ee1bfa48fe5fa11a4d31765d3d11a6fda26fb81372c", + "created_at": "2024-10-28T13:28:43.932189761Z" }, { - "merkle_root": "e7acbac1470f92188085541fb9e17afa604e82dfb38bcaa9e3464ffb60039d5b", - "epoch": 14, + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 17, + "block_number": 524, + "hash": "45695e4965d4cdb0b90c97b559e59fbeb006e22e3ffb9b2922fdb9a7b7d64a2c", + "certificate_hash": "23e0b34c799e2bfdd76829410a13688fcbaa3103af0dcbf85749bd9fa28cb897", + "created_at": "2024-10-28T13:28:40.806356208Z" + }, + { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 17, "block_number": 509, - "hash": "578c672520dbe30724816944499fbf1704850b598c7dc6d1fb8daf779172f44b", - "certificate_hash": "4d497747eb6d28eef64caa5cafc8c0b5a4278f96a9d7df459a69f62dd3df7050", - "created_at": "2024-09-09T12:57:32.980011969Z" + "hash": "7401841e6c4e067136e82d24259e69ac436706ce9e6852d4a9c46d2b2b80af69", + "certificate_hash": "7b81c2b07ff46c5dff80dba46bfbfc2c9520b08fc6bb126d35593877f00604b9", + "created_at": "2024-10-28T13:28:40.407786178Z" }, { - "merkle_root": "f63ccc250320ba23e780510a59ab5ca2649a930d7eafde549873e0aca3bc555c", - "epoch": 13, + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 16, + "block_number": 494, + "hash": "6c32715a3f903d5a7633f8ef496785ab5456659a10152805219b9e4118f57f0b", + "certificate_hash": "065f8885fdcc497ac32e008c1032267f8e3a1eb0e10843cc863a2de4aa778a19", + "created_at": "2024-10-28T13:28:37.791976045Z" + }, + { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 16, "block_number": 479, - "hash": "104e48e1e42487cb76a31812da1336a915ca061712e57f868e672c00e876cc27", - "certificate_hash": "39879b67d9c9d966361ef448de460e63249f0845846a5050538a7679c82abc6a", - "created_at": "2024-09-09T12:57:29.858441528Z" + "hash": "cb968ac3c0ad68a8064c1b5649acf0c4ed91d5c83278eedde0a003504aee4427", + "certificate_hash": "65eabf4504031bfc68b49cc2e5d78d61922e6a3eeee6de6f68707f5219556057", + "created_at": "2024-10-28T13:28:37.507761828Z" }, { - "merkle_root": "f63ccc250320ba23e780510a59ab5ca2649a930d7eafde549873e0aca3bc555c", - "epoch": 13, + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 15, "block_number": 464, - "hash": "d5f79aeacc43ae45d5e086044d0be4047ace38a6983ad433c6e61392f7e42f83", - "certificate_hash": "d27713d73cfbc13241fcd6bbdcaa466f17ee762b5e373cb1abf7ee2331860358", - "created_at": "2024-09-09T12:57:29.451805466Z" + "hash": "9086eaf0efb0f02a71faf829e8bfa737f6ea744d5daf5695ae1efe830faa4c60", + "certificate_hash": "8b57af6cfd21e5bdf9d720ba9b0a6d455076475b160011589a70e8dd56deb055", + "created_at": "2024-10-28T13:28:34.769343237Z" + }, + { + "merkle_root": "01579db16cc7c2ce5d958695d44c76e686ba452f7eaacafe4a2560bbe919558a", + "epoch": 15, + "block_number": 449, + "hash": "8f7132e565116dcd85b5639558a4c8e530447424ddff21aca1cb5fc428ccb967", + "certificate_hash": "ad52cd6f2f7672f7fae588402384542b0a1af463d4fccbdb3e7ba15ec62cf284", + "created_at": "2024-10-28T13:28:34.483471270Z" }, { - "merkle_root": "78acfdd3cc14eae0be6b7a2af4f276455a87695080158df4bc97b7b0705e462c", - "epoch": 12, + "merkle_root": "01579db16cc7c2ce5d958695d44c76e686ba452f7eaacafe4a2560bbe919558a", + "epoch": 14, "block_number": 434, - "hash": "73fac87b931a4b3fd7b1e47ae63a836acc080d1fde6dc16e1cd831e8bd63b0e9", - "certificate_hash": "6c5dd3ae74170d581c083b0f819df48de84284e2d7d6d912b0c0455c29286ab6", - "created_at": "2024-09-09T12:57:26.720151149Z" + "hash": "7e5f0fc3b22b6ab1c3e48f58833c0916801e874385365e13f5be7f375188aaf5", + "certificate_hash": "066fa4056649cb9314aab58405a90eeb4a1ddd903dc8d8d37eb58370e94e4770", + "created_at": "2024-10-28T13:28:31.758830408Z" }, { - "merkle_root": "6fb22bf276b917de711d037ac2b449585507ec1b5bec31dd1ea9c5292896ea7c", - "epoch": 11, + "merkle_root": "01579db16cc7c2ce5d958695d44c76e686ba452f7eaacafe4a2560bbe919558a", + "epoch": 14, + "block_number": 419, + "hash": "9b25dd44dd737db195c11e8cb1984e0ad24a657ecff0122930b0fcc89c2cf8c7", + "certificate_hash": "518ac8d8e414e656f87d4ed765c3f79a397bf99840afb1ddfe1e44665efc3dee", + "created_at": "2024-10-28T13:28:31.475605324Z" + }, + { + "merkle_root": "c6bcdf928cb4aca28196d5519d687717b04224c4282bb8665676946bc67120e3", + "epoch": 13, "block_number": 404, - "hash": "c80d9fd14913544fbb3f7c9fa7bd435c219a27c6ef4b41c7e3110afdcd483ea0", - "certificate_hash": "1da3885e3c022c9075bcaf2bd64f2abcbf10e159aec4cd3a219561d2830f1ecc", - "created_at": "2024-09-09T12:57:24.112169735Z" + "hash": "eea81769d931b6c9eb0873f2d6d09ffac192a843d72ab2921434221f3ee5ac82", + "certificate_hash": "4715366927c0164879e1a26842856e9b82c824122f8206380a25a7aa6e54cc7d", + "created_at": "2024-10-28T13:28:28.862106995Z" + }, + { + "merkle_root": "c6bcdf928cb4aca28196d5519d687717b04224c4282bb8665676946bc67120e3", + "epoch": 13, + "block_number": 389, + "hash": "9bb30c4bb4ae153b224467067a7981356b115ba18e88b474f38faadc22705da3", + "certificate_hash": "e0991fdebed8cfc6a7b2bed29d3e136ce92d0ffa609e01aca81cb2698a816531", + "created_at": "2024-10-28T13:28:28.464333908Z" } ] 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 b82c2752929..87e7d5a9dd1 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,90 +1,138 @@ { - "001e2c169c701061b7ed61b248eb228dfd34d3b4de8ae3fbf469adcc8cb2f3af": { - "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", + "45695e4965d4cdb0b90c97b559e59fbeb006e22e3ffb9b2922fdb9a7b7d64a2c": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", "epoch": 17, - "block_number": 614, - "hash": "001e2c169c701061b7ed61b248eb228dfd34d3b4de8ae3fbf469adcc8cb2f3af", - "certificate_hash": "73bdbcc0ec56a912e9d17dae7f5a16945e4715476add3f91bd8b8e834c8de2a0", - "created_at": "2024-09-09T12:57:41.056611894Z" + "block_number": 524, + "hash": "45695e4965d4cdb0b90c97b559e59fbeb006e22e3ffb9b2922fdb9a7b7d64a2c", + "certificate_hash": "23e0b34c799e2bfdd76829410a13688fcbaa3103af0dcbf85749bd9fa28cb897", + "created_at": "2024-10-28T13:28:40.806356208Z" }, - "104e48e1e42487cb76a31812da1336a915ca061712e57f868e672c00e876cc27": { - "merkle_root": "f63ccc250320ba23e780510a59ab5ca2649a930d7eafde549873e0aca3bc555c", - "epoch": 13, - "block_number": 479, - "hash": "104e48e1e42487cb76a31812da1336a915ca061712e57f868e672c00e876cc27", - "certificate_hash": "39879b67d9c9d966361ef448de460e63249f0845846a5050538a7679c82abc6a", - "created_at": "2024-09-09T12:57:29.858441528Z" + "459a5d867f6e6d11f0b11aa7bf4862e752240afa6ae1183f2ed8b92b9fadfc20": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 20, + "block_number": 599, + "hash": "459a5d867f6e6d11f0b11aa7bf4862e752240afa6ae1183f2ed8b92b9fadfc20", + "certificate_hash": "d0aa596e8f31857d769a38511adfbadb12d31129c92212ef2029f82010584715", + "created_at": "2024-10-28T13:28:49.515071868Z" }, - "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", + "699f2369916ae7f7a04b69e32b8df567af5d7e985dd0d8835be5c459ef050fd8": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 21, + "block_number": 644, + "hash": "699f2369916ae7f7a04b69e32b8df567af5d7e985dd0d8835be5c459ef050fd8", + "certificate_hash": "2c12782fbb4ac66058badfcf98c93fcfa26843a3598aed297a6cc536c79eb353", + "created_at": "2024-10-28T13:28:52.797733868Z" + }, + "6c32715a3f903d5a7633f8ef496785ab5456659a10152805219b9e4118f57f0b": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", "epoch": 16, - "block_number": 584, - "hash": "470004765989d274666d1824e3bcc50806f89871bd3fe2ffcd068d04b56bbd17", - "certificate_hash": "bce8b084bb9ea2609d7157a61825f39a5775831b6ee50b763022d5e7e6817dd7", - "created_at": "2024-09-09T12:57:38.332387772Z" + "block_number": 494, + "hash": "6c32715a3f903d5a7633f8ef496785ab5456659a10152805219b9e4118f57f0b", + "certificate_hash": "065f8885fdcc497ac32e008c1032267f8e3a1eb0e10843cc863a2de4aa778a19", + "created_at": "2024-10-28T13:28:37.791976045Z" }, - "5253dd86c59eb80e20761264f87c84777f078241c848b440a0e21bc42c80880a": { - "merkle_root": "7ecffc7a9fd7b8ff1b425a729668504f5117e79d025806f4811376c7117bd67c", - "epoch": 20, - "block_number": 719, - "hash": "5253dd86c59eb80e20761264f87c84777f078241c848b440a0e21bc42c80880a", - "certificate_hash": "592effe35e1d28d56f0963824ebded82a32cd36ad25ad1c87e80e08b6271cda2", - "created_at": "2024-09-09T12:57:49.130193448Z" + "7401841e6c4e067136e82d24259e69ac436706ce9e6852d4a9c46d2b2b80af69": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 17, + "block_number": 509, + "hash": "7401841e6c4e067136e82d24259e69ac436706ce9e6852d4a9c46d2b2b80af69", + "certificate_hash": "7b81c2b07ff46c5dff80dba46bfbfc2c9520b08fc6bb126d35593877f00604b9", + "created_at": "2024-10-28T13:28:40.407786178Z" + }, + "7465b695660d79c6ca99fcb3ccfff7d2462f3e6b91e7215d1412a4e2d0057b3e": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 21, + "block_number": 629, + "hash": "7465b695660d79c6ca99fcb3ccfff7d2462f3e6b91e7215d1412a4e2d0057b3e", + "certificate_hash": "037f344049193bdc1d21598fb300bc834ee1f1f24cf0137832815942d73e50a4", + "created_at": "2024-10-28T13:28:52.512624658Z" }, - "578c672520dbe30724816944499fbf1704850b598c7dc6d1fb8daf779172f44b": { - "merkle_root": "e7acbac1470f92188085541fb9e17afa604e82dfb38bcaa9e3464ffb60039d5b", + "7ccd46850682b6d4bf03c70b6db08055a93ccaf6a0f394ee442e8b6c8fd6e061": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 18, + "block_number": 554, + "hash": "7ccd46850682b6d4bf03c70b6db08055a93ccaf6a0f394ee442e8b6c8fd6e061", + "certificate_hash": "9ec669a7f796b9111cbc2ee1bfa48fe5fa11a4d31765d3d11a6fda26fb81372c", + "created_at": "2024-10-28T13:28:43.932189761Z" + }, + "7e5f0fc3b22b6ab1c3e48f58833c0916801e874385365e13f5be7f375188aaf5": { + "merkle_root": "01579db16cc7c2ce5d958695d44c76e686ba452f7eaacafe4a2560bbe919558a", "epoch": 14, - "block_number": 509, - "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" + "hash": "7e5f0fc3b22b6ab1c3e48f58833c0916801e874385365e13f5be7f375188aaf5", + "certificate_hash": "066fa4056649cb9314aab58405a90eeb4a1ddd903dc8d8d37eb58370e94e4770", + "created_at": "2024-10-28T13:28:31.758830408Z" }, - "c80d9fd14913544fbb3f7c9fa7bd435c219a27c6ef4b41c7e3110afdcd483ea0": { - "merkle_root": "6fb22bf276b917de711d037ac2b449585507ec1b5bec31dd1ea9c5292896ea7c", - "epoch": 11, - "block_number": 404, - "hash": "c80d9fd14913544fbb3f7c9fa7bd435c219a27c6ef4b41c7e3110afdcd483ea0", - "certificate_hash": "1da3885e3c022c9075bcaf2bd64f2abcbf10e159aec4cd3a219561d2830f1ecc", - "created_at": "2024-09-09T12:57:24.112169735Z" + "8f7132e565116dcd85b5639558a4c8e530447424ddff21aca1cb5fc428ccb967": { + "merkle_root": "01579db16cc7c2ce5d958695d44c76e686ba452f7eaacafe4a2560bbe919558a", + "epoch": 15, + "block_number": 449, + "hash": "8f7132e565116dcd85b5639558a4c8e530447424ddff21aca1cb5fc428ccb967", + "certificate_hash": "ad52cd6f2f7672f7fae588402384542b0a1af463d4fccbdb3e7ba15ec62cf284", + "created_at": "2024-10-28T13:28:34.483471270Z" }, - "d5f79aeacc43ae45d5e086044d0be4047ace38a6983ad433c6e61392f7e42f83": { - "merkle_root": "f63ccc250320ba23e780510a59ab5ca2649a930d7eafde549873e0aca3bc555c", - "epoch": 13, + "9086eaf0efb0f02a71faf829e8bfa737f6ea744d5daf5695ae1efe830faa4c60": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 15, "block_number": 464, - "hash": "d5f79aeacc43ae45d5e086044d0be4047ace38a6983ad433c6e61392f7e42f83", - "certificate_hash": "d27713d73cfbc13241fcd6bbdcaa466f17ee762b5e373cb1abf7ee2331860358", - "created_at": "2024-09-09T12:57:29.451805466Z" + "hash": "9086eaf0efb0f02a71faf829e8bfa737f6ea744d5daf5695ae1efe830faa4c60", + "certificate_hash": "8b57af6cfd21e5bdf9d720ba9b0a6d455076475b160011589a70e8dd56deb055", + "created_at": "2024-10-28T13:28:34.769343237Z" + }, + "9b25dd44dd737db195c11e8cb1984e0ad24a657ecff0122930b0fcc89c2cf8c7": { + "merkle_root": "01579db16cc7c2ce5d958695d44c76e686ba452f7eaacafe4a2560bbe919558a", + "epoch": 14, + "block_number": 419, + "hash": "9b25dd44dd737db195c11e8cb1984e0ad24a657ecff0122930b0fcc89c2cf8c7", + "certificate_hash": "518ac8d8e414e656f87d4ed765c3f79a397bf99840afb1ddfe1e44665efc3dee", + "created_at": "2024-10-28T13:28:31.475605324Z" + }, + "9bb30c4bb4ae153b224467067a7981356b115ba18e88b474f38faadc22705da3": { + "merkle_root": "c6bcdf928cb4aca28196d5519d687717b04224c4282bb8665676946bc67120e3", + "epoch": 13, + "block_number": 389, + "hash": "9bb30c4bb4ae153b224467067a7981356b115ba18e88b474f38faadc22705da3", + "certificate_hash": "e0991fdebed8cfc6a7b2bed29d3e136ce92d0ffa609e01aca81cb2698a816531", + "created_at": "2024-10-28T13:28:28.464333908Z" + }, + "c36e6c7d02bb30e771a82cd7ba9170f1dac04ff629bcb48425cd2ceee5ab21f4": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 19, + "block_number": 569, + "hash": "c36e6c7d02bb30e771a82cd7ba9170f1dac04ff629bcb48425cd2ceee5ab21f4", + "certificate_hash": "f729911e69d46a4e3b70bb454f6c3c3c94717db9651b1dd32d85bba53437b25d", + "created_at": "2024-10-28T13:28:46.381053269Z" + }, + "cb968ac3c0ad68a8064c1b5649acf0c4ed91d5c83278eedde0a003504aee4427": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 16, + "block_number": 479, + "hash": "cb968ac3c0ad68a8064c1b5649acf0c4ed91d5c83278eedde0a003504aee4427", + "certificate_hash": "65eabf4504031bfc68b49cc2e5d78d61922e6a3eeee6de6f68707f5219556057", + "created_at": "2024-10-28T13:28:37.507761828Z" + }, + "d05372baf3ba5489808782c8e3af70639f1e341de63be345f733b57e559e192f": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 19, + "block_number": 584, + "hash": "d05372baf3ba5489808782c8e3af70639f1e341de63be345f733b57e559e192f", + "certificate_hash": "28ecdde5aab11c32f140ac7aa5ce498d5c6f2642d27499cbfc0425efa925ca24", + "created_at": "2024-10-28T13:28:46.804509300Z" + }, + "eea81769d931b6c9eb0873f2d6d09ffac192a843d72ab2921434221f3ee5ac82": { + "merkle_root": "c6bcdf928cb4aca28196d5519d687717b04224c4282bb8665676946bc67120e3", + "epoch": 13, + "block_number": 404, + "hash": "eea81769d931b6c9eb0873f2d6d09ffac192a843d72ab2921434221f3ee5ac82", + "certificate_hash": "4715366927c0164879e1a26842856e9b82c824122f8206380a25a7aa6e54cc7d", + "created_at": "2024-10-28T13:28:28.862106995Z" + }, + "f1ac337128d4ac1770e72133513889d73f8479a779751385f9cab91cbeaf1478": { + "merkle_root": "d2380902e0d7d771178db43e9805e66f094b0a2ad6bd06a47bb16b7680722bda", + "epoch": 20, + "block_number": 614, + "hash": "f1ac337128d4ac1770e72133513889d73f8479a779751385f9cab91cbeaf1478", + "certificate_hash": "98e6bd1f4b686061f52630af55e5599fc41bdf1908795bd3729e5bafeaa5a2c5", + "created_at": "2024-10-28T13:28:49.780390286Z" } } 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 34c1124036a..7318eb7b30b 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": 83, + "epoch": 21, "protocol": { "k": 75, "m": 105, @@ -12,34 +12,42 @@ }, "current_signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3138332c38332c3138382c3232332c3135392c32392c3133342c37332c37312c3138342c36302c392c36302c3233312c32362c39342c33312c39322c32322c3230382c3130382c38372c38372c3230362c3135362c3131342c31362c3132332c3235322c3130392c3130392c3133382c3232352c332c3231322c3139362c37332c3132302c39362c352c3233392c35352c31342c3230342c3139342c34392c3233322c39312c312c3132352c3230312c38382c3134322c3133372c36382c3138312c3134322c38362c3130312c3137342c38302c37382c3131372c312c38382c39332c3135382c3136362c3130342c3139362c3232362c3135322c39332c3230372c3131392c3130362c3130332c3132322c34332c35392c36302c3235302c36302c35342c31362c3138362c3234302c3136302c3132312c3130332c3139352c3135342c312c3231302c37322c3135365d2c22706f70223a5b3137372c3231342c3232372c35312c3137302c3131312c35352c35342c3135332c3132392c3139322c3231362c33312c3139332c3233332c3135382c3234352c39392c33392c382c3234342c3232302c37332c3134312c3131342c3131362c36312c3133312c34322c3133342c36312c3138312c39352c31352c3234312c39342c3135362c3134372c3231332c31392c3137342c3135342c3131392c3232332c3132312c36382c33352c3235342c3134312c3232392c3138332c3134342c34312c35322c3130342c3133302c37372c34352c3139332c37322c332c37312c3231312c35322c3233322c37352c37322c3231312c3134312c38372c3136312c3231382c3135352c3130312c3136312c3137372c312c39382c3231332c392c3133322c3131382c3134312c3133362c3232322c3234352c3133382c3133382c3134382c3132352c35322c32312c3137302c34312c3235302c3130385d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138312c3138332c3136382c3134372c3133372c3232302c31332c34362c32322c3136322c3135332c3138352c362c3230372c3231332c31392c38372c3137352c38302c35302c36342c3137372c3132332c3134392c36362c37372c3131352c3131312c34362c3130352c3139342c3130352c3130302c3231322c39362c33312c3134322c32362c3235322c3235312c3234332c3233392c3130302c3132342c31312c3138362c3232392c31372c392c3235302c3233332c38362c3137382c3134372c38332c3230312c35322c3230302c3234342c38302c31362c37362c34332c355d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3134322c33302c342c35312c3134382c3130302c36382c312c3232382c3138332c3234312c3230332c34312c37372c3233332c3137382c3139372c35302c33332c382c3139372c34362c3235352c372c3131322c3138392c3139362c3137332c3130392c33352c3232302c31372c3139372c3136352c3130352c3132372c37392c34382c3232382c32372c33312c37352c3235312c35392c3231382c3138342c3136312c362c32302c35372c3136322c3134342c36352c31342c37322c3233312c35362c352c3139302c3137342c3231302c3132312c3138312c3136362c36312c3232362c3231372c3230372c31332c3133312c3135332c352c3234352c3132382c3230342c35332c3233322c3130302c31382c3230332c3139322c3135342c3133332c3133332c342c33392c33362c3132342c3235342c3137352c38342c32302c3131322c3138382c37302c37315d2c22706f70223a5b3134342c34322c3132332c37382c34312c3130352c3133392c3234392c37342c3139382c37312c3135322c3135342c32322c3136302c3132342c3139352c38312c3234372c37382c3137382c3232312c3135322c3233322c3230372c33332c3132362c3234372c3133312c3231362c3138342c38352c39352c3130332c32302c36352c3232352c34312c3131372c34392c3234352c3136332c31332c3135382c3234332c31352c31392c3130342c3137372c3233392c37332c3233362c3133322c3136332c34312c3232382c36392c3231372c35352c3131382c33302c3132372c36312c38352c3234362c3135312c38322c3131322c38372c34332c352c3131392c31352c392c3231342c3130302c3233312c38312c34312c3139392c3139312c3130312c31332c3234352c33332c31322c37302c3234322c3132392c3138382c32382c37372c38382c3234382c3139362c3234315d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b38332c39362c3139302c39372c3132342c3136352c3138362c35302c34302c3138362c3135372c3135322c3133302c38382c3234372c3232392c31382c31322c3233382c3130332c3139362c3133312c34332c3232392c3139332c32342c3133372c3233322c362c3139352c35372c31302c3231352c31332c3132352c3131362c36392c3235332c3232362c3133392c39332c38382c3138352c3234382c3133352c3132352c3132322c3135322c32312c36332c3133322c3131352c3231322c3134362c34382c31352c3133362c3131342c3137352c3137382c3138392c3230352c3132342c355d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3136352c38302c36312c39382c3132382c3232362c31382c3137342c3134372c3230382c3234352c3233352c3233392c3135362c3133352c3134322c3230372c3131322c37362c31382c35362c382c3133332c35372c3131302c3231362c37352c3137392c382c33322c36352c362c3135332c3132392c39312c3138352c3139382c32372c39312c3132342c3133362c3234362c3134392c3234322c3235342c33322c3231352c3234352c31342c36352c34302c39322c33372c33392c3135372c3138312c32332c32332c3135392c3139352c39302c3234322c3139362c3136322c342c3235302c35342c31302c38322c3230342c3235342c3134362c3131362c3233302c3131372c3234352c36382c3231352c3135312c36382c34302c3134342c3234302c3134312c3136372c39342c35352c3230352c3133352c3133352c3139362c32352c3139302c3134362c3134312c32365d2c22706f70223a5b3137302c3134322c3132392c3232302c3135322c33352c31322c3131332c3134382c3130372c302c3134352c3234382c3138352c32392c3135352c3132312c3232382c3131382c36322c3230332c3137352c3135322c37322c3131392c3232322c3132382c3138302c3137342c3138362c3233382c3137362c3138342c302c31362c3138392c3137302c32342c34352c3230342c3131352c3137342c382c31382c3130382c3233312c3133312c3234372c3138352c3139332c35322c3235302c3130362c3137332c34302c3136392c3137342c3231392c38362c39312c3130362c3231382c34352c38322c31372c38322c3232312c38362c3137322c3139362c3233302c3137382c3136302c3230342c3131302c3139382c3131382c36352c3231342c39362c34392c3232312c37352c37382c36362c37332c33372c3234372c3135362c3131302c3133342c3133302c3233352c33322c33372c325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b32362c3230392c3231302c322c3234352c34382c3132372c39382c3131392c3136392c3231352c3230382c3137372c32352c3139332c39352c3135392c3234362c3234342c3134362c3130342c34332c3131302c35342c35392c3232302c31302c35322c32332c3231342c39392c3133392c3132352c35352c3231382c3134392c3231302c38372c36382c3130372c3132372c3137392c33352c31392c39392c3234332c3137332c34322c36302c32372c3234362c3131322c39362c35392c3235322c3130372c37392c3234382c37322c34322c38332c3232362c3231342c345d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3134322c32312c3130312c36372c3136342c34332c38352c34312c35352c3230362c3234342c36372c31312c3230312c3137352c31302c32322c3131312c3230322c3230302c33322c3232322c3231322c3136312c3138382c3138302c36372c3131362c3234352c34312c36352c3230312c36302c34362c3233352c3231392c382c3231372c35302c3137332c3231392c3139352c3138372c31312c3134332c3135362c3232302c39332c31312c3230322c3135372c34312c3137342c3135332c3232392c3231372c32322c32332c322c35352c34302c312c33302c3130332c3233372c3130332c3139362c3235342c32312c3132372c38332c33302c3132312c38382c35312c3131352c3139382c35342c3230312c39332c3139362c3137372c3231382c36362c38342c3137392c38322c3231372c37322c36302c3131302c34382c3133362c3235332c31302c3130385d2c22706f70223a5b3136342c3135372c392c31342c3233332c31302c3233382c352c37372c3138352c3135302c34302c38332c322c35322c3232322c3135392c3135302c39312c35382c3136302c37372c32322c36382c3230332c3230362c33382c39382c3137352c32392c382c3233332c3136392c3137322c3137302c3231372c3136352c36312c32342c37312c3130332c3231342c36302c3230342c3231302c322c3136382c3130302c3133302c33332c3233332c36392c37302c3233322c3233342c3137362c35372c3137352c38312c36382c322c35382c3136382c3136322c3232302c3139322c3132342c3233382c3233352c39392c3130302c3231352c3137322c32312c3136332c39322c34342c3135382c3235352c352c3136392c33332c3230352c38332c34382c3130302c38392c3130392c3133352c34392c3130302c3231392c32382c35372c3132362c3137355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3234382c37392c34342c3233342c38302c3136382c3130322c33342c3138322c3234392c36342c32342c37352c3130322c3138382c34342c3137372c39312c3130342c31362c3132362c32372c3131312c32312c3131382c3133302c36332c3235332c39342c36322c31312c3136312c39332c32312c32302c33322c3130352c37352c3134352c3235352c3231332c31342c3231382c372c3138322c3139312c3133382c3133382c3130352c3135352c33322c3134372c3231362c3131352c3233322c3130342c36372c32302c3139312c3232392c3230382c3131302c3133372c335d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0 } ], "next_signers": [ { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3135302c3136332c38302c33352c3235332c3135372c3132372c362c39302c38362c3233392c3131392c3137382c31322c3135342c3136302c3233312c33382c3134312c34312c32352c33372c3133302c3130372c3130362c35302c3134362c3231382c3231342c3130382c3135382c3138362c37332c3234312c342c36312c3135312c3130392c3131392c3138352c3133392c3139362c38382c3233352c39312c36372c3135362c36302c312c3234302c3234312c33392c3130392c31362c34362c3136352c35382c31372c3139342c39312c3230312c3131392c34372c3235302c3234342c3235342c3137382c3136382c35352c3139332c34332c3132372c3134382c37302c3233352c3134382c3134392c3136332c31322c3230342c34372c35382c31372c38372c332c3131372c3138342c3136342c3134302c38332c3130322c3136332c39312c3231302c3235302c3230315d2c22706f70223a5b3134382c3232372c3136322c32312c3230382c3138342c3235312c3132342c3136372c3133352c3137342c3130362c3139392c392c3235342c3135392c3230392c3230322c3139372c3138372c39382c3138302c3136322c3235332c3138372c36382c34342c3139302c31362c372c37332c38362c3139342c3134332c3132342c372c37312c3138342c3134392c3232312c3134352c35382c38382c36362c342c36332c3136332c34382c3138342c31372c3138372c3134352c3235342c31312c3232392c3233372c3135392c31352c3134362c3136302c3130302c3235342c37372c3132322c3233302c34372c33342c3130372c37302c33392c3234392c3130332c3232342c3233362c3133372c3133382c33302c3234312c3134392c32362c3130372c36312c34342c3136362c34312c3131332c3131352c3138332c34352c3233372c372c38382c37342c35362c3235342c36355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3133342c3134352c38382c38352c31362c32372c3136382c3131392c3230392c3130312c352c3235312c3131392c3134332c39332c3133352c3138372c3133372c36372c3133342c37302c31312c36382c3232302c3131352c3233342c32382c32372c3137362c35352c33362c3130342c36332c3231312c3134332c3135332c31332c3132362c32342c3133302c3138362c32352c3130372c3137302c36332c37382c392c3132312c36302c3231382c36312c38352c3131372c36332c3130342c3232352c32332c3131392c32332c3137302c38332c3234372c33342c375d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3136382c37312c3134362c3234332c3130392c312c3230302c3230342c3232382c3232332c3136352c37372c3231382c3130342c33352c3138312c3235352c3230312c3130362c37392c3131312c3234382c35382c3134342c3230342c3234312c36342c33392c37352c3133372c38312c3135342c3232352c36332c362c3235332c3133332c3233322c31332c3131332c382c3130352c3233342c36372c3131332c3132302c36392c3234332c362c37302c3139352c3232342c3231342c3136322c3139342c33372c3137312c3232352c3233392c392c32312c32392c3231382c3136302c3139382c3231362c32382c3135362c3134362c32332c3131352c3133302c3234342c39392c3134302c39382c302c33392c38332c35362c3131382c3132352c3130302c34382c3230392c3136312c39382c3134362c37362c37342c3138342c33392c3130332c3234302c3136332c3136315d2c22706f70223a5b3136302c3235352c3232302c3137322c3133332c3132372c33332c35342c31342c31352c3138382c35382c35352c3230312c3231362c3139362c33362c3134332c3231302c3132392c3139352c3130312c36392c3230302c32392c3131302c3130372c37322c3131372c37372c3234362c3130302c3132332c3135362c3235352c3134372c39322c34312c37302c3130372c31342c39392c3231322c37312c35342c3234352c3133382c3132352c3137372c3232332c3132322c3139342c3233372c32342c3135312c32372c3131352c3232392c3133342c34362c3137332c32382c3137392c34372c31342c3130372c33312c3235332c34332c3138322c3132392c3138302c38352c35392c3132342c3139392c35312c3139352c3131342c3131322c38302c3138302c35382c39342c3230332c3135382c34352c3234362c3232322c36332c39312c3133332c35312c32302c31382c31335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3133382c3134362c3131362c3136392c33322c36342c3137382c3130332c3133392c35392c35362c31382c3230372c3234332c372c3134362c37372c31302c3136392c3136322c3232362c3232302c3139332c3230372c33382c3231382c32372c33332c33342c37302c3233312c36362c33372c3230322c3134362c3130372c362c38322c3130382c3135392c3130342c3135352c36322c33342c3234322c3131342c37392c372c36302c3137362c34332c3234302c38342c3231372c3235322c322c3138302c352c3232302c3135362c3136342c3138322c3136382c375d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0 }, { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3138312c3136322c3134342c35312c3234322c3135322c3139322c32382c37332c34312c3135372c34362c3133362c3138312c3234312c34332c3130312c35372c3230362c3133302c3231312c31372c36312c3130372c3234342c3230352c39312c34372c3231312c3137322c34392c3230392c3131392c3131302c32382c3136392c37342c36372c33362c3230362c3137322c3234312c34382c38382c36372c3234302c3132362c39372c332c362c31332c32332c3235312c37332c342c38342c38372c32352c3232372c36342c3132392c3136302c36382c3230332c31392c3135342c3135302c3231332c31302c37302c3234352c3133322c3134392c36302c3231352c362c3235342c31392c352c3232342c3235352c34302c3136392c3139332c3132302c362c3138392c36312c3133382c3132302c3135302c3133312c3137322c3130322c322c3136335d2c22706f70223a5b3133312c3132302c3135302c3139312c3232392c3139372c39302c3230332c37342c36382c3139372c3136302c3231312c3131312c3136362c3131332c3132392c3133382c3133352c3136312c3137342c35322c3138382c33312c3232342c3139332c3134322c3138302c3135342c3230392c39312c3133382c342c3230342c37322c37312c3231342c3137312c3233332c3130382c3138302c32352c3234342c31312c3231302c3137392c3135342c33382c3137302c3233342c392c32392c3134322c33392c31312c3138382c35342c342c3134302c39392c3230352c3137372c3136322c32322c31362c3134302c37322c3132322c34362c3234322c32382c3130372c3134322c3138312c3134352c37392c3139382c3230332c352c3131382c3234352c3231332c35302c38302c31352c3231342c33392c33342c3231342c3134372c3230372c3134362c36342c39352c342c3137335d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3134332c3139302c3138352c3233362c31332c39382c3235302c3138302c38332c38302c3130322c3231302c3233362c3234352c37352c3136342c3138322c3132332c3138342c3230332c3139392c3134302c3137302c32342c3234362c3136372c3233382c3139312c37332c3136302c3131352c39322c34312c39312c35332c35362c3139332c3132352c31312c3231332c39352c3233362c3135332c31342c3234342c39342c3130392c3231362c3232332c38392c37302c3136322c36362c3232302c3135372c3134352c3133392c36322c33382c33332c35352c362c3234372c31335d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3135322c3134312c35382c39332c3230392c3230392c3233322c3134362c3233342c32312c3132352c3137332c31312c3138372c31332c3136372c3232382c3234322c352c3231352c3139352c38322c312c37312c32342c3137382c3130352c3136312c3134312c3138372c3230302c3139362c31392c3138372c3230342c34342c38332c3232312c372c3235302c3233392c3230362c3136342c38332c3132362c3131342c38372c37302c31322c3232372c3232332c32362c3132302c37302c38332c3130302c3235312c3130302c36382c3137382c3130312c3139322c35342c33372c3133372c3234352c39352c38392c31352c3231342c3139392c32392c3234362c3139362c32352c3137322c3139382c3232362c3135332c3132392c35302c3138372c3234312c32382c33302c37372c3130302c3136362c3134372c3137322c3139382c3131332c3138322c3234392c3231322c34305d2c22706f70223a5b3138342c38392c3131302c3131342c3137362c32322c3136322c3137392c3133322c3234372c3137382c3139312c3139342c32332c35322c37312c3230382c31312c34352c34372c38312c39342c3133332c34372c39352c35312c34322c39322c3234362c3139312c3138302c3135372c3232312c3234382c3136322c36342c31372c36332c35392c3137362c33382c3137302c3232382c38392c3134392c3130382c3230312c3137322c3136302c37382c35302c3138352c3234302c33302c3138332c3134342c3233382c34372c352c34302c32382c3133352c37342c332c3138352c3232372c36392c3137392c31312c37382c3234352c35392c3131322c34332c37382c3135362c3139322c3230382c35312c372c3133362c37312c35372c3133322c39362c39302c3131332c3135382c33332c3134312c3138322c3230392c3132362c3230382c32392c37385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3135332c3232332c3132332c3137372c3138322c3234332c3231322c39322c32372c3232312c3232392c3133392c31362c3234362c3233382c3233362c3133302c3135312c3138392c3230312c35322c38352c3137342c3138312c38362c3139352c3133372c3232332c3139352c3235302c3135362c38392c37302c322c3136322c39362c3233382c3231362c3230322c35372c34352c3138302c32332c37332c3135382c33362c33382c3230382c35302c3138342c3133352c3137332c322c332c37352c39362c3134352c3234302c3136312c3232312c35392c3232372c33322c335d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0 } - ] + ], + "cardano_transactions_signing_config": { + "security_parameter": 1, + "step": 15 + }, + "next_cardano_transactions_signing_config": { + "security_parameter": 1, + "step": 15 + } } 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 2ca0ae22018..ab10c7d2e6d 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,122 +1,56 @@ [ { - "epoch": 62, - "hash": "f3d1af1abcf2dac1445f828278f3e3be1f7800e28d595a312d64b9553fc6b7cb", - "certificate_hash": "6314241343aae6c8f671c897c65204acc30f31bc28043878396be39bd50ca2e7", - "created_at": "2024-09-09T12:59:45.342009811Z" + "epoch": 21, + "hash": "0356b6b0c9ab5b3f33983aebe6e2ba8471049208e4a66c907b1b51813ae712f7", + "certificate_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "created_at": "2024-10-28T13:28:51.696640697Z" }, { - "epoch": 61, - "hash": "514cbc9ef9a90d9e641ac86005517d1d66a6f41baf1066101e6471b0f36473c7", - "certificate_hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", - "created_at": "2024-09-09T12:59:44.557406440Z" + "epoch": 20, + "hash": "762b812b8c3537193f3db904db0354641b6bfa039fef2eb104a37cc773bd82e8", + "certificate_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "created_at": "2024-10-28T13:28:48.724863808Z" }, { - "epoch": 60, - "hash": "5af32d5e6a51aba26937459b608f324f06e9a5f5b1717917480ebceadcc02306", - "certificate_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", - "created_at": "2024-09-09T12:59:39.699484120Z" + "epoch": 19, + "hash": "2fbb3ebb652173d14d7b62b5c583a2302e8e36850372109e7f3c88a46ec833ca", + "certificate_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "created_at": "2024-10-28T13:28:45.571959896Z" }, { - "epoch": 59, - "hash": "88c64139d188a2c257637a53e7e81583d7d7ed96d5954ea6bb55c54a59da1b9b", - "certificate_hash": "f731e7a8eb582ef18fa923f700f056a746d89a5a77d9a1762b11861b02727d52", - "created_at": "2024-09-09T12:59:37.219892866Z" + "epoch": 18, + "hash": "48235fa9da0cfbc9b5fe143edb37c424ed49a8defeef6817b53868abd9277faa", + "certificate_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "created_at": "2024-10-28T13:28:42.838780346Z" }, { - "epoch": 58, - "hash": "83eb062b476e53103a90ffd2280e3b6ba5186cb5bfeb0e9817ec56be3e45d308", - "certificate_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "created_at": "2024-09-09T12:59:34.457723440Z" + "epoch": 17, + "hash": "55432e62706c2d677f10bb67358bbeaca021beae66d1056a22eb80775243a730", + "certificate_hash": "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac", + "created_at": "2024-10-28T13:28:39.594096863Z" }, { - "epoch": 57, - "hash": "e20c6549c0a92807d0dfa88acfc557a7a22bfab535c5ef47415c218b7f6c9a64", - "certificate_hash": "f3471fd97d28e72a4e7394d974ac77ac0c0d704695f00ce35f6ff23e9f168a6d", - "created_at": "2024-09-09T12:59:31.488750133Z" + "epoch": 16, + "hash": "8714894c0f15953192b19af05b9395c00b502ac9fda55de1498156c56027e90e", + "certificate_hash": "a17056bc0845e01638d5152b4e47f46e56d74ff4d150cafe2b7b9d2807396f23", + "created_at": "2024-10-28T13:28:36.680559271Z" }, { - "epoch": 56, - "hash": "998830d208991bfbb1d1320542691bd2169aab6e022d67e2b100c43afc35975f", - "certificate_hash": "5ea21c68331e0333cf679f0767e3a67b59112712f4360931fd3e6ba2e0e8f2f4", - "created_at": "2024-09-09T12:59:28.726128329Z" + "epoch": 15, + "hash": "a166228421808a8ed8996cadcf3631c0b572357b14a1abc71cc22019a580c96b", + "certificate_hash": "9866d2d55271b0db4bb316a31d4afe912a1769a25de6bb720f3333ec59a682c1", + "created_at": "2024-10-28T13:28:33.683901133Z" }, { - "epoch": 55, - "hash": "325fc4caddf05fc6fd76691282441520b9b2009967065c7762cd947aade7323d", - "certificate_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", - "created_at": "2024-09-09T12:59:25.929208404Z" + "epoch": 14, + "hash": "1ce32846365098a1a32bacab1e45094706500fff167bc942d843716c76c3826f", + "certificate_hash": "f96feaa24deeb05e86e1c75cf50a0947a0924ed213f0609907681ff6e7132d29", + "created_at": "2024-10-28T13:28:30.627921469Z" }, { - "epoch": 54, - "hash": "4c2f40f8565355fa1bdf702c37efb1433e3b6c27dc97310c891623f7255e8a10", - "certificate_hash": "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4", - "created_at": "2024-09-09T12:59:24.638170847Z" - }, - { - "epoch": 53, - "hash": "54090b48c481828f1e84f0400f7bf96224567fb11c232be30dec56b325cf78a0", - "certificate_hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", - "created_at": "2024-09-09T12:59:20.285538052Z" - }, - { - "epoch": 52, - "hash": "7222fe6cbaae33109724c88e5659d8a2d2e1546386e760083089d0c1a1405d98", - "certificate_hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", - "created_at": "2024-09-09T12:59:18.124838302Z" - }, - { - "epoch": 51, - "hash": "f3b10ac54f7509e7e337d29bccb9e42c30854a0906e0efabbac19b68477107bf", - "certificate_hash": "ec42b0787823e3e0f692683def306c8a9332225a6c0f94be71244921af753ccd", - "created_at": "2024-09-09T12:59:14.521321373Z" - }, - { - "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" + "epoch": 13, + "hash": "c2bded03ce058bccf7c886fa85dbaad4e9843cfdf78fe1ee3b61c9e394f21d17", + "certificate_hash": "3bb83a95eee930e17deb07f1e83b146125cd13c0ade99ef6dc7d764bda428e08", + "created_at": "2024-10-28T13:28:27.627456889Z" } ] 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 ed07a9fe449..3daab769964 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,578 +1,259 @@ { - "1cb0b97562200bd82f0f6ec6cc3c1a9cc340a132f8eb6ff6aaa3af3977a9fb20": { - "epoch": 43, + "0356b6b0c9ab5b3f33983aebe6e2ba8471049208e4a66c907b1b51813ae712f7": { + "epoch": 21, "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3134392c33342c34362c3133352c34362c3136382c39382c31322c37312c3134302c3132372c33372c3235312c35372c3234352c36342c3135322c3139332c372c36362c31392c32372c3136302c3234322c38312c3131312c3136352c3131312c3134382c3230352c3235352c31322c3138342c3135342c3132362c3136312c3138332c38332c3231342c3132382c3139302c31362c3234302c35342c3232342c3134342c3231322c35372c32312c3235352c3232372c37312c36332c35342c3230352c32392c38382c39392c3132392c37332c3136382c3233322c31302c3231352c3134382c3136352c3231302c37302c3132392c3133302c3132382c33372c3232372c3135342c37382c38392c3231382c332c32362c36352c3137372c3130302c34352c3137312c3234392c3131342c31362c3138372c33392c3134312c3138312c3136302c3233302c3135352c3134382c3130385d2c22706f70223a5b3137342c35372c3233362c3138352c32392c3139302c3130302c3234362c3137312c3138322c39352c3234342c34332c3134322c35312c3139362c3231332c3134302c3136352c34302c3235302c3232302c3233352c3132302c3136392c3139342c31332c38362c3137302c352c3132312c32332c3131342c35312c3133382c37392c34362c34382c3134312c3231352c35312c3135302c3233392c36342c3135382c3132322c36372c31392c3136352c3130372c332c3135372c3131342c3234362c39342c34332c3135322c34342c3234332c35342c3136352c33332c3231342c38322c3232362c3234332c3132362c34352c3134302c38352c3131342c3230392c37382c322c33372c31362c39372c3231342c37312c3134312c3130392c3133342c3232332c34322c3231382c3136312c3133392c3230362c3131332c3232342c3234332c3130362c3136302c3130342c31352c37395d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3133352c32332c3132362c34352c33362c35312c31342c3130382c3134332c3133302c3230362c34332c3235332c34382c3132392c3130302c3139362c33312c3234352c332c3133352c362c3137362c3133312c3233372c33372c39352c3136382c3134372c38332c3135392c31342c3136372c3233342c31332c3131372c35342c3137312c352c3133392c3131362c31322c3231312c3131322c39392c3230342c3138392c3137322c3132382c32322c38382c31322c32322c3230332c3135302c3138302c3136362c3232392c3133382c35302c3135392c3136352c3235342c355d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3136382c37312c3134362c3234332c3130392c312c3230302c3230342c3232382c3232332c3136352c37372c3231382c3130342c33352c3138312c3235352c3230312c3130362c37392c3131312c3234382c35382c3134342c3230342c3234312c36342c33392c37352c3133372c38312c3135342c3232352c36332c362c3235332c3133332c3233322c31332c3131332c382c3130352c3233342c36372c3131332c3132302c36392c3234332c362c37302c3139352c3232342c3231342c3136322c3139342c33372c3137312c3232352c3233392c392c32312c32392c3231382c3136302c3139382c3231362c32382c3135362c3134362c32332c3131352c3133302c3234342c39392c3134302c39382c302c33392c38332c35362c3131382c3132352c3130302c34382c3230392c3136312c39382c3134362c37362c37342c3138342c33392c3130332c3234302c3136332c3136315d2c22706f70223a5b3136302c3235352c3232302c3137322c3133332c3132372c33332c35342c31342c31352c3138382c35382c35352c3230312c3231362c3139362c33362c3134332c3231302c3132392c3139352c3130312c36392c3230302c32392c3131302c3130372c37322c3131372c37372c3234362c3130302c3132332c3135362c3235352c3134372c39322c34312c37302c3130372c31342c39392c3231322c37312c35342c3234352c3133382c3132352c3137372c3232332c3132322c3139342c3233372c32342c3135312c32372c3131352c3232392c3133342c34362c3137332c32382c3137392c34372c31342c3130372c33312c3235332c34332c3138322c3132392c3138302c38352c35392c3132342c3139392c35312c3139352c3131342c3131322c38302c3138302c35382c39342c3230332c3135382c34352c3234362c3232322c36332c39312c3133332c35312c32302c31382c31335d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3133382c3134362c3131362c3136392c33322c36342c3137382c3130332c3133392c35392c35362c31382c3230372c3234332c372c3134362c37372c31302c3136392c3136322c3232362c3232302c3139332c3230372c33382c3231382c32372c33332c33342c37302c3233312c36362c33372c3230322c3134362c3130372c362c38322c3130382c3135392c3130342c3135352c36322c33342c3234322c3131342c37392c372c36302c3137362c34332c3234302c38342c3231372c3235322c322c3138302c352c3232302c3135362c3136342c3138322c3136382c375d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3136362c3232322c3231392c3139362c38362c3138322c392c3231302c3134392c3134362c392c3132322c3136362c33382c332c31302c3231382c3132342c3134332c3234382c38382c3234322c392c3131382c31352c3130362c3134342c352c3135312c3231312c3231322c37372c3231322c3233392c31362c3233342c36372c3232302c39322c34392c3133322c34342c31322c3232362c3134302c3138382c3130392c3136382c31362c3232372c34392c3232302c3232322c3131352c3132362c3231312c31382c34332c3139392c3131322c31362c36322c3136302c3234392c3139312c3134372c38332c35322c39352c3230382c3139392c3131312c3234302c3139392c3135392c3139332c3232372c3230312c3134342c3137382c3232332c31372c3232362c3139342c33322c3133382c32382c39362c39352c3139332c3232322c31342c3131312c3235322c38342c3232355d2c22706f70223a5b3133352c3138332c3132362c3135392c35362c37352c34322c3131302c33382c372c3232332c32312c3130392c3139302c3139312c36352c33352c39302c3130372c33342c3139342c3232332c3139342c3137302c3231302c3131372c39392c35332c3131332c3134312c3232322c31332c3133372c3136322c33352c3139382c382c3130382c35362c33352c3134332c38302c3131362c39302c34372c39352c3137362c38392c3134372c3232392c3130322c36372c3132302c39362c3130382c3134312c31362c3234332c39342c39302c3133302c3133332c3136302c3134312c39352c39352c31322c3131352c3232332c3234382c3231352c3139332c39392c3233392c35362c3232312c3234342c3137322c3232372c3233372c3139332c38302c3231362c3136332c38372c38362c39392c3130302c32352c3230342c3133332c3139332c3230382c3135382c39332c3132345d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3234322c3136392c3135312c3139302c35342c3230352c3135322c3130392c3131372c3134382c3230342c3138362c34342c34362c3131382c3130362c32362c38382c33322c3232312c3130362c3232382c33332c3133332c35362c3133362c3136382c32322c3133312c3138392c3232302c3131342c3232342c3138322c39322c3133372c36382c3230352c36342c31392c3235302c3134342c3233342c3136382c3130392c31332c3132322c38382c3137312c3138312c38382c39362c32382c3131392c34352c3134392c33322c32312c3230302c32362c3130332c3137382c3139322c31355d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3135322c3134312c35382c39332c3230392c3230392c3233322c3134362c3233342c32312c3132352c3137332c31312c3138372c31332c3136372c3232382c3234322c352c3231352c3139352c38322c312c37312c32342c3137382c3130352c3136312c3134312c3138372c3230302c3139362c31392c3138372c3230342c34342c38332c3232312c372c3235302c3233392c3230362c3136342c38332c3132362c3131342c38372c37302c31322c3232372c3232332c32362c3132302c37302c38332c3130302c3235312c3130302c36382c3137382c3130312c3139322c35342c33372c3133372c3234352c39352c38392c31352c3231342c3139392c32392c3234362c3139362c32352c3137322c3139382c3232362c3135332c3132392c35302c3138372c3234312c32382c33302c37372c3130302c3136362c3134372c3137322c3139382c3131332c3138322c3234392c3231322c34305d2c22706f70223a5b3138342c38392c3131302c3131342c3137362c32322c3136322c3137392c3133322c3234372c3137382c3139312c3139342c32332c35322c37312c3230382c31312c34352c34372c38312c39342c3133332c34372c39352c35312c34322c39322c3234362c3139312c3138302c3135372c3232312c3234382c3136322c36342c31372c36332c35392c3137362c33382c3137302c3232382c38392c3134392c3130382c3230312c3137322c3136302c37382c35302c3138352c3234302c33302c3138332c3134342c3233382c34372c352c34302c32382c3133352c37342c332c3138352c3232372c36392c3137392c31312c37382c3234352c35392c3131322c34332c37382c3135362c3139322c3230382c35312c372c3133362c37312c35372c3133322c39362c39302c3131332c3135382c33332c3134312c3138322c3230392c3132362c3230382c32392c37385d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3135332c3232332c3132332c3137372c3138322c3234332c3231322c39322c32372c3232312c3232392c3133392c31362c3234362c3233382c3233362c3133302c3135312c3138392c3230312c35322c38352c3137342c3138312c38362c3139352c3133372c3232332c3139352c3235302c3135362c38392c37302c322c3136322c39362c3233382c3231362c3230322c35372c34352c3138302c32332c37332c3135382c33362c33382c3230382c35302c3138342c3133352c3137332c322c332c37352c39362c3134352c3234302c3136312c3232312c35392c3232372c33322c335d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "1cb0b97562200bd82f0f6ec6cc3c1a9cc340a132f8eb6ff6aaa3af3977a9fb20", - "certificate_hash": "3a1d05d387473bc90a4774da46f9ba4f2928acdae1a7618db041f914e63aed8c", - "created_at": "2024-09-09T12:58:52.392635910Z", + "hash": "0356b6b0c9ab5b3f33983aebe6e2ba8471049208e4a66c907b1b51813ae712f7", + "certificate_hash": "45b3a82ad358a4f38c37fb3fe90a42891067cbf39afcff03c5653c8c38b5cf53", + "created_at": "2024-10-28T13:28:51.696640697Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "308b491938f36c07502d42bd5df3648c02c3fa1fd702498867ac64aab77ccfc6": { - "epoch": 45, + "1ce32846365098a1a32bacab1e45094706500fff167bc942d843716c76c3826f": { + "epoch": 14, "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3136332c3135302c33352c3230382c3134302c33352c31382c3234332c39392c39342c39352c35392c36372c3230362c3230342c3230342c3235342c3135372c3134302c38322c35322c3230342c3138332c3233302c3137362c3133362c38302c32392c37302c3134322c372c3131302c31372c3131312c3136332c3233372c3135312c312c372c35322c3136362c3234302c3137352c3231362c35392c33362c3232332c3130312c32302c3235322c3235322c32302c37312c3234382c35392c3132322c3131312c3137362c31332c3130372c3232322c38342c3137332c34352c3234382c3139382c39372c36302c3132342c3139382c3233302c3230382c3231342c3231312c32372c38342c32392c3136352c3134372c36372c3234302c33312c3234372c3234392c3131352c3232302c3234392c31382c37352c302c31352c3132362c3231392c39312c3130312c3235345d2c22706f70223a5b3136392c3136392c3230332c3130382c32392c39332c3231332c3131322c3232312c3230352c392c32382c35362c332c3133332c3135312c3131312c3231332c32312c3230352c36342c3139342c3234382c3138332c3131362c35382c31372c39312c3234392c3232372c3134312c3130312c39362c34382c35372c3131382c332c39322c33332c3137352c3137382c3139312c36392c3135342c3139302c3231312c34382c352c3133332c3134322c34342c312c3135312c3135342c37352c3233372c3132382c33332c3138352c32322c3232372c3135322c3234352c3137322c31342c3132382c3138382c3134362c34362c362c3133392c3235332c32332c302c36392c3132342c37322c34392c3233372c38362c3131352c3232342c39342c3232382c3132322c32322c39372c3131342c3233332c3132352c38392c38312c3230392c3233312c3233352c3138335d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138332c3232312c32392c3135322c3234382c3234352c3139352c38362c33332c3138302c3133382c3131302c3136332c32342c3130332c39312c3133362c3232362c37332c3136392c38322c3235352c39312c35392c3233362c3131392c3134352c33332c34322c32332c3233372c3231322c3136372c3137332c3137352c32332c3137342c352c3138392c31372c36342c38382c3233382c3232332c3139312c36372c3130372c35362c3139382c39342c3234352c3138322c31312c3136332c3231302c3131322c31352c3136372c34332c3235352c3139362c3135342c3138352c31325d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3134312c3139342c3139322c3131342c39342c31322c39342c33392c3132352c3134332c31372c3139372c3132312c35322c3139342c3139322c36382c3232312c38322c3132352c31302c34342c3234302c3132302c39342c3132372c3133392c31302c3235332c36302c3133342c3139302c36322c3233362c3134322c3230312c36362c32342c3133362c3133302c3233302c37382c3234382c39302c38322c3134302c3235312c3135302c31392c3136392c3232342c3131342c35312c3231372c37352c34352c3135352c3131322c3130302c39382c37352c32332c3132302c35322c3136332c35362c3232372c32352c31362c3134372c3232382c3131392c33312c3132372c332c36392c3133332c36342c3134392c37302c3233352c31372c3233342c34362c37352c37382c3234302c3138362c3234352c31332c31332c3133322c3133392c3139392c3233362c35375d2c22706f70223a5b3134382c3134332c36392c39302c3135372c3136362c39322c32382c3136312c3139372c3134352c3135392c3134322c3230392c33382c3135372c3131392c342c3131302c3135372c3138322c3235332c35342c3130372c37382c3131352c3138302c3137312c34302c3132362c3137332c3138332c38332c31372c3139372c3230372c36342c3234352c3234342c3133372c3138392c38392c3233392c3135382c37312c36392c3234332c3233312c3137302c39392c3230302c3235332c34372c32352c38342c33312c31332c39362c3232332c3132382c35312c38392c39392c352c3132322c3132312c3132362c3230372c31322c31312c3232352c32382c3231382c33352c34342c3233302c3234382c3132312c39302c3233352c3132302c3130372c3234342c3138332c3135352c3137392c3135382c34362c3139302c3139342c3139302c39302c38382c3131342c3233362c3131325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3130332c3131372c34372c3134382c3131392c38352c39342c3138342c3130352c3139302c3230392c38332c38372c3132332c32302c32382c38352c34362c3132322c39302c3232302c3139352c3132392c312c3139362c39312c3234352c31382c3136332c3230372c37382c37342c34342c34332c3135392c3233352c312c3130322c3231352c3136332c33352c31322c372c3131372c3131352c3230362c38362c39332c3132322c3234352c3233362c39342c31332c3139342c3230312c3135312c3134382c32382c3136392c36312c38302c37382c3132352c305d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3136392c39302c3131322c34362c3139342c3130372c32392c3137382c37382c342c39312c3136372c3231382c36342c3230372c33392c38332c3131382c3231322c32382c32312c3139332c3134382c3130392c32352c3135342c3135362c3137352c32362c36372c39392c38312c37302c3234312c3233342c32322c39322c3131362c3139312c3230392c3131312c32332c3230322c36302c3231392c38392c35322c3132382c352c3234352c3138362c32322c362c3139332c34332c3133362c34382c32362c34372c3136342c3233342c3135332c3134392c3139392c3139362c3135362c3137312c3132322c39372c3136372c37382c36312c33352c3134362c39342c34342c39382c36352c3132372c3139322c3139312c3232312c372c3136372c3134312c3235322c312c3230352c3232362c36342c3137372c37302c3138382c3136362c34322c3131345d2c22706f70223a5b3137342c39382c3132382c3132302c3132332c3130302c3137362c37322c35362c31312c38352c3133392c38332c38392c3130342c32332c3132392c31382c3132312c3132302c3137332c34382c3230312c3232352c3232352c33322c3130372c3233382c39382c3234382c3231342c3232342c3130352c3139362c3131322c36372c39382c3233342c3135382c3235322c31352c3133362c3137322c3131392c33372c3137302c3232342c3136382c3136322c3233312c3133362c3134332c3137302c3232382c32342c3139332c3232392c35322c3233312c3132362c32322c3135322c37312c3232372c3134342c37372c3230332c3133332c3130342c3233302c3234352c37342c3130302c31392c3232332c3134352c36352c3232302c37362c32352c38362c3235302c39352c3233312c37382c3230382c3138332c3130392c332c35362c34302c3135352c3137372c3135302c38322c3134355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3135322c3135352c3235332c39392c32352c3234322c3234362c3137382c3133312c34342c32352c3234352c39382c35352c33342c36372c35372c33382c3132322c372c3233382c3235312c35382c3134362c3232392c3139372c38382c342c3137302c32332c3134352c3137382c3131362c33332c3135372c3234302c3232342c3136322c3138302c39372c32372c32352c392c3232372c3131312c3137322c3133312c35342c39382c3232362c3232392c31332c3139362c3135352c3135342c38312c3231382c3137332c34382c3139362c3130342c38362c3136312c345d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3133392c3231352c35362c3130392c3139322c39372c36322c3137342c3134392c38322c3131322c3231352c3231312c3137302c32312c3130322c3136372c3134382c38302c33322c31342c3233342c31312c3134392c39362c3136322c3233372c3231322c3135362c3138342c32322c32382c33342c31382c35392c38332c31392c3130322c3130302c36362c37312c3137322c33342c39332c3139352c35352c3138342c38352c31342c3235302c37382c39342c3137342c3132392c32302c38322c3230302c39352c34382c34352c37332c35372c3130392c3230302c3132332c34332c38362c31312c3138362c38302c38322c38302c31342c3138372c3135302c3131392c35332c38302c37352c3233372c3135312c35302c38392c3234332c3231302c34332c3130322c3136332c3234312c3230332c32362c3133352c33332c32302c34302c31375d2c22706f70223a5b3134312c3133392c32312c3137302c3139392c3130392c3130342c3134342c3139312c37302c3135372c39332c3134322c39312c3232382c39322c3136322c31342c3233332c31352c3230362c35372c3137312c362c3138362c3135382c3230302c3233352c3138372c3138302c3133322c3132302c3131352c3137322c3230352c3139312c3233372c3233342c332c3235322c37332c34322c372c3132362c31372c3235332c3234332c3230382c3132382c38332c38342c3135332c38362c33352c36362c3137382c3230392c36312c33342c3139312c3138312c3132342c3130392c3133322c33312c3136332c34392c3235302c322c33362c39372c3234372c31362c37362c3232342c3130332c35362c3130332c3234302c3232352c34322c38312c34362c31302c3133342c3130382c33352c392c37372c34332c3134312c35392c3230322c3137392c32362c3132305d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3234382c3232312c34382c3233342c3131302c35322c3132312c3230312c3235312c3138372c3138392c3138342c36312c3138392c39302c3233342c32322c3135372c3133312c3131332c36312c3233312c3137352c34302c3135382c3233372c3230312c3134332c3230332c392c3233392c3136332c342c3131362c31322c3139312c3232302c3233322c38362c3231342c312c3137332c33332c3139362c33312c32332c3234352c32392c34342c3132302c3233302c35372c37332c3137342c35322c3232342c36322c37352c33312c3134372c32332c342c36342c315d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "308b491938f36c07502d42bd5df3648c02c3fa1fd702498867ac64aab77ccfc6", - "certificate_hash": "558aac3c50e87dcae7998ea738fe374cd96471e556d8058df017b50beb37e751", - "created_at": "2024-09-09T12:58:58.611286978Z", + "hash": "1ce32846365098a1a32bacab1e45094706500fff167bc942d843716c76c3826f", + "certificate_hash": "f96feaa24deeb05e86e1c75cf50a0947a0924ed213f0609907681ff6e7132d29", + "created_at": "2024-10-28T13:28:30.627921469Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "325fc4caddf05fc6fd76691282441520b9b2009967065c7762cd947aade7323d": { - "epoch": 55, + "2fbb3ebb652173d14d7b62b5c583a2302e8e36850372109e7f3c88a46ec833ca": { + "epoch": 19, "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3138352c33302c3235312c3133352c33372c39332c3233332c3138372c35322c3139382c3233352c3234312c32372c3134372c3137372c3132372c3135302c3233382c35332c3231382c3130372c36392c33352c3132302c3233352c3138312c3137392c3133362c32382c39312c3231302c32372c3134342c3131342c3134312c35392c3139382c32372c34322c3132332c3235332c3139322c3130392c3130312c3231342c36362c3235312c3235322c302c3135392c33302c3139302c36362c3234342c3138372c3232322c3136322c3130352c36352c36342c3131342c3235352c3134322c3230342c31322c31342c32382c3232392c3135332c33312c37302c3135312c3139382c39302c32302c3138392c3134332c3139342c3133392c35312c3132332c36332c35332c3134302c3234352c31312c3132362c3234322c3234382c3134372c3132392c3233342c37372c3135392c3136362c39355d2c22706f70223a5b3134382c3133332c3131312c3135322c3230392c3138342c342c3130332c3133372c3137372c33342c3132332c3131342c3132312c35302c3135332c38302c33332c36392c3131362c3139352c3235352c3138372c37352c352c3232332c3234382c3138302c3234372c3131342c3132302c3234352c3235352c3138352c32332c39302c3137392c3230332c35312c3235322c3230302c32302c3139352c3138382c3232382c3136352c3138362c36372c3135332c3131362c35352c31392c372c35382c32302c3233312c32392c38352c3134342c36312c332c3234392c3232372c3130312c3235342c31362c32372c35302c3136322c3133352c34302c3230302c3233392c3232302c36342c3139372c302c3234322c33322c33332c32392c3131302c3133372c3130302c3138312c3234362c33352c3233362c3135312c38312c3136362c34352c302c3232382c3232312c3135325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39322c3132372c3134332c32382c38372c3234302c38302c3135302c322c3235322c34322c3138352c3138342c37312c3232382c3139382c3132352c3137322c3130342c31322c3137392c3235312c3139302c3131382c3139382c31372c3133352c39302c3234352c342c3230372c38382c3138342c31312c3135312c3131302c32322c3130382c3231322c3234342c37392c3138392c3131362c3136342c35332c33332c3133392c35332c3135362c3231382c39332c3139312c3231362c3139382c32322c34322c3233332c3139332c36382c3131302c3235352c3232302c3233352c375d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3134302c34382c38362c3136302c3137352c3132362c3137372c3139312c3231382c3139312c34342c38322c36352c35372c34362c3230342c32302c33302c3233332c3234352c31332c3235322c34322c37322c35362c33392c36342c32312c32372c3231372c37322c3233382c34382c31342c3137372c3233332c31372c3233372c38332c36312c3235312c35312c3231362c33322c3139382c3136352c3131322c37372c302c332c38312c39342c3233332c3135302c3233352c39362c32342c3135312c39352c39332c3230302c32362c3137322c3137382c38382c3233352c34342c31382c39342c32372c3137362c32382c31352c32352c3130332c3131332c3231352c3235352c3230392c33332c3234332c37312c3135342c3230382c3134322c37372c31312c3139322c3130382c3234302c3133382c3137352c3232322c31332c39352c35345d2c22706f70223a5b3135312c39332c3131332c3132352c3135322c3139362c3134332c3235302c3130322c3135392c32372c3234372c3132382c3138312c3136362c3136342c3234382c3132312c32322c3133322c3132382c3231332c3135312c33322c3233392c3230312c31382c32372c3230322c3139372c3130392c3233302c3235342c312c36372c3136372c3230342c33342c37302c3138392c3133372c31352c3231322c32372c3231332c3232362c33312c36382c3133352c3132342c3131372c3233322c3230362c3132332c3136392c3135302c3139332c3234352c31312c3132332c3138392c3131322c3230302c3132352c39302c3231322c382c37392c35332c3232362c3235342c32382c3138362c3133352c3231332c38352c3230382c3135342c33382c34322c3137392c3230322c3133362c3137332c32332c3131332c3139392c312c35302c3133342c34392c3130312c3136362c3232372c36372c3136395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3230352c3232312c3134342c3138362c3232302c35342c3234302c3139352c3131312c3137322c3230372c3138322c3132332c35332c3135392c38342c3232332c3130392c3136322c32352c3131322c3235312c31322c31372c3136392c3131332c39342c3136392c3136352c38342c31302c3230312c3138372c3131352c3230332c3235352c3133372c3131372c3233392c3139362c3131392c31342c38392c36382c3230362c3134352c3231362c31382c3135302c3130372c33312c34342c3139382c3231342c37302c3231352c342c3139312c3138302c392c3133302c3134362c3135382c325d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3134372c3137312c36362c34332c3130332c3234332c3231302c332c3130392c3131392c3231372c33382c3230342c35392c31342c38322c3235332c3133312c37362c3234382c37342c35342c3234362c3136392c37352c3134342c3136312c34302c34332c3235312c37332c3131302c3235312c352c37372c31352c3131372c37332c3131302c35392c34372c3137302c31382c3133302c3130332c37372c3137372c39372c322c38332c3132332c3234372c35332c3139372c37362c3135392c3235322c36342c3139382c3232332c36362c32302c3138352c3234342c3231322c3233322c302c38372c39332c3130372c3134362c3233302c3235322c3139352c3135382c3232312c37312c3131382c3135342c3134332c37362c3233322c3136302c39392c39362c3136302c35302c3134362c37372c35372c3230312c3130302c35302c3133322c38322c3133325d2c22706f70223a5b3134352c31322c3131382c31392c362c3232322c3134342c34362c32382c3135312c32392c3137382c3132372c3130382c39322c3232352c3139312c38352c3130392c3139332c3138322c3233382c3233362c302c3232362c3136372c3232302c3235312c3234332c3134382c3235342c35322c3132382c3233342c3230322c3130392c3230302c3130342c3234312c3233372c32352c3136372c31342c3231302c3231312c3232362c39352c352c3134332c33352c38352c33342c3132312c39362c3138332c3136352c332c3231392c3230382c3230302c34372c3234342c3136322c34332c3235322c3233382c3139362c39312c34342c38392c3231302c3231312c35342c34352c32392c36352c3233352c34332c3134372c3137392c3139302c34352c35312c3137382c3230352c36372c34332c36372c34382c3130382c3230382c36332c3131362c3135342c34362c3134335d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b31342c3231302c3231312c392c3234302c34382c3131322c3132322c38332c39392c31342c3132362c3231362c3136352c3135372c3235352c3137312c36342c32352c3130382c33382c3138342c35392c37332c3139312c36362c3234362c38342c3134342c3230372c33392c39332c3230362c3135352c36322c31392c3133322c3137332c3135382c3130342c3130372c3137332c36352c39312c3138322c3233322c352c3233392c3135362c37322c3134352c3138352c3232312c3132392c3130332c31332c31382c34322c31352c3138372c3132342c37302c3133322c355d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3137302c39322c38352c31392c3138302c3132362c37342c3235322c39332c3133372c3137322c3131372c3232392c3233302c3232342c3132322c3137342c35392c35312c3232362c3134362c3233342c3136392c33352c3133352c3232332c3138382c3230312c3234352c3139362c35372c3131322c3136392c39322c3137312c33372c3135302c3233302c3233392c3138342c3131392c3132332c3235312c37352c33382c3134322c3135372c38362c32322c33362c3232362c37312c3138342c3233312c3132302c3132352c39372c3138382c39372c32322c3138362c3230352c3131302c37342c3135342c3135332c33312c3139392c3234302c3230362c34392c31322c35332c31342c31352c3130352c3136312c3135322c3133352c3132322c3230362c3235342c3136322c3138392c3132362c35362c3130312c3231362c32372c3132312c3130312c3138392c3232382c32302c3132332c3136345d2c22706f70223a5b3133302c34362c34302c3136302c34322c3234372c34322c38352c3138392c34362c3134332c36332c34382c32342c3137392c3234372c31382c3134332c3130392c37322c3130352c3232322c34352c37382c35392c3232392c3132352c36352c3136372c3232322c36342c3138342c32392c3135322c38382c3234382c3132312c3136372c3130312c382c39372c3231302c3137362c3130382c37342c3133322c34372c36382c3137332c3133342c39362c3138302c3234302c39392c3234332c31352c32372c35332c38322c332c32372c35382c32382c34312c32322c38372c3131382c3232372c3132382c3230302c37372c3233382c3132322c32312c34302c3135362c39312c33352c3139392c37332c34302c3137352c3232372c38392c3136352c3134352c3232322c3133382c37322c32332c352c3231352c3139352c3130352c34322c33365d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3139312c3130392c36342c3233312c3234362c34362c38312c3134382c36372c3136332c3136302c3136362c3232362c3235322c36352c36302c38382c38362c39332c3130312c3133332c342c3135382c37382c3233312c3232342c3134342c3136322c3231352c37372c33322c34342c3135382c3136342c3134342c3136312c302c3235322c39362c3137312c3134372c31362c32362c3230322c3233382c362c35302c3136302c3136382c3231392c36342c31322c3234372c38322c3132372c3132312c332c3136362c3230322c3230332c3137342c3232382c3139362c345d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "325fc4caddf05fc6fd76691282441520b9b2009967065c7762cd947aade7323d", - "certificate_hash": "efc70e50e785e88b7a673d922a9140036f3d07f8d86bda4dabe42c2c43f29a8f", - "created_at": "2024-09-09T12:59:25.929208404Z", + "hash": "2fbb3ebb652173d14d7b62b5c583a2302e8e36850372109e7f3c88a46ec833ca", + "certificate_hash": "f71253d2996c994062b60ea7d30cdab94a915747f61c5754f6f5dcd03865e2f0", + "created_at": "2024-10-28T13:28:45.571959896Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "36dd031362399cff7e34ffbc7fc3143dde2c0cd30d517b5f83eca885a8d27b75": { - "epoch": 49, + "48235fa9da0cfbc9b5fe143edb37c424ed49a8defeef6817b53868abd9277faa": { + "epoch": 18, "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3133362c3136382c3139362c3137392c35392c39342c36312c32382c3131352c33392c3130362c3135302c3134312c32312c3132362c3234392c3234302c33382c3135362c3136362c3235332c32322c35352c36302c3135342c3135312c3233332c33312c312c37322c372c3233372c3134312c34382c35312c38362c3134392c3233392c38392c34372c3232332c3230302c3231372c33312c39302c3136362c3137302c3131332c382c3134352c3132312c31332c36342c3137382c34332c31392c3130352c31382c32382c3137332c3230392c32392c3138342c3230332c31322c3136342c3130372c3133342c33302c31332c3139372c3130302c3138372c3133382c37302c32372c3231312c39382c36372c33392c3132372c3130322c38382c3232332c382c35392c31342c372c3139302c37312c3133322c38302c3131302c37332c38322c3135365d2c22706f70223a5b3134382c39312c3234322c35302c34372c3138312c3235332c35382c3132392c3230352c3137332c332c3132352c3132382c33372c3130382c3234342c3137382c37362c32322c3130302c3135312c34352c3131332c3232322c332c38332c3133302c3135312c3232392c37312c3131312c3139342c3234342c3130392c3135342c3139342c31322c34362c3135302c3232382c3131302c3230312c3231332c302c3234312c37322c3234372c3137302c3137382c3231372c3234372c3232312c3231362c34352c3234352c33302c372c39332c35332c3135362c33322c3136322c3234382c32352c3132392c3139382c3137302c36382c3136302c38362c3135322c36392c37302c35342c31352c3232302c3130332c32362c3133392c3232332c372c3134312c38372c3134332c35322c35372c3138332c32362c37382c34382c3131382c312c342c3137342c35385d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35382c3139322c38382c31372c38352c3138372c3132352c3130362c3133322c3130392c3135392c3137322c3130312c38322c3130362c31302c3135382c39362c3230312c32392c3131372c38322c3130322c3138322c31372c3131342c3139342c37332c3135372c33352c35302c3139382c3136372c362c31372c352c3135302c3135342c3131322c36312c35382c35342c3137322c3235322c31352c3136312c3138352c3130312c3134322c3130362c33382c37372c32392c3233332c39322c34352c3232382c37372c302c3230382c352c3132352c32352c375d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3135322c39362c3139392c34302c3138382c3231332c39302c3138372c35362c34322c3134392c3134392c3139382c3138302c3139392c3136332c3132302c34332c3131392c3230312c3230372c3139372c3135312c3132362c3130382c36352c3133372c3135372c3133392c39312c3131322c39382c3136382c3135322c3134332c3137382c3131382c38382c34302c3232352c3137372c3139302c3234322c36312c3133382c3131302c31362c3131332c32352c3232342c3131372c31322c34302c3233382c3230312c33342c3130332c3231322c3137312c3133312c34372c3137392c36302c3131372c39352c35342c31342c3235312c3230362c3234362c3233322c34362c3133382c392c34372c39312c3133372c34392c3139372c31342c3137322c3136362c3230372c39312c33382c37312c36312c3234332c31352c39372c3133332c3233322c3136362c36312c382c3132395d2c22706f70223a5b3134382c34352c33392c34352c34332c3138302c34322c3133392c3232362c3232302c38362c3138372c3232332c3136332c3132362c3138352c3134322c31332c3130392c3137302c37312c37382c3134322c3134322c3131362c362c3233372c3132362c3136322c3138322c31392c3131392c3130332c3234352c32342c34322c3232392c3137352c34342c3133342c35382c32372c32362c3231392c3136372c3132382c37362c39322c3136302c37322c37342c3132352c39332c3131342c39382c39322c3232382c3233332c36302c3133392c31382c382c3138342c3130382c34312c3232312c38342c3230392c3235302c34322c3234332c38392c36332c36392c39352c3137312c3233352c31342c3232302c3137362c3230332c3137382c33312c3132382c3135382c39372c3137392c36352c3133302c3133382c31352c3232332c3135352c3230362c35302c3131395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3135332c32352c3137352c3232392c3234352c35342c31392c38332c34332c35312c3135322c3139342c3232322c322c3132392c332c37342c37372c3235302c34372c3234392c3133302c3232382c3232362c3138312c3135322c32342c3130332c38332c3131342c3135362c33362c3232372c3130312c3132312c38372c3132342c36332c31392c3131312c3230332c3131302c3231332c3137382c3133312c3134352c3230322c3231352c3230362c34332c3234362c3130312c32372c36392c34322c3137382c3233302c3130392c34342c35362c3233342c3230342c3134302c355d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3138332c382c34372c33362c3130322c33322c34382c31342c3230372c32392c3132322c38352c3233382c31312c3135372c3131322c3130332c3230312c3233392c31302c3233322c372c3233342c3135332c3231392c3136312c38382c34342c38352c3138312c35322c35352c35312c3234342c3232392c3235312c3138362c3231352c3234322c3138302c3136362c35312c3132342c3132302c36362c35302c37322c3135392c32312c34352c3131342c3231352c3230382c3131322c3232382c35332c3234352c38392c31342c32352c3138392c3136382c3135372c352c3134322c3232382c3232392c3232372c3232372c3134382c31342c33382c362c3234312c3233392c3139372c3137372c3134392c3231372c3130302c3134362c3233372c37312c3234302c31362c3133322c37352c3231392c3232332c332c3136342c36392c38312c3135382c3135322c3139335d2c22706f70223a5b3137382c3233342c3232372c3139332c37302c3133372c38392c35342c3131302c3233312c35312c38322c3235312c37362c3133362c3130322c3138362c38332c3235322c3231322c3234342c372c3136352c3133332c3136302c34352c35322c3233372c3133342c38392c3133312c3231332c3134382c3133312c3138362c3135322c3234342c3134382c32332c372c322c3139362c34342c3131322c3233312c37302c3130372c3234342c3134382c3232382c3130382c35322c3137352c3139322c3134352c3133392c31302c3233322c3136362c35332c3138382c3234342c3230332c3230392c3230312c3131322c3230342c38382c34362c3130312c3231302c35342c3133382c34312c36352c3232332c32392c3138382c36392c3130352c3132342c3134382c35302c34312c32342c34352c34372c31332c3230322c3138332c3232312c32352c3231382c33342c3232312c3139355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b37362c3235302c3132372c35312c3134392c3135372c3235302c38342c36322c35392c32302c3137362c31322c39332c3234362c3231332c3139352c3135302c3134342c3132372c3132352c3230382c3231322c3139382c3133372c34332c37302c3131372c322c32372c31362c3230372c3234312c3235322c36312c392c35312c3130342c3233302c3232352c3132382c3135302c31352c36342c3136352c3232332c382c3133382c3235322c3133302c3231302c3138372c38352c34372c31352c3131312c3233332c3134302c34302c33382c39322c3234352c34312c345d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3133382c372c3133392c3135342c3136382c3130342c3232372c32332c3130312c35322c3231352c3135382c36372c38382c3136322c34322c33342c3233392c3134382c38302c3137372c33302c3139342c33332c36352c3232322c3230382c3234312c32302c3138342c3135322c3134352c35322c3134392c3132312c3232382c392c36342c392c362c33342c3132302c39362c3234372c3232392c3130382c332c3136352c31362c3132382c35342c37312c38352c3235312c3134302c34372c38322c372c3131382c3135312c3234342c3232312c382c3132322c3234342c31372c31302c3135392c3139382c3230382c3233342c3134382c312c32342c36332c3132322c3130312c3138312c32392c3132352c3232362c3234322c38302c3231332c32392c37302c3137302c3139372c3137362c35392c3139362c37322c31392c3135382c3131302c32325d2c22706f70223a5b3137312c31342c36302c3132362c3235312c38342c332c3134312c3132312c3136352c3135362c3230332c32332c3139372c32382c3231352c39322c36342c3235342c3137382c3235312c33372c34362c3136302c3235322c3139312c3233352c31392c3235342c3138382c32382c372c3139352c3235312c3133352c3231322c3234372c382c3233312c3131322c3131322c3137322c38382c3135392c34312c31332c362c33382c3138342c34312c332c3230342c35362c3230372c3133322c33372c36382c35312c3233382c39382c34372c3135342c3235312c3234352c3131372c3233332c3134362c3139322c3130382c3134352c372c3133382c3139332c3230362c38322c37352c3234312c3234382c3135332c3235302c3233322c3130302c3232342c32362c32342c3132322c36302c33382c34372c312c39332c312c3132322c3230302c38382c3131395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3230392c3231332c3231362c3131302c3232332c3137372c33382c34362c3234332c3235352c3133352c362c3131342c3234382c3131322c39322c3134302c3136322c3130312c38342c33372c3130332c34332c36382c3133372c3230372c34342c31392c3138332c3139352c3232332c3133332c38352c3132302c3233342c34322c3136312c3132302c3230382c312c3232312c35372c3135302c32332c3233332c3234332c3138362c31352c3137322c38352c32382c3133372c3131302c3233302c3232362c3234332c39392c3235342c3139372c3131352c37352c3136372c3138352c325d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "36dd031362399cff7e34ffbc7fc3143dde2c0cd30d517b5f83eca885a8d27b75", - "certificate_hash": "d00f3c6b18f70dbef9f3674e5b4a228ed1e148e09a8d3b8374575fbc24bcad38", - "created_at": "2024-09-09T12:59:09.117508954Z", + "hash": "48235fa9da0cfbc9b5fe143edb37c424ed49a8defeef6817b53868abd9277faa", + "certificate_hash": "7acc51bdcf22922e750517836a7976bf0a7ef958afc1f120f7ad8402df05908a", + "created_at": "2024-10-28T13:28:42.838780346Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "44d0c581f5945421af350bc5ebfa2d9062e198c9b06fac430c5e0e837cff1977": { - "epoch": 46, + "55432e62706c2d677f10bb67358bbeaca021beae66d1056a22eb80775243a730": { + "epoch": 17, "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3138342c3130392c31392c3139332c38302c36382c3234352c3136342c3230322c34382c3231322c3139332c34352c36342c3134342c34342c3139392c33342c3230362c3234372c3233302c3138382c33302c3233342c3233352c3135342c3232302c3133392c36332c3130372c36352c3230372c3137342c3130372c3233332c32372c36382c3234312c3131372c3137362c3130382c3139362c3235312c3134352c32372c3130302c31362c3139342c382c3134342c3139342c3134332c33332c35372c3233352c37372c3135342c3131352c3139342c3136302c3131382c3135342c3139382c3139352c34392c3135352c3135322c36352c3138302c38352c3234352c3230302c3230372c39322c3133332c38372c39332c3131312c3130322c3134302c3132342c3135342c37342c3133362c3230322c3134342c3235352c3130352c3232302c3231302c39352c39302c3136322c34312c322c3230355d2c22706f70223a5b3136332c33332c34322c38312c36382c3231382c3136332c3233312c3138382c35302c362c3234362c3132392c3233382c3235332c3232382c37332c3134312c3230392c34392c3139322c3132342c37382c3233392c37302c39362c3230372c3231312c31382c3131352c3132312c3137382c3234392c3235312c3139352c3132382c38342c3231332c37332c3232352c372c3137372c34342c3137332c32362c3138382c3136372c32372c3134302c39352c3233392c3231372c3233322c31382c3231332c3139302c3232362c3138332c3232392c3131302c3130392c3132372c3231392c3136372c37322c35312c3138322c33382c32362c31362c36372c3136332c3136302c36392c3137372c37302c36362c3130302c35332c3235322c3132332c36362c3132392c3230382c3231302c3130352c32382c3132392c36312c3136312c3130362c3230342c38352c3131382c3131342c3131385d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3231372c36362c3135362c38352c3138322c37372c302c35322c36332c3130352c3135342c37312c3234322c37392c3130342c3138352c31362c31332c3234342c3232372c38372c35372c3133312c36352c342c38382c31382c31382c39382c3137302c32352c3235302c3135342c3134352c3131352c3230352c3230342c35342c36352c3135332c3232382c3230372c39342c302c3137382c3134392c37322c3130382c3138342c3231392c3136302c3135322c39332c3130352c38362c3235332c3231342c3235322c33372c3130352c3133332c382c3232382c31335d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3133372c36382c3231312c3133322c3135312c33392c3132322c37392c35302c31372c3131382c38342c3234392c3131322c39382c3130312c31352c3233322c34332c3233362c372c3139362c3234342c33352c3138302c372c3132382c3231302c3134382c382c3232372c35342c3130352c3133312c3232332c3232322c32372c3138362c3131362c33302c3132322c32312c35362c3133322c3232372c372c312c3235302c31392c3231342c3131372c3139372c3133342c3230342c3134302c3234382c3134372c36332c3233302c31382c33342c3133362c3235332c3233332c3139332c3137302c36372c3138372c3235312c33312c3235342c35332c3135382c34332c3230322c3130332c38322c35362c31392c37392c31372c3138372c3135342c3137382c3131312c3231352c3134342c37392c38302c34392c32352c3130342c32382c3133312c3231332c31375d2c22706f70223a5b3132382c35372c3132382c3137372c3231362c3230302c3139372c3233332c3133352c3136322c37382c37342c3139352c3137382c3138372c31342c3138312c3235322c39392c3136362c342c3138372c372c3131352c32362c3234362c3138392c35362c3135302c39322c362c322c3230342c32372c39312c34352c3233362c3234332c3230342c3132342c33302c3132372c35382c3138312c3139312c39362c3234362c36322c3137312c3133302c33332c3234302c392c39342c33302c3133372c38372c37342c3132322c33312c33332c31302c34392c3134302c3230362c3136372c31312c3231382c3134302c35362c3130382c33372c3233302c3130312c3136312c32372c302c32392c31352c3235322c3230372c3231342c3136312c3137322c3235322c3134332c37312c3230352c33312c3131332c352c3131322c3230382c322c34372c3234375d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3132312c3137332c3139332c33392c34302c3135302c3135342c3130382c3130372c3235322c3233362c342c33382c3132372c3138392c3136362c3130362c3134332c3132332c35332c3138362c39382c332c36332c3232322c36322c3232342c34312c37372c3130332c3234372c3138362c32332c37362c3233362c3235322c3231342c3136312c3132352c3137382c3139302c38352c3232332c3231322c3132392c3137352c37392c33302c3133342c36342c3133372c3235302c3132362c36372c39372c362c3139342c33342c3232392c3132342c32312c3235322c3234362c395d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3133312c3133352c35332c3232352c35362c35302c3135352c3136372c3231382c33332c3232392c3231352c32352c3139312c35322c3232382c36322c3132372c352c38382c38302c38312c34372c3230392c3138372c3233362c3231332c3138382c3139312c3235352c32382c31322c36332c3233372c3137352c3232372c3135362c32352c3138352c3133382c3231372c3137382c3133352c3138352c3134332c35302c3133382c36312c392c3139352c3133332c38332c3130342c34302c3139392c3232302c3234362c3230372c3133322c3133392c36342c3131332c382c3130372c32352c3138372c3234352c3139312c342c3137312c34352c3233382c3139382c3130322c39372c3134312c3133372c3133362c3235352c39302c3131352c3132352c3136302c3231342c3132342c3137322c3133362c34362c3130322c3137332c3136302c33332c3234382c3135352c3135342c3138385d2c22706f70223a5b3134352c37332c32382c3138342c3234342c3131392c3235342c3135352c3233302c31342c34332c39302c3232362c3131322c35382c37392c3230352c3232372c3130352c3134362c3136372c3137362c3132302c37382c38362c3232352c3134392c372c3230382c3231352c3233352c38302c3130372c34362c3233382c39392c3231322c3233362c372c36392c3139332c34382c3232362c39342c3131382c3139382c3133372c3139392c3136322c3232372c3135332c31342c37382c34352c3233342c34332c3232332c3234352c3232392c3139362c3235312c3235312c38302c37332c32302c32392c3130382c32302c34382c33342c31372c33322c3131322c3234332c3130342c3231312c3135322c3136362c3130382c3231312c3136312c3136352c3233372c34312c3232362c3232372c32352c35342c3139392c3233362c3133342c36312c3235352c3231322c3131302c3133365d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3231322c33342c3230362c3138352c3231332c3131362c3233322c3130342c34352c33382c39312c3232302c3130322c3231382c39382c3135352c3130352c3130342c3130352c34332c33302c3232332c3138302c3138362c3232312c3232332c3131372c37302c3130372c3138392c3233312c38312c3233322c33362c3234372c35362c3231332c3231392c3132372c36322c3234372c34312c3232392c34332c3136392c3135342c3133392c3235312c35392c3137342c3136392c3232312c39302c3230322c34322c31312c3230312c3232392c3132312c32372c3136362c38382c3130322c355d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3133322c312c3134322c3231302c3132392c3230372c3139382c3233332c3131362c3135352c3233342c39312c3139312c3132322c31352c37392c32372c3136352c3130352c3132312c3131322c322c34352c3134332c35302c34392c3234332c3233332c3131362c3130372c3230372c3235322c3137392c3230312c3139332c3135382c3135312c3231362c3233392c3138362c3232312c3234302c3131392c3134352c36332c3230372c3136302c3132382c372c3136372c3132372c3230352c3230302c3131372c34382c3135352c3234382c34362c3131382c352c31312c34322c36312c34382c3137322c3135322c3231332c38352c3137352c3131362c3130302c34352c33332c35352c37302c3134352c3235322c3133312c31362c39362c36352c3230362c3231342c3135312c34322c34372c37312c322c3232392c38332c35342c38322c3136322c34372c372c3133315d2c22706f70223a5b3135322c33362c322c3232312c38372c31322c3234352c38392c39362c37342c3233392c3135322c3136372c36352c3136312c3137322c33332c33382c3137342c3233392c3133322c37392c35372c3133312c3232362c34332c35322c37392c3235352c37312c3233322c3234382c39362c3133322c3134382c3235332c31332c34372c3139342c322c3132302c3130382c3131392c3130332c3134352c3134322c3232332c3231372c3133342c3139362c3133382c3234332c37332c3137342c3230382c33372c33302c37352c3233322c32312c3231372c3133372c3231332c342c3231372c33302c3234302c3139392c3230312c3131382c37302c32392c33392c3136392c34392c3139312c3232322c3138332c3235342c3131312c3233302c3130382c3233342c39362c39302c32342c3131392c3235342c3233352c3135322c38382c32322c3233362c3136382c35322c3138305d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3136372c3138362c35342c38352c31392c392c38302c34342c34392c3235322c3135362c3139322c3132342c3137392c31312c3132302c3231362c3134372c3131332c32302c3134352c34362c38352c3234392c3139372c39342c33352c3137372c3131332c39352c3230352c3130362c3130312c3137312c3134302c3130312c34392c36302c3137312c3230362c3232322c35382c3132342c3138312c33322c38352c3235342c3233322c3230362c39362c3135362c3130342c3231312c3132382c3131372c3134302c37322c3233342c3136332c3134392c3139322c3232382c3232352c31315d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "44d0c581f5945421af350bc5ebfa2d9062e198c9b06fac430c5e0e837cff1977", - "certificate_hash": "e4c3e664d0da2f0ac5c25db6dd37cd45d1f77fe9bbbb7ed2c4bb001d66d5cd49", - "created_at": "2024-09-09T12:59:00.656190308Z", + "hash": "55432e62706c2d677f10bb67358bbeaca021beae66d1056a22eb80775243a730", + "certificate_hash": "acdeddc99db23e89186fb22c493f24461f4a6cc60fd2cddad361c45b9d32a7ac", + "created_at": "2024-10-28T13:28:39.594096863Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "4c2f40f8565355fa1bdf702c37efb1433e3b6c27dc97310c891623f7255e8a10": { - "epoch": 54, + "762b812b8c3537193f3db904db0354641b6bfa039fef2eb104a37cc773bd82e8": { + "epoch": 20, "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3135302c3231382c34332c31322c3137352c312c38302c34332c34382c3230352c3135362c3136382c38342c3231332c3132322c3134332c32392c3137302c3134332c3139372c3132312c33312c3235322c32382c3231302c3231312c3231382c32302c32322c3230302c3233352c3230382c3230362c33382c3132352c3231392c3135352c3139362c3135332c3233322c3134312c3134322c35392c36312c382c3232342c32382c3137312c31322c3234342c3138352c3135372c3137342c36392c3233372c3233322c3133372c3234322c3235332c3130342c3135342c3230312c33372c3234392c3231392c38392c3137362c34302c3233382c37322c35362c38392c33342c3136392c3137302c3230382c3231322c3231342c3234312c34352c3231372c3230372c3137312c3136302c3132372c3136332c3230302c3136342c3139372c3137382c3132312c3133302c3231332c3133372c3133322c375d2c22706f70223a5b3133322c34322c3135352c3137352c3130302c3130342c3135392c31332c3136352c3136302c35392c34382c3137302c36352c3231362c3132392c3139382c3233332c302c3232352c37302c31362c32342c3130332c3137352c3134322c3231342c3138332c3133392c3232342c3132322c362c3131372c3135392c3138342c3230332c3233332c37302c38322c3133332c3136382c31382c36302c31312c39312c33342c3234362c3135302c3134382c3131342c3131332c37382c32322c39392c3139352c3232382c3130332c3232392c3231392c3135342c32312c3133392c33322c31372c34372c36302c31312c3136302c38312c3130392c3130382c3130302c3235322c3130372c32382c33352c3231332c3133362c3232302c3133332c36302c3235332c3136302c3137372c3136392c332c39322c3131372c3232342c39352c33312c3234352c3136342c35392c3233372c3235305d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39352c3130302c39392c322c3234372c34372c3136342c33352c3137372c38312c3131382c3133362c3131392c3138342c322c3137322c3230352c3232332c3138332c38322c3131302c3234362c3234332c3130332c3135362c3230342c322c3232322c3131322c3134312c38382c3135332c3233322c36312c3235342c3231382c3230382c32312c3138352c35382c3132362c33362c3136382c3133332c3137312c35352c3131312c3234372c3234322c3138382c3230342c3235352c34382c39302c3135302c32322c3231322c3131362c3235312c3130362c37302c31322c3137332c335d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3134322c32312c3130312c36372c3136342c34332c38352c34312c35352c3230362c3234342c36372c31312c3230312c3137352c31302c32322c3131312c3230322c3230302c33322c3232322c3231322c3136312c3138382c3138302c36372c3131362c3234352c34312c36352c3230312c36302c34362c3233352c3231392c382c3231372c35302c3137332c3231392c3139352c3138372c31312c3134332c3135362c3232302c39332c31312c3230322c3135372c34312c3137342c3135332c3232392c3231372c32322c32332c322c35352c34302c312c33302c3130332c3233372c3130332c3139362c3235342c32312c3132372c38332c33302c3132312c38382c35312c3131352c3139382c35342c3230312c39332c3139362c3137372c3231382c36362c38342c3137392c38322c3231372c37322c36302c3131302c34382c3133362c3235332c31302c3130385d2c22706f70223a5b3136342c3135372c392c31342c3233332c31302c3233382c352c37372c3138352c3135302c34302c38332c322c35322c3232322c3135392c3135302c39312c35382c3136302c37372c32322c36382c3230332c3230362c33382c39382c3137352c32392c382c3233332c3136392c3137322c3137302c3231372c3136352c36312c32342c37312c3130332c3231342c36302c3230342c3231302c322c3136382c3130302c3133302c33332c3233332c36392c37302c3233322c3233342c3137362c35372c3137352c38312c36382c322c35382c3136382c3136322c3232302c3139322c3132342c3233382c3233352c39392c3130302c3231352c3137322c32312c3136332c39322c34342c3135382c3235352c352c3136392c33332c3230352c38332c34382c3130302c38392c3130392c3133352c34392c3130302c3231392c32382c35372c3132362c3137355d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3234382c37392c34342c3233342c38302c3136382c3130322c33342c3138322c3234392c36342c32342c37352c3130322c3138382c34342c3137372c39312c3130342c31362c3132362c32372c3131312c32312c3131382c3133302c36332c3235332c39342c36322c31312c3136312c39332c32312c32302c33322c3130352c37352c3134352c3235352c3231332c31342c3231382c372c3138322c3139312c3133382c3133382c3130352c3135352c33322c3134372c3231362c3131352c3233322c3130342c36372c32302c3139312c3232392c3230382c3131302c3133372c335d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3134302c36382c3138392c3139322c3235302c3131382c3133302c3130322c3132342c352c3131352c37322c36352c3132382c3130342c3235312c33352c3130322c3233382c3231312c3136352c3137332c3135352c3134332c3231302c37392c3136322c3139312c3131302c34332c3232392c3135302c3138362c32302c3232342c39392c3139372c34352c34332c352c36342c32392c3131382c3139322c39382c33302c36342c3132352c382c32362c33352c35342c3134312c3136382c31392c3232342c36342c3131302c3233372c31342c34342c34312c34362c3130302c3133392c3135392c3135352c34372c352c3235332c3231322c39312c35302c3134392c32332c3231332c36302c3133392c3137322c382c3230352c37382c3234362c3234362c3138342c3133342c3137392c32382c37312c3231372c3134322c3137332c3233392c34302c322c3136395d2c22706f70223a5b3137352c3230382c3136352c34332c31302c3137322c35342c36382c3233322c39322c34382c3138312c3132302c34302c34382c3135362c3234302c3135332c3136392c3132392c39372c3133332c38342c3133322c332c3137362c3139372c3136342c3134302c3233332c3131342c35342c38332c31382c3139342c34372c34382c3137352c3132312c3230322c39342c32362c3138342c302c3132362c37372c31362c3233342c3133302c3139352c3131322c34372c3231302c31302c3230362c37342c3232342c33372c3130372c3234352c3139372c37302c3135332c34342c3135302c3133392c33322c3232302c35302c33312c3133352c3234352c36372c3139362c3133362c3230372c3231322c3138362c3230312c38362c3130342c3135312c32372c31352c35302c3130372c3235342c3137322c3230342c3230392c31302c3134312c3231382c3232332c3137342c31325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3136312c3138312c31372c3131372c3131312c3134362c3133392c39312c3234322c39342c3235352c3130302c3136322c3136382c3230342c38362c3136342c3133382c3139352c3234392c39312c35332c36342c33332c34382c39332c3232322c32332c31302c3133362c38342c3232312c3137322c3235342c3232332c36362c38322c34312c3138332c32352c38322c34322c3137372c3137382c3136352c36302c3138342c35342c3137352c3134312c3137382c312c36312c37312c32352c3235302c37372c3232322c3139332c3232342c34332c3133352c38372c31325d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3134322c33302c342c35312c3134382c3130302c36382c312c3232382c3138332c3234312c3230332c34312c37372c3233332c3137382c3139372c35302c33332c382c3139372c34362c3235352c372c3131322c3138392c3139362c3137332c3130392c33352c3232302c31372c3139372c3136352c3130352c3132372c37392c34382c3232382c32372c33312c37352c3235312c35392c3231382c3138342c3136312c362c32302c35372c3136322c3134342c36352c31342c37322c3233312c35362c352c3139302c3137342c3231302c3132312c3138312c3136362c36312c3232362c3231372c3230372c31332c3133312c3135332c352c3234352c3132382c3230342c35332c3233322c3130302c31382c3230332c3139322c3135342c3133332c3133332c342c33392c33362c3132342c3235342c3137352c38342c32302c3131322c3138382c37302c37315d2c22706f70223a5b3134342c34322c3132332c37382c34312c3130352c3133392c3234392c37342c3139382c37312c3135322c3135342c32322c3136302c3132342c3139352c38312c3234372c37382c3137382c3232312c3135322c3233322c3230372c33332c3132362c3234372c3133312c3231362c3138342c38352c39352c3130332c32302c36352c3232352c34312c3131372c34392c3234352c3136332c31332c3135382c3234332c31352c31392c3130342c3137372c3233392c37332c3233362c3133322c3136332c34312c3232382c36392c3231372c35352c3131382c33302c3132372c36312c38352c3234362c3135312c38322c3131322c38372c34332c352c3131392c31352c392c3231342c3130302c3233312c38312c34312c3139392c3139312c3130312c31332c3234352c33332c31322c37302c3234322c3132392c3138382c32382c37372c38382c3234382c3139362c3234315d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b38332c39362c3139302c39372c3132342c3136352c3138362c35302c34302c3138362c3135372c3135322c3133302c38382c3234372c3232392c31382c31322c3233382c3130332c3139362c3133312c34332c3232392c3139332c32342c3133372c3233322c362c3139352c35372c31302c3231352c31332c3132352c3131362c36392c3235332c3232362c3133392c39332c38382c3138352c3234382c3133352c3132352c3132322c3135322c32312c36332c3133322c3131352c3231322c3134362c34382c31352c3133362c3131342c3137352c3137382c3138392c3230352c3132342c355d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "4c2f40f8565355fa1bdf702c37efb1433e3b6c27dc97310c891623f7255e8a10", - "certificate_hash": "e7712533f692b69fd982f162a9c6a854ed706a4e87e0ec6531915e910afb16f4", - "created_at": "2024-09-09T12:59:24.638170847Z", + "hash": "762b812b8c3537193f3db904db0354641b6bfa039fef2eb104a37cc773bd82e8", + "certificate_hash": "98a4e94100bf93a65874902fb133344e2be341e6b1567ccc3583991a6424fac6", + "created_at": "2024-10-28T13:28:48.724863808Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "514cbc9ef9a90d9e641ac86005517d1d66a6f41baf1066101e6471b0f36473c7": { - "epoch": 61, + "8714894c0f15953192b19af05b9395c00b502ac9fda55de1498156c56027e90e": { + "epoch": 16, "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3138332c322c35312c37362c3233342c37312c3131302c3133382c3234312c3232392c37362c3234372c362c3136362c3234372c3130352c3135382c39322c36392c31312c3234382c3138322c33332c32372c3133372c3136362c3232352c3230312c3135362c3234372c3230312c3138372c3138372c3133312c36362c3131342c3230372c3234322c36392c3130372c3231332c35302c3233342c35382c32392c3233382c362c31332c31342c3138352c35382c3139382c33312c3134372c3232312c33332c3232322c33342c37362c3230302c3133332c3233312c3232372c32332c352c3139312c3139372c35302c38312c3235302c37302c3137382c3136382c3139332c3232382c3134352c3134372c3135322c3136322c3130322c3136322c3234352c3231302c3230392c38392c3132352c3136342c3230332c32362c37372c37362c3130342c35312c3131382c34362c34395d2c22706f70223a5b3137352c362c36342c39342c37362c3233392c31322c31312c3232392c3136332c32362c3233392c3130312c34372c3230382c3134342c3139372c3138372c3136392c3233352c36362c3235332c3131392c36312c3230362c3135332c3134312c3131312c3234322c3132302c382c33392c32342c3232312c3230352c3138302c3133382c3133342c36382c3138322c35332c3231362c3233392c3136362c3230372c31382c35392c3130332c3133372c35392c3235352c34342c3139322c37312c3131352c3133342c3234312c3232302c38362c3134372c3134312c38352c3130302c34382c3139342c3132312c33332c33332c3230302c38332c382c37312c3137322c3137332c3132322c3231332c34322c3233332c31322c37342c39342c3230332c3133372c312c34372c3139342c3136322c3137322c3131372c3233392c3134362c37302c3234322c38332c33362c3232385d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b33322c3136322c35352c3230392c3139332c3133352c3134362c3132392c3137342c3138352c3130372c36392c3136312c34392c3234352c3232362c3132302c3137322c3136342c37322c3136382c3233362c3232352c3130392c3130362c3235332c3133372c34382c3130302c35362c3230312c39342c34352c3138392c3131322c3134382c3234302c362c3133392c3133392c342c34342c39382c3138302c3235352c3137362c39392c33342c32312c3139342c3233362c33372c32392c3233352c3232342c3233362c3133312c3133302c35392c3134382c33352c36302c36392c375d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3138312c3230352c34362c3137332c3136302c3134342c3133392c3230302c37352c36372c31322c3138312c3230352c34352c3232332c33312c3231332c3136352c35302c3232342c3137352c3130372c35302c31322c3137302c3137342c37312c3233372c3135332c31342c3138302c3233312c34372c3231332c3137312c3130342c3230372c3139322c39352c3137322c3137322c3137372c36382c3133362c3233382c3134322c32352c3137312c352c32372c3135322c3133312c3139382c382c3231322c3135322c3230302c3135372c3230302c37392c3137312c38332c3135312c31362c3230312c38382c34392c3132342c3139332c34322c302c31362c3135392c3139332c3131312c3135322c3135352c3233342c35352c37342c3232362c33362c3231322c3231382c3231322c3234332c3132392c3130392c3133382c3133382c3138322c38382c3230312c3137362c31302c335d2c22706f70223a5b3136392c36352c362c3132352c3235312c35382c3131342c3132312c36312c35332c31362c3130332c33352c3135332c3230312c3135332c392c3235322c36312c3230322c3232352c3138392c3235332c3136332c3133392c3231362c31332c3231302c3232372c35382c3233302c32392c32342c3138302c3137372c3131362c35342c3230382c3234382c35332c3133372c3234332c32322c34362c3235332c3137392c37392c3139372c3135312c33312c3134362c3232342c3139372c3134332c39302c3230392c3137372c3232332c3137372c39362c37352c3235352c34372c3139332c3131372c3138382c3138342c3133392c37392c3139322c3135392c3139342c31302c32352c3135382c3131382c38392c32392c3135382c3134392c3130342c3234322c3230382c35362c32362c352c3231362c3133302c3233312c3230382c3231342c3131342c31302c3235342c3138362c3130395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3137392c3231342c33312c3134302c35362c3138332c32392c342c3234352c3136302c3235352c38332c39312c3133322c3133352c36342c3234362c3130332c3135392c34302c32382c37332c3136392c3230382c32362c3234302c3137332c33372c3137392c3234392c3136382c36302c34392c3233302c3138352c32332c3231332c36352c3232362c3139302c39382c31352c3234392c3139342c3135392c3234332c37332c302c3137312c3136312c3233382c3232392c3132372c3234322c36312c33342c3133332c37362c3137362c302c32322c36312c3138302c335d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3137332c3133332c3135392c3136312c3133362c3135342c3139332c3139392c31322c3134322c3131332c35382c37332c3133332c31342c3137392c37362c3234342c3231322c3230382c3136352c3138322c3139302c3139332c33332c34362c3234322c3230302c34322c31302c32332c31372c32332c3233362c3131322c3136372c3138302c3135322c3132372c38352c3234362c34332c3132352c39302c3133312c3137372c31302c34322c31392c3234352c3136302c3132332c3133372c3131382c3136302c31312c39352c35352c3131322c3131302c31322c32382c3134392c31382c3131372c3136392c31332c39362c3233332c3233312c31352c34342c33342c3131382c38372c33362c3131392c3235322c39312c39302c38342c3134392c36342c34382c3133392c3230372c31392c3133382c33332c3132302c3133342c3130382c342c3134342c3133322c32345d2c22706f70223a5b3137342c3139392c3230362c33392c3234392c3138382c3234322c3234352c3231392c3233392c3134312c3130302c34302c3139302c3133392c3138382c38302c31302c342c3135362c3137302c3131352c3136352c3138382c3230312c3133312c3136372c34372c3136322c3135352c352c39342c35312c36372c3136342c3131372c3230302c39332c3230302c3137392c34332c37322c36382c39302c3234332c3136362c3234312c3134372c3138342c342c3135352c33392c3130362c32372c3136362c3234302c35302c36322c3230342c34312c3131312c35322c3130342c3234372c3133342c3133332c3133352c3230332c32332c342c3235322c3234312c35392c3136342c3231352c37332c3132312c35302c3135372c3132322c3232362c3231372c3138392c352c3232332c342c3133342c3132302c33392c3234382c38382c3130382c3135332c3135322c3138322c3130375d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39362c38332c3132382c3234312c3234312c35372c3232362c31392c37342c3235322c382c35312c34382c3139332c36332c37312c39302c35362c34302c32342c3136382c3137372c3231392c3132362c32362c37332c3234392c3130362c3131362c33362c31312c37342c3137352c36372c37352c3133312c3131382c3132352c3138322c3133392c31362c36312c37362c3133332c3130342c3139382c3233382c362c3234332c3231332c3235342c312c3134302c3137302c3230382c3235332c392c33342c39302c3133362c3137312c3132322c3130352c355d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3137352c3135352c3234332c3234302c3130382c3136332c3232352c3230302c3232372c3131312c3138322c3131342c3230342c39362c32362c3130332c38322c3131362c352c3230322c33392c342c3230312c3230362c31362c3139362c32372c3135372c3235342c35302c32382c3132392c32302c3230382c3131362c3132382c3230372c3135322c3134302c35342c3230322c3132302c3131382c3234332c31302c3135382c3131322c3136302c332c3235352c3137372c36362c35392c3234302c33312c3132362c36332c3132352c33342c32362c3136312c3232362c332c3233322c3130362c3234362c3132342c3134322c302c3235342c3132332c3130322c31322c3130392c3137312c3230302c31332c3231362c3136312c3138342c38332c3131382c3133302c3136352c32352c3233352c3135372c35332c3137302c3137312c3231312c33392c372c3139322c38372c39355d2c22706f70223a5b3137332c302c3139342c34362c3136322c3138322c3233372c3132372c38362c3231362c3230382c3133312c3138302c3233382c3139362c3233362c3138382c39302c3130302c3133352c39382c3131332c3139322c3136322c33322c3134352c3133302c3230302c3135342c3135362c3232352c3137362c3135332c3137322c3131332c3130392c3134372c3235342c38312c3230322c3138332c33332c32322c37372c3138332c31372c3233372c3230312c3136332c3131322c3137312c32362c3132332c31302c3139332c38382c3135392c3133352c3235322c35392c3131382c3234322c3230352c34352c36362c3138322c3134342c3232372c3131392c3233352c3234332c3134382c3139392c3136382c3234372c3138342c3234342c3132302c3135362c3134332c3132332c3130382c3232302c3130362c37362c3137372c39382c3132392c36362c3130332c3136382c35312c3139392c3135352c35342c38325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3233382c3133332c3232392c34302c3231392c32312c38352c3135342c3139352c3131372c31302c3132302c3230332c3130322c38362c3134302c32312c3230342c3231332c3133392c3132342c35362c32382c32342c36362c3138392c3230302c3234342c35362c3133302c39302c3130322c3132372c3232312c36352c35372c39382c3234352c35392c3138362c3233302c33322c37392c302c3233322c37302c39372c33352c3231372c3232392c32302c392c38332c32362c3138372c3132372c3135332c39302c3136332c37362c3131392c3130392c3137332c355d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "514cbc9ef9a90d9e641ac86005517d1d66a6f41baf1066101e6471b0f36473c7", - "certificate_hash": "880a5af6e35156b0c0d14637ddbc6d9962d89dc28abf9bb515a8469ed2670d7f", - "created_at": "2024-09-09T12:59:44.557406440Z", + "hash": "8714894c0f15953192b19af05b9395c00b502ac9fda55de1498156c56027e90e", + "certificate_hash": "a17056bc0845e01638d5152b4e47f46e56d74ff4d150cafe2b7b9d2807396f23", + "created_at": "2024-10-28T13:28:36.680559271Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "54090b48c481828f1e84f0400f7bf96224567fb11c232be30dec56b325cf78a0": { - "epoch": 53, + "a166228421808a8ed8996cadcf3631c0b572357b14a1abc71cc22019a580c96b": { + "epoch": 15, "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3134352c35332c3234332c35362c342c3139352c31332c3233342c3232312c3235342c3235322c3234302c36342c3232352c3133342c3134352c3133322c39362c3135332c3235322c34372c3231332c3138322c34342c33372c3137372c3133392c33332c352c3234342c3130362c33342c3137382c3139352c33302c3232312c3233322c37342c3130312c3135382c3234342c33352c36342c352c31352c3230332c3139382c36352c31312c3231392c36392c3139372c38382c362c39312c37302c3137372c3137392c34322c3134312c3232312c3232342c3232342c3130342c372c39342c3135362c372c35332c3134332c33302c35382c3130312c3231312c3133372c3132322c3231332c3235322c38302c3139312c37322c31302c31322c3230322c3138362c3234302c37362c3138352c33312c392c31322c3132332c3233392c3137392c3233342c3138345d2c22706f70223a5b3134392c3232352c32372c3231322c34392c32312c34332c35372c342c32372c3232342c3232382c33382c3132312c3138342c3135322c3230372c3133362c34372c3133322c3135352c38372c3138322c38372c3134382c3135352c3233342c37302c3231312c33332c3233362c3132302c312c37312c33312c3233322c34392c36392c322c37322c39352c37312c3139342c33342c3139362c38372c39362c36382c3136342c31382c31352c3232332c3138312c3136312c3137382c3134382c34332c3231332c3131392c39392c39362c31302c3233342c3132362c3133392c3139362c322c37372c3139342c38352c3130372c3136302c36322c31302c38312c3130322c3137302c39352c3231372c32302c3138372c31332c372c34332c3138312c37332c38362c3136392c39392c33362c3131362c39332c3232372c39312c3232332c32385d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b36312c3138382c3233322c3130372c3133382c3235312c3134392c3133302c3230312c3233352c3231362c3139382c38312c34322c3231352c3230392c3133332c3139372c3139342c36302c3135392c3130342c3139332c3234352c3134382c34392c3231382c38382c3130362c32302c39322c3131322c3234392c3139332c3139362c3136312c3136302c34312c31372c36392c3135382c3134362c31332c3138312c32342c3234332c3235342c3139362c3134372c3139352c32322c37342c3231392c3230382c34342c3137392c31332c32312c3133372c3136322c3137302c3139302c3131382c355d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3137342c3132312c39382c3138332c3133342c3232302c3139392c3230312c3136362c3136302c3139372c3132372c3233312c3133322c3133352c3139382c3230372c3134332c3137382c3133392c3138352c39352c3232372c35302c3132372c35322c3137312c3139342c37302c3232372c3130342c3131382c3234382c3133372c36302c3133332c34362c39382c3133372c3133342c3139332c3135372c35322c32362c31342c3234302c34362c37392c332c372c3137322c342c3139322c3135312c3131322c3230352c3135332c34352c3232312c3131312c3137382c3134302c33302c3232392c37392c3232372c37322c35332c31392c3233372c3231312c3133332c38392c3233392c3234322c36302c3230352c34302c34342c38302c3133302c36382c3234352c3231382c3231372c34372c39372c3134322c3138392c382c32372c3137362c34312c36382c3131382c3131305d2c22706f70223a5b3138332c33332c3233342c3230332c352c31312c32342c33372c3134342c34392c3132332c3137312c3139362c34352c3136322c3232332c3231322c3131392c3135322c3231342c31312c33342c3130392c35302c35352c3235312c3133332c3233362c3133322c38372c32362c35352c3130372c3231352c34342c3135392c3138332c33362c332c3139392c3132362c3131372c39362c3134342c3132392c3231332c37322c3232322c3133342c35302c3136322c37332c3137332c32352c33312c37392c3136332c3132332c33302c3139362c3138322c32332c3231352c3137322c3139372c3231302c3233312c33302c3133302c3131342c34332c37322c32332c3133352c3132372c3138362c34382c3134332c362c3234382c3134322c3136392c39352c3132352c3131342c33302c34312c31362c35352c3131392c36392c3139322c3232332c3138322c3233302c38315d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138372c302c3135352c3138342c37312c3138392c31332c3234302c35392c34302c3136332c3230382c302c3234332c3232372c3233372c3233382c3235312c31372c3132382c37312c32312c38382c3235312c3136302c36362c38352c3131342c3231332c32362c3234362c3131302c3234312c36392c3130362c32382c3234342c3138392c3134382c3138382c34342c3136322c3234392c3135312c3234352c36372c34362c33352c39372c3231382c3234392c3235302c3138312c36372c3232352c3139322c33302c3135352c3138332c3132342c3138362c35382c34352c31315d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3134392c3130312c34342c39332c34382c3139302c3131312c3137382c3130392c3230372c3131382c3131362c3130332c37332c322c3130312c3138302c3234392c3134302c3137392c34382c3139382c3139392c3134322c37352c3136302c31332c3230312c38382c37312c37332c3138382c33392c372c3231382c3135332c3135332c34322c3132342c35312c3134362c342c34312c38372c36372c3137342c3131352c35302c31362c3136302c37352c3137322c39382c3139392c3133302c32382c3139352c3233392c3233372c3135332c3233352c3230352c39382c38362c38302c36302c35352c3133342c3134342c3134322c3235352c38382c3136372c34312c3132302c3231352c3133352c33352c32372c322c36352c3136332c33302c32332c34342c3136332c34352c3234392c3137362c3231322c3232332c3232342c3232382c3232362c3137362c3132385d2c22706f70223a5b3134312c3136382c3137322c33392c3136302c31302c3138352c33382c3132362c38322c3231342c312c3230312c3231382c3234302c3132342c35342c342c3130372c3130342c3135322c3235302c35332c34352c3138392c322c3234312c3232342c3234392c312c3234322c3130302c3139332c35322c38322c3138392c37342c38372c39362c36392c39372c3233362c37392c38342c34332c3136302c3235332c37372c3132382c3132322c38312c3135352c3136322c3234302c332c332c3235322c31302c3234312c39322c3231322c3232382c302c3138302c34302c37352c3139382c322c3137332c332c3132302c39382c3134302c3130372c34362c37352c3134332c3131302c3135312c3133332c37372c34382c3135372c38332c3235342c34352c3231382c36382c3133392c3230382c3131392c35382c3132322c3135332c3137392c3232325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138332c3232352c3130332c34342c3138362c3137312c3232382c33342c39322c3132332c35372c3130392c38382c3130322c35332c3233322c36312c352c3233332c3230312c31322c3135302c3233332c32342c31392c3234392c32382c37382c37392c3234332c32372c36372c3137392c3130302c342c34342c3231392c3231372c3132342c39392c3231352c3137382c33332c31382c3133332c3136372c352c3130372c36382c3232392c3137382c3132382c38322c37302c3137352c32372c31382c3137332c3235312c3135362c3232332c3131392c3130372c335d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3136322c3136312c35382c3234382c332c3235332c3132352c36342c3136352c36302c3132362c36322c3138392c34392c3134372c3231332c31312c3135322c3139352c3139342c3232392c3131372c37372c37332c3231362c31332c32382c362c3132322c3231322c3137302c3233302c3233392c38382c3132362c36342c34332c34322c3137312c3231342c382c3231382c36302c32352c3132322c3136322c3234352c3135322c32332c3138382c37342c3234322c3232302c31302c3231352c3134392c3136352c3234342c342c3232322c32382c33352c3138362c352c3132332c32332c3130352c3138332c3233382c3132372c33352c3139332c38372c3233312c3234372c38372c3134342c38352c36312c32342c342c3231382c34302c3233392c34362c38302c3131382c3130302c3230362c3137362c3130362c31322c39382c37332c3233392c3138375d2c22706f70223a5b3133302c3135302c3136302c3138312c3138332c3235322c3234392c34392c39392c38322c3136372c3131392c3131382c37362c3130362c39362c3230342c3132302c31332c3131322c3231322c3233392c33342c33362c3232342c3136322c3235342c3138392c3139372c3232322c3136392c39352c3233382c3234332c3132312c37372c35302c32382c37302c38312c3132352c38372c3231302c3135312c3136352c33322c3139362c3133332c3134302c3130322c3134322c3130302c3138352c37302c3235332c37312c39362c3234352c32322c3231322c32312c3230392c36362c3135322c3234362c3234352c382c3136372c3235312c3234302c36362c3137322c37322c39332c3232382c37342c32372c3230332c3233362c3133342c362c32342c3134342c35352c3139332c3138302c3233382c3234392c362c31382c3132322c3234332c3135372c38322c34362c3131395d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b37392c3130382c3130382c3235332c33342c3134302c37312c31302c32342c352c3137382c3234352c3138362c3231312c3133372c37312c35352c31332c3133342c312c3132392c3138382c3234362c3137372c36322c3139352c3133362c36332c39362c3233312c3138312c3130332c3232322c3132382c3232392c3130342c3135312c34382c3139362c362c3132392c3132302c3139372c3234322c33352c37392c3139352c33322c3233332c3234312c38332c332c31342c3135392c38352c3135392c3230372c3137372c3230372c39342c3230372c3133392c3135312c31355d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "54090b48c481828f1e84f0400f7bf96224567fb11c232be30dec56b325cf78a0", - "certificate_hash": "afab288677ce9e8b1a602cb29d62a7d2f982f4d6bdf8d46713c73b98914bb0d5", - "created_at": "2024-09-09T12:59:20.285538052Z", + "hash": "a166228421808a8ed8996cadcf3631c0b572357b14a1abc71cc22019a580c96b", + "certificate_hash": "9866d2d55271b0db4bb316a31d4afe912a1769a25de6bb720f3333ec59a682c1", + "created_at": "2024-10-28T13:28:33.683901133Z", "protocol_parameters": { "k": 75, "m": 105, "phi_f": 0.95 } }, - "5af32d5e6a51aba26937459b608f324f06e9a5f5b1717917480ebceadcc02306": { - "epoch": 60, + "c2bded03ce058bccf7c886fa85dbaad4e9843cfdf78fe1ee3b61c9e394f21d17": { + "epoch": 13, "signers": [ { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3133312c37332c33312c31302c34312c3235352c3234362c34362c3137332c3135382c31352c3136312c34352c3135392c3135392c3231302c37342c3139342c3231352c3136302c39372c3230372c3130322c36302c3135332c3138352c3138382c3231372c36382c3132392c3231352c3235302c3235332c37352c3234322c36352c3132382c34382c3130302c342c3135302c32392c33392c38312c36342c3233352c39312c3138342c31382c37392c3138392c3131352c33342c36382c3134342c3135302c34302c38362c3139362c31342c3136302c38352c37342c3230352c32352c39352c3234362c3234352c3233352c3232352c3132362c3133332c3132392c32342c3138312c39312c3133372c33322c3232322c3235322c3130352c33372c31392c3134342c35362c3136302c3134362c38372c3138302c3133382c3134332c3233392c3235352c37362c3131352c3138325d2c22706f70223a5b3135322c3134392c33302c38332c38362c33392c3132382c36352c3232302c3139362c3232352c37312c35312c31322c3133302c3136302c3133302c32302c3137372c3132342c38372c3134302c3231362c39362c3230352c36392c3133352c3133312c382c3133372c3133332c37312c3232352c36362c3232302c3138322c39352c34302c3130312c3136322c3133302c3234312c3133362c34332c3139332c37302c3231312c3233372c3134322c3136332c3232312c3133332c3234302c3135332c39362c3133342c342c3232372c39352c31322c3130322c3131352c3138392c3230322c3233392c32312c3137382c3138372c37312c3232312c3234332c3232332c3134302c362c34362c33322c35322c322c3134382c3137392c3136382c3133382c36342c3231392c32382c3230342c3139302c39362c38322c38322c3233382c3137362c3234372c322c31312c37395d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3139322c33322c36342c3133352c33342c3232312c33342c3234382c37372c38302c3130332c31372c38372c31342c31372c35372c3230342c3135362c35352c3134332c3131392c37302c3134372c3138372c3138342c37362c382c33302c3234392c33322c3130392c3137302c3136382c3232322c33342c3137302c3232312c3133362c3231372c3231362c32392c3234312c38362c3234372c37352c3235342c3130302c31342c3132312c3231342c3234332c3132342c34352c3235332c3139312c36362c34362c3231392c3235312c3132372c3135392c38302c38332c355d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", + "party_id": "pool1jjrangh9a7xrtpjne7su53unyqwrz2mkghwdy30uzljwkjgfymx", + "verification_key": "7b22766b223a5b3138322c37372c32362c39302c3231302c3233352c3131332c3231352c3138382c33332c35372c3134352c39332c36342c3134392c3135352c3132302c37392c3134352c35342c37392c3230352c39372c3230332c3233372c3133302c3231382c3137382c31302c3134332c3136322c3132392c3136392c3137312c3230362c38352c3235332c34382c36322c38352c39332c39372c3231352c3233392c3135362c3135312c3138332c38332c31392c37382c3234302c33352c3231392c3135322c34352c3134382c3136392c3138382c3133362c3132382c3139362c3234382c392c34322c3138352c35312c31392c38332c3133312c37312c3138382c3131302c35302c3233372c3136312c3232352c3231352c3137352c3234392c33312c3134382c3139362c3132352c3136342c32322c3134362c392c35332c31352c36302c3234392c39302c3130352c342c332c3137325d2c22706f70223a5b3136342c3235332c36372c36332c3130352c32372c3234352c36382c3132382c34302c32392c34382c3131382c36382c35362c3133352c36372c392c322c3135382c3235332c38372c33342c3131322c3130382c3233312c34372c3232332c32392c3233382c38392c36322c352c3231352c3235342c3131392c3137332c35362c3230342c3234342c3136322c38382c33362c31382c3132312c3232362c3233342c39312c3133372c3234392c3132372c3235352c32392c3132332c3135372c3134322c3131372c34322c3230362c37362c352c3133362c3137322c34372c3230352c3138342c3234362c35312c3136332c37322c3139372c3135372c3235302c36362c3233382c34352c34372c3130322c39362c3230322c3231322c372c36302c3132362c3132312c36302c34392c3235352c36392c3133312c35352c36332c35302c3231342c3235352c3135325d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3135382c3234382c3139382c33352c33372c3232302c3139342c31332c35392c3230362c3130342c3133392c38312c34372c31362c3139302c3132312c3139362c3234322c3136312c3235332c37302c3137372c3133372c32322c392c3232342c3134352c3135332c3136322c3234302c3130312c3132302c39322c3138382c3133322c3136342c37352c37302c3233312c3132312c3232322c3134372c3139382c3232342c3231342c3235322c3133372c342c3235302c3137342c37312c39322c352c3134322c3137392c38322c35372c3230382c3136342c33332c3135362c3137332c325d2c226c68735f706b223a5b3133322c3137392c3130332c3230352c3136342c3134302c3132332c3138362c3230382c33322c34332c3135382c32342c39332c3235352c3134382c35392c3137332c39342c3138302c33382c32392c3133362c3131362c3232342c3134312c38332c38372c3232312c37312c3138382c3137385d2c227268735f706b223a5b3132302c35312c37392c35362c3235322c32352c3138372c3134382c3232352c34322c3231302c3139362c3139382c3139382c31382c35322c3137362c39372c3132352c362c3130302c3139372c39382c3137362c3230332c3235302c332c37312c3139362c3136362c32382c3230395d7d2c226c68735f706b223a5b34312c3134392c3133332c32312c37302c34322c3232352c302c3132322c3137352c3230382c37342c36372c3132372c3230302c3133352c3232392c3131372c3134392c3137372c36322c3130392c3131332c31312c37372c3138372c39302c3134392c39312c3132332c3139312c33385d2c227268735f706b223a5b3234382c3134332c3232332c3132342c39302c3138312c3133342c3138352c3231392c37302c3233312c35382c3135362c352c3136372c3235332c3139322c3137362c3133372c3130332c3130342c3133382c3232322c3234382c3139372c3133312c3135342c3131372c3131302c3139392c3232302c39345d7d2c226c68735f706b223a5b3138392c33312c3137322c3137392c3134352c31322c3139332c3134352c3133342c38332c31372c3134322c35372c3135362c37352c3131362c3135312c37332c37342c3234342c3132342c3132372c3234372c37302c3132382c3130352c3133372c342c372c3133392c34362c35395d2c227268735f706b223a5b38332c3136332c32312c34322c3130352c3232312c3132342c3235322c3131352c3133332c3139302c3130382c3133382c35322c3232322c36392c3138312c3130332c3135382c3133342c32332c3130382c3232302c372c35352c3138362c3234362c3138382c37372c3139362c38312c3130315d7d2c226c68735f706b223a5b3230342c36362c3137322c3136312c3233372c37332c3134372c35382c3232342c3135312c35312c39372c34332c3139342c32392c37392c3135382c39382c3133332c3232372c3130322c3138332c3135392c37352c3235312c36302c32372c35302c31302c31392c32362c34395d2c227268735f706b223a5b33302c3134342c3231322c33302c3232392c3132312c39352c3230362c3133362c34382c36372c3130302c3131342c3131392c3233362c3134312c3136362c3232382c39332c33322c35322c39372c38342c35382c3135302c3132382c3234352c36352c32312c3131382c342c33305d7d2c226c68735f706b223a5b3136352c3136392c3135342c31332c3135312c3136342c35392c3232322c39392c37372c3135372c32362c3231382c3136342c3132322c3130382c3130302c3131392c342c3233392c3137322c372c35372c34322c36312c362c3133392c3133302c3135332c3139392c37322c3233355d2c227268735f706b223a5b3138312c31322c3131312c3230352c39362c36302c3134322c31332c3232332c3131332c3134382c3138332c3233322c34352c3235302c3132332c35322c38302c32322c3130302c35302c3139392c37392c3133362c3230302c33332c382c38342c3131312c31312c32342c38315d7d2c226c68735f706b223a5b32312c3136382c3233362c3138332c38392c34382c3133342c37322c39332c33312c3135302c34372c3133332c38352c3232362c3133352c3230352c3231322c38322c3232382c3231382c3235342c35372c3133362c3139372c3232362c3133312c3231342c34322c34392c3130352c3139305d2c227268735f706b223a5b3234302c3132302c332c34342c36372c39332c332c32302c33392c3136392c3234382c3230342c35372c38302c3131322c3132382c35322c31362c3131362c3234352c33312c3135342c3232352c3231382c3130302c3134312c3231342c3132382c3137392c31322c36372c31365d7d", + "operational_certificate": "5b5b5b312c3135312c3139382c3136362c3132342c37352c3230322c3233302c33362c3232302c34362c33302c34372c3139352c32352c3138312c3232342c3134382c3231342c3135382c3134312c38382c3134372c33312c3132382c322c31382c3234302c3139302c3133342c3230312c37305d2c302c302c5b3134312c3136352c33302c3233372c3134382c3135342c3231302c382c39362c3233332c36332c3136362c39322c3139382c3235322c3134332c32352c36332c3137382c3231312c3234312c3230312c3231392c37302c3135302c3130312c3132372c3137362c31322c3132302c32302c3234352c3132352c32352c31392c3234392c39352c35332c35372c32372c32302c33342c34382c3130392c3134332c3130352c36382c3230372c3135362c3132332c3130352c3130342c3231342c3134302c3133312c3139322c3134352c3136372c3130322c31352c38392c3139392c35342c355d5d2c5b3234312c3139302c34332c3230342c3231352c3235352c3138382c3135342c37382c3139362c33382c3132382c3133312c35382c34322c3231312c3133322c3132302c3230382c32302c3136342c3230332c3136302c37342c3234392c3232302c37342c32362c3230372c35392c3231382c3234305d5d", "kes_period": 0, "stake": 13333333334 }, { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3136372c3134372c33302c3235332c3133342c3136332c38382c3134332c3231312c3233342c3136392c3136392c34352c3137332c3134392c31322c3234332c3235312c3132382c3135302c3231342c3137302c3137342c31322c3138312c362c35322c3135332c3131312c39302c3134352c33352c36372c3232342c3135392c3231342c38332c3131372c33332c3230312c3131352c3133382c3131342c3234382c31342c31372c3231382c3230352c31302c3137372c3131372c3231392c34312c3233392c3233332c37332c312c3137332c3235302c3135342c3230302c3133332c35362c3138312c3233302c33382c3235352c3133322c39362c3138332c31302c3130352c332c372c39362c3132392c3137312c3234342c34342c3133352c37332c3130372c37332c3134312c3230342c3133332c3132392c3131312c38302c38342c3132342c3137332c3230372c3233362c3232392c3235335d2c22706f70223a5b3133322c3136312c32362c3230392c32382c3135352c31362c3130342c3132342c32392c36312c3130322c33312c3233352c3231322c36372c3234312c3134372c3232342c3137362c3138302c35312c3138352c3134372c3136392c3139352c35352c3135382c3138322c332c3235352c34382c3133302c3133302c3233382c32362c3137322c35312c35332c3134342c3234312c31382c3231382c39382c3232352c3135342c3132302c3235312c3137382c3130362c3135342c3138352c3139382c33382c35312c33302c372c37382c37332c39362c3137382c39342c3138372c3132382c36312c3230322c3136302c32312c3233372c3130392c33352c372c3137372c33392c37362c3130362c37362c3136372c3135352c3235352c36352c37322c3137362c3230392c37312c332c38382c362c38312c3133312c3132362c3136312c32372c36362c3134362c3133335d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3230382c38332c36312c37302c3138392c34302c3134382c38352c3136312c3130392c3234312c32382c332c3132312c3130302c3136342c3230312c3230362c32392c3234342c3138342c3131372c38372c3130342c3134392c3132382c3230312c3136332c3137392c3231312c33372c3232362c3135362c3230322c37372c31322c33332c3232392c32322c3232342c3230382c33322c31322c34392c3234302c3138352c31382c3235312c35382c3135392c35392c34372c3136302c352c3138332c33362c3130342c3231342c3135352c3137362c3231302c3230312c3131392c305d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", + "party_id": "pool1kr06fpvs20rnlu58u6mt5jwt8t29sdegnerkqr44rlpaql920m8", + "verification_key": "7b22766b223a5b3135302c3136322c36322c3132362c3134362c3134332c34362c3233322c3131352c3137392c31322c3139382c3130302c38352c3233322c3135342c36312c39392c31302c3231382c35322c3130392c34372c3232372c3235312c3134322c3137352c34362c33302c3134362c35302c3137302c3230322c38332c322c3136302c33322c33352c39302c3138392c3137322c3132332c33322c32302c3231392c3230342c382c3133302c31362c3131322c3234392c3138382c31342c3130322c3137312c37332c31342c3234332c3137362c39312c31362c3130302c3130352c34392c3130332c3135312c3131302c392c32372c3231382c3132302c3233382c3130352c3136342c34302c38352c3130312c3230362c39372c3136362c3233362c3131312c3131302c34382c34312c36392c3132382c3132342c3137362c3131392c35332c35382c3135392c33302c3139332c39385d2c22706f70223a5b3134312c37352c35372c3234332c3132382c32392c3135362c31312c3132342c32332c38302c3230382c3132392c33312c37362c3231352c3134352c3134382c3233332c3131362c3231372c32382c3133372c33332c37382c3135382c3136362c33382c3136392c3138362c3135302c3232362c3230322c33382c31342c3133312c3133312c3232312c37342c32382c32302c3136312c3137302c31392c3136372c312c3134332c3134302c3137312c3134382c332c3233362c3130362c3131392c3131322c32342c3133372c39342c3139312c3133372c3131372c34322c3230302c39332c3132352c3231322c3134312c35382c3131382c3133322c3137382c3233342c38332c3135372c3135382c3134302c3134392c3230372c3137352c3136332c3230302c3234392c3232332c35362c3233382c37332c3132382c3134332c3137352c31362c3136312c34322c3136312c3233362c3132382c32375d7d", + "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b31342c37382c31392c3138302c3230342c3232322c3234392c33322c362c34362c37302c37312c3231332c3137332c382c3235352c3233362c3130322c3131332c39322c3233342c3136302c35332c3131332c32392c3231342c3133362c3137392c3138352c3137332c3130352c302c37362c3133362c33372c33352c3136362c3137352c3234372c35362c36322c36332c31312c3234312c3233352c3235312c3235312c3234322c3139332c31362c38372c3234322c38382c37302c32352c3136392c35362c32322c3137312c36382c33382c3133382c3234372c345d2c226c68735f706b223a5b3232322c3136302c34372c3132382c3231392c3230352c3139302c32362c3130392c34332c32372c3235332c3231352c38322c3233312c3232332c3133332c3138392c3130332c3230362c3139372c3135352c3139312c3235322c38342c3137372c3235312c3231372c382c3130382c3132372c37345d2c227268735f706b223a5b3235342c3133352c3230332c3232362c352c352c3230382c3132302c3230392c3234382c3138302c3234302c35372c3230312c3234352c3137382c32352c31372c38312c33392c3232312c32302c3136362c3130322c3133342c31372c32342c3130362c34362c32372c38342c3139385d7d2c226c68735f706b223a5b3133362c3135392c372c3131322c3233332c3137382c38312c36312c32362c31372c3231352c3231302c35392c36312c3234392c35302c322c3137362c3130312c3234362c35302c3135302c3230302c3135302c31302c3232302c3137332c3131352c32332c36382c38312c32355d2c227268735f706b223a5b3231362c3137382c35302c34312c3234362c3230382c3131372c38332c3139332c38302c3131332c3138382c3137352c3232392c32352c3233332c32352c3233352c3135382c3133312c3230322c3230312c3137312c3138382c3235342c37332c3134382c37312c3139322c3133332c39342c3137315d7d2c226c68735f706b223a5b36342c34342c35342c37342c3232302c3132342c3134372c3139322c34332c3233332c3133322c32352c39322c35342c3235312c39312c3133382c3232362c3231332c31332c36332c33302c37302c35302c33322c3231382c3130362c32392c3137352c31342c3132312c37395d2c227268735f706b223a5b332c3134322c3137342c3234332c34332c3132382c3233352c332c34372c3135332c31322c3137382c3235302c3234332c3133392c3135362c32322c32362c3233332c3130332c3231372c38392c37322c38372c37302c362c34302c34312c3132332c3136382c33302c3135335d7d2c226c68735f706b223a5b372c3231302c3135352c38382c38352c32362c35342c3230312c3139382c39332c3136312c3234392c3134312c3139372c3135372c3232382c3131362c3138382c3135302c33362c35312c3130302c33352c35342c39362c31382c3230302c3136332c35332c3234372c3136392c3133375d2c227268735f706b223a5b3137382c35392c38322c3134382c39352c3230392c37372c36392c3130322c3135362c3132352c31352c36312c3235352c35322c3134382c3130362c3231392c3235332c3130342c3138392c3232312c39312c34372c35342c3234312c3139342c3135382c39382c3230382c34332c3137315d7d2c226c68735f706b223a5b3133342c3139392c3135382c3138392c36302c362c3136362c3234382c35372c352c3139302c3138312c3132302c39312c39312c3138342c36312c33332c3230392c322c3136352c32352c3234312c38382c3231372c3234382c3131302c3235332c33372c3230342c33342c3130375d2c227268735f706b223a5b3230352c39312c3231332c3138392c3138332c38362c34302c3139352c3137392c37332c3139342c3232372c37362c31392c3232312c3234312c3134322c3132362c3132382c34342c3137332c3132322c392c3137322c3139362c3230332c31382c39302c35362c3136382c39322c3230335d7d2c226c68735f706b223a5b3133382c38322c35352c3234382c36322c3133372c39362c3130362c36372c3131392c3138352c34372c3136382c3132302c3231342c3136392c39382c3234312c3132312c3134352c37392c39322c3135382c37342c3134312c352c322c3231362c3135302c35392c38382c35315d2c227268735f706b223a5b36362c3230302c3130372c3134382c3231362c3136342c3138302c3230372c3231362c3139342c37382c3138352c3138322c3131382c38302c3234342c38302c32362c39392c3134372c3138322c3234362c3232352c3234352c3137382c35322c3139322c3130342c3138382c3138352c35382c37395d7d", + "operational_certificate": "5b5b5b36322c31392c38322c35372c3235342c3139352c322c3135352c3231332c3234372c3137322c38352c3233342c3132392c3231372c3135332c3138392c3133312c3230312c3134302c36362c3132332c3135312c37342c36302c3136322c3138312c3130352c3230312c36392c3137392c36335d2c302c302c5b3137372c39342c3136342c35392c3231352c39312c3232302c3131352c3230332c3133352c35322c3138322c3134342c3134372c31342c3132352c38382c3135332c3138342c34332c3232332c32342c3130302c39392c3138322c36352c3132382c3233362c3132332c39362c3231342c3132342c3233352c37322c32362c3232302c31382c3135382c34362c39352c3131322c36372c3139322c32382c3139362c36392c3138372c3235332c3233382c32352c3233392c39332c32362c36312c3133332c3131382c3139372c3233342c31302c3230372c3135342c302c3133302c385d5d2c5b3133362c35372c3138372c39342c392c3234392c3231312c3233302c33362c3135372c3232372c34392c332c3132372c3138342c3138382c352c3230362c3233342c33352c3132312c32352c3137312c33392c3139392c39382c3234362c3131392c342c3235322c35382c35365d5d", "kes_period": 0, "stake": 13333333334 } ], - "hash": "5af32d5e6a51aba26937459b608f324f06e9a5f5b1717917480ebceadcc02306", - "certificate_hash": "5d3cacb6a8ca5c3a8240a1f7e9ca61a3742852729df181ebfdbbf1f34dc037f9", - "created_at": "2024-09-09T12:59:39.699484120Z", - "protocol_parameters": { - "k": 75, - "m": 105, - "phi_f": 0.95 - } - }, - "63b7b76db611d80e986c1e438f60e09a40347fec000afabc7178181c451eaf43": { - "epoch": 44, - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3134372c31322c39332c3233352c35362c3136302c3130342c38392c37332c3136342c3231372c362c3234362c37382c35302c3133332c38372c31332c3230362c3130362c31322c3132312c37372c3230322c38362c32342c39342c39302c36342c34332c3231342c3134302c35372c37342c36322c31312c3138322c3233362c3136392c3230332c3136332c39312c3230322c33322c32312c36392c3230312c3138352c31352c33352c362c31382c3135332c31372c33372c3139302c3130322c3232352c3235332c3133332c3132392c33322c35342c37332c35342c3232312c32392c39312c372c3137312c3137342c3230302c3130312c38312c34322c352c32392c3134382c3130312c3134372c3233362c3137342c3139392c3139362c3233332c3137342c3232302c3139342c3132352c31362c3235322c35352c34322c3233342c35342c315d2c22706f70223a5b3136322c3133332c31332c3130382c3133322c3135342c3230332c3133332c38382c3232392c3135332c3231302c37332c33382c322c3231382c3136302c32342c38352c3234392c3230372c332c3139382c3230352c3231382c34382c3133392c3230382c3135312c3231332c31362c3231332c31352c3231392c38362c3133332c3232362c38382c34382c37392c3231332c3235312c33392c3230322c3138382c35312c3138342c33312c3133392c3134302c3130302c3135332c32302c3133352c36332c39312c32382c3131372c3233362c3138362c3134362c3232342c36322c3134362c3231302c3235342c3136302c38382c36362c372c3135332c37332c3234332c3230312c3230372c35382c3235322c3130322c3134332c3232362c3231362c3137362c3232342c37322c3230352c39382c3136312c3131302c3130322c3138392c3233312c3233362c3131392c34342c3231362c35315d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3230382c37322c38352c3231392c3136332c3130382c3234362c39392c3230362c36302c3139322c3235342c3235312c32392c3136322c362c35312c35322c302c3131322c3139302c3234392c3230392c3231372c32372c3136342c3137392c3139312c3133382c3134312c3136302c39392c3232362c3138352c3234322c3134362c3138342c3231362c36362c3231342c37362c3137372c3234302c3232382c3230382c36322c3231392c38332c3130352c32312c3130342c3231342c3230362c3137332c32302c3135392c3139352c3136332c3134322c3233322c38392c382c322c31305d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", - "kes_period": 0, - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3135322c3231352c3231302c3231382c3136312c37302c3136352c3132352c3136382c3234342c3134322c3137382c3133302c3134382c3132302c36382c3230352c3230382c3234302c3134312c3232362c3132372c3231342c3130342c3133302c3230332c39382c3230332c33352c3132312c31392c31342c3138352c3232332c37312c3135302c3131392c39352c3135342c39382c3137392c3130362c3233332c36332c39372c3133302c38302c3130362c352c3233382c31342c36312c36362c32302c3139302c37352c3234312c3133302c38322c3136362c3133302c312c3135302c3230342c35332c35332c3135332c3137372c33312c31342c34332c3130362c3235332c392c3130372c3138352c3136352c3231332c3139382c33322c3233372c3232342c35392c34302c3134392c38342c3230312c3131342c3132392c3234392c32372c36362c34372c3131332c3235352c3233355d2c22706f70223a5b3134342c3137312c37352c31362c38382c3135382c33372c3131342c3235332c35362c3133312c37332c35332c3231312c37362c32362c31322c3233382c3230302c3130352c3134342c3139392c3232332c3133352c34342c3234392c3130302c39352c3230332c3137342c33392c35342c35372c332c3138312c362c3231332c38322c3139382c3233332c3134312c3130302c3136372c31322c31302c3139352c3131382c3135382c3134302c3135352c32362c3133302c3132352c3231302c36372c39362c3131382c3134322c3230372c3133332c3131352c3137302c3139392c39312c3234302c38322c3137372c32372c34392c3136332c3132302c35332c38312c3138312c3133392c3136312c38312c3233372c312c31392c3139352c3138392c3233352c3136342c32362c3137332c3135332c352c3135342c3233332c3133362c3230302c3232322c3234392c3232332c3139355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b33322c3137352c342c312c32312c3137382c3231342c3130372c37392c33352c3232322c3133322c3231342c39352c3230362c3233342c34342c3139342c34362c3232352c3132382c3139372c3139382c3139332c3231332c3232392c33342c36302c33382c3136332c34352c3235312c342c3138342c3133302c34342c3234342c3132352c3134362c3133392c3138302c3139342c3137342c31312c34382c3233372c39342c3130322c36312c3135302c31332c3138372c3135322c3230382c3130312c3138382c39332c3135332c3234322c3234332c34392c3234302c392c31325d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", - "kes_period": 0, - "stake": 13333333334 - } - ], - "hash": "63b7b76db611d80e986c1e438f60e09a40347fec000afabc7178181c451eaf43", - "certificate_hash": "e3ce08241f6bb0adaafb7e6c3b161c244b19006ededdf76f21af5561d5f73c75", - "created_at": "2024-09-09T12:58:55.047708346Z", - "protocol_parameters": { - "k": 75, - "m": 105, - "phi_f": 0.95 - } - }, - "7222fe6cbaae33109724c88e5659d8a2d2e1546386e760083089d0c1a1405d98": { - "epoch": 52, - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3134342c3234342c3233362c3230332c3130372c31362c3136312c36392c3131302c3230362c3137322c36322c342c31352c31392c3235332c33342c35312c3235322c39342c3138352c31392c3138352c3231372c3233322c3131372c3230342c3232302c36352c3233362c3134352c3234342c33362c3234392c3234312c34342c3138372c3133342c32312c3139372c33322c3234362c3230352c34332c36332c36372c3231322c3133352c31312c3134342c3235322c39342c39392c3139362c3230372c3135392c3137382c3132392c3138392c3130382c39302c302c3131322c342c3235302c3137362c3230312c39342c3233382c3230392c3138322c3230312c3233352c3130362c35312c362c3133372c39382c3136392c38322c3134342c34372c3130332c37312c3131312c35372c3134332c3139322c3231392c3136392c39312c3132362c3133392c3130362c36392c3233345d2c22706f70223a5b3137372c3139352c3132382c3130362c38312c3134382c3132382c39342c33322c37372c32342c3234352c33342c36352c37312c35372c3235352c32362c3231352c3230322c3234342c37332c3232322c3133332c3135322c34372c3139332c35362c37362c31382c3132352c33332c3132312c3133342c3136362c3234312c3132372c3133362c3138372c3233362c342c3232302c32372c34342c3235322c3135322c3234332c35342c3133302c3133352c35322c3133362c3234342c34302c38332c3231352c3137392c3137302c39312c3231322c3137352c3232302c3133352c3135392c32372c38362c3230372c3131322c3130352c3136342c34342c3234312c33382c3139372c3137392c3133342c39372c3231362c3139302c34332c3231302c36342c3138322c3234362c35322c3230342c35372c3131382c3234392c3138322c3235302c3231352c35362c38352c3231362c3138365d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3131312c372c31342c3135342c36352c3138342c3232302c3136362c3231362c38302c3139392c3131372c33382c3137312c3134382c3231322c3132332c39342c3137312c3133382c3231392c3234312c36352c3133342c3230362c34362c35352c36372c3138302c3233392c33392c3230302c3233372c3136322c322c3230392c342c3233372c3137362c3138332c3139372c31352c3232372c3132302c3232312c34342c36322c3232302c3233332c31362c38342c35312c3230362c3138352c3232362c37382c392c3233392c3139342c33322c37332c3133362c3230352c365d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", - "kes_period": 0, - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3137372c3135312c3133332c3135352c3230372c3235312c3135382c34342c3234372c3134372c3139312c3233382c3134312c3230302c37312c39342c34372c38362c39312c39352c3232302c32322c36312c3232312c31392c3139392c34392c3231372c3137382c3133332c3132322c3135362c35322c35342c3230392c3138372c3137372c3136322c3131342c3135302c382c39332c31382c35392c3138342c3230352c37372c37372c342c3132312c31342c3230302c3234372c3134322c362c3137332c3134302c36332c3133382c3133382c37352c3230372c3232362c3131392c3231372c3233352c362c32392c37322c31392c3133352c3136362c332c38302c3133342c3234332c3136342c35392c362c3234312c3231382c3131392c3139372c3135392c3139342c3132302c3231332c3136352c3135312c3133362c3135332c33372c3234382c34312c3133332c315d2c22706f70223a5b3134342c3132352c3231372c3130362c32342c3131312c3234312c3235312c3131342c3134382c3132392c3131312c3137372c34322c3230372c38392c34332c3138332c3137372c36372c37312c3230352c32312c34312c3133322c3133352c3137342c36392c3136302c3136302c38332c3230302c36362c3139322c3139352c32372c3230382c3130302c35342c38302c3232302c3132362c31332c31342c36312c33322c3132312c3136352c3136352c3132332c3132392c3137302c39342c3138322c3138312c3232392c35322c3132352c3234342c3230322c31362c3131362c3138362c36362c3132312c38372c34302c3131372c3131352c3231382c3139362c37362c37342c31342c322c3233302c3231322c3132382c3138322c3136392c332c3133342c3232352c3230372c3233312c3232372c3135362c3135302c352c3138392c3232332c3136382c3132392c3132362c3130322c3231365d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3138312c3134342c34362c3234312c39392c3133392c3138372c3230332c3230352c3134342c3133312c33322c3133322c3138362c3133362c31352c39332c3231332c31302c3136332c3138382c38382c33392c3135302c33302c32332c39372c32352c33382c3132332c37342c3230332c3230352c36342c3234332c3134302c3133392c31302c34372c3133302c382c32382c39302c3131372c3139302c3137332c38312c38392c3230362c382c36352c39352c36382c3133342c31372c3138352c3138312c3135302c3138362c31302c34392c34362c3232352c325d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", - "kes_period": 0, - "stake": 13333333334 - } - ], - "hash": "7222fe6cbaae33109724c88e5659d8a2d2e1546386e760083089d0c1a1405d98", - "certificate_hash": "c2c2998ff867282280368b2edc03a06c9ba0c85044efc1dd5c2c3463f5b95d5f", - "created_at": "2024-09-09T12:59:18.124838302Z", - "protocol_parameters": { - "k": 75, - "m": 105, - "phi_f": 0.95 - } - }, - "83eb062b476e53103a90ffd2280e3b6ba5186cb5bfeb0e9817ec56be3e45d308": { - "epoch": 58, - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3138312c3231302c32372c37302c32352c35322c3136362c38302c3137362c3233392c3134372c3231392c3234352c3231332c3135372c3130302c34342c3230322c3132302c38302c3133322c3134312c39342c3133332c3232362c34392c3139392c3130392c31382c3133382c3235322c39352c3233312c3131322c3132362c3134322c3230312c3131392c3139322c3137362c38302c3135322c35302c3231332c3139362c35342c3231362c3231342c31302c32352c38392c33342c3133312c3133342c3134352c38332c3137372c3138312c3135332c39302c362c3135372c3231332c3234352c33342c3139382c36332c3230342c3137382c3233352c31332c3132352c3133392c35382c3233342c3231302c3132372c32392c32332c31362c34312c36362c3232382c3137302c3234322c34342c32372c3136352c36392c3135372c3233362c33342c3133342c35392c3134382c3134335d2c22706f70223a5b3134342c3233302c35302c39382c3230342c3138382c36302c33322c35302c3136372c3134362c3131372c3232302c3136302c36312c3131382c3138382c36342c3136372c36332c3132312c33312c3135392c3134362c35302c39352c3138332c312c3232332c3137362c34312c3233322c3136332c39312c3231362c33302c3133332c3234372c3135362c33342c3230352c3231322c3136322c3230322c3136392c36362c37392c3134352c3135322c3134342c3233322c3136392c3133372c3134342c312c3138372c3136392c3138342c3132362c3131342c3131332c3137362c31342c3232302c3131372c3138302c3137332c3230352c34392c33302c3136302c39342c36352c3132322c3133322c3232372c3137352c3137342c3139382c36312c3235302c3131382c33332c3136302c3137302c38362c3136332c36312c32352c3134342c3133302c3230322c3130352c35362c38342c3131355d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b35352c3230312c32372c31312c3135362c3130322c31322c3234302c32312c32382c34322c3139372c3136362c31332c3235342c38302c33352c3233312c3136322c332c3231322c3130362c3232392c3134362c3139362c31322c39392c3132382c3136362c3234322c3231372c39382c3131322c3232362c32382c3230382c3230312c3135362c36322c3230392c31332c3235332c36342c33302c3139362c3133362c3232312c312c3132332c36352c32302c33342c35352c3134302c3137372c37332c3138372c3232302c3133312c3136312c3139392c3233342c3235332c345d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", - "kes_period": 0, - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3136392c3134322c34392c39312c3133332c3234302c3130312c39322c3233352c3232312c3134382c31372c33302c35342c3130392c33302c3132352c35352c38312c3233382c3234302c3230392c3132322c37302c32372c3230372c3134352c3234332c3231392c3132322c3230322c39312c37392c3139302c3231342c3233322c3136322c3232352c372c36352c3138312c3234302c33382c3133372c37392c37392c35352c37352c31382c38332c3137392c38332c3131312c3234332c302c33342c3135322c3139332c3136312c3131392c372c3138352c322c36382c3139332c3131382c362c37392c36352c35342c31312c3234322c31302c3235302c3138312c38312c3137372c3230322c3139342c38382c31302c3133382c36392c36312c3135392c3137332c3139392c3132342c35382c302c3234332c3135372c35342c37312c3139312c35315d2c22706f70223a5b3134392c31372c32342c32302c35332c34342c3132382c36322c31312c3130332c39302c39332c38392c35392c3131382c3139322c3138322c3130322c3137362c3135382c3231382c3235342c31312c31312c31302c3135362c3230312c3137362c3132332c38342c3231302c32352c3131362c3135382c36372c32312c3230342c3232382c3231302c3235302c36392c3135312c36342c3233392c3234342c37382c3130302c3139342c3134312c39372c37372c39352c3232382c3233312c37372c35342c32322c33382c3133382c38372c3137312c3232332c36352c3233382c3231332c3136312c37362c312c38312c33302c31372c3232362c3139312c33382c3132392c34352c3131322c3135302c3232352c3135362c3231332c3133312c33332c34362c39362c33352c3136322c3234372c3232372c3138362c3130342c31362c33302c3134362c3233382c3136325d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b36302c372c3137332c3231332c3132312c35312c3231382c39342c32362c3133392c34352c3231382c382c3235312c34312c3138392c3138342c36372c31312c3232342c3133322c35362c37392c37392c3234342c3234302c3134332c3234372c3134302c3137342c3132372c3134342c31372c3230372c322c3132362c34392c3139392c3132312c33392c36342c3139362c3230312c33392c31342c38372c3130382c3130322c3137352c32352c302c3139352c3138362c38322c3137352c36372c3234362c39322c35392c38362c3139392c3234312c322c31335d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", - "kes_period": 0, - "stake": 13333333334 - } - ], - "hash": "83eb062b476e53103a90ffd2280e3b6ba5186cb5bfeb0e9817ec56be3e45d308", - "certificate_hash": "203efbdc15a9d0b18918dd23be85c5a43da32e9e666752adb88e59ce4c6d9cac", - "created_at": "2024-09-09T12:59:34.457723440Z", - "protocol_parameters": { - "k": 75, - "m": 105, - "phi_f": 0.95 - } - }, - "88c64139d188a2c257637a53e7e81583d7d7ed96d5954ea6bb55c54a59da1b9b": { - "epoch": 59, - "signers": [ - { - "party_id": "pool1908jm7qy5a80tmzm03sgpe6qju4tt8nqpad20wstphwg7hnul5k", - "verification_key": "7b22766b223a5b3136322c3139322c3130322c3232352c3133312c3231352c3136382c3234342c3232362c3231382c3130302c31332c37312c39362c39382c3130342c3233382c38392c35382c3132332c3130352c31322c382c3136342c3138382c3136342c312c3233352c34382c3138362c31322c3233372c34382c3139322c3139362c34392c35312c3134322c362c35362c3131302c3231362c3232322c3132352c33382c39302c37372c3231312c31372c3134392c322c3132382c3231382c32322c3131352c37302c34352c36342c3138312c3135382c32372c3131352c3131362c3136302c3134332c3132322c3232312c37302c3133382c3232332c3132352c36392c3133362c36312c3232392c31362c35302c34302c3138312c3132382c39372c3130332c39362c3232322c3138322c3132342c3230372c3230302c3138352c32362c3234372c3136352c3231372c35322c39392c3130325d2c22706f70223a5b3136302c31312c3130352c39352c3130352c3136322c3235302c3235312c3232392c39322c3137342c3134392c31322c3135372c362c3131302c3232392c34322c3233302c3233362c36392c3232302c3133332c3133342c3135392c38312c3131362c31392c3232372c3232342c3136372c3233372c3233372c3137362c3133312c3235352c3235332c3136352c3138312c3230352c34302c3230392c3131382c3139322c3139312c3130392c33372c3138312c3133322c3133322c35362c352c3133342c3135352c352c3134312c3138302c31372c3230332c3234302c3136362c3136332c3134352c3231332c3232322c34362c3130352c3130312c3137332c3234382c3133332c3232392c3233362c3134332c3136352c3131382c37392c3138392c3132382c34322c3231322c33302c3131362c3136392c35302c31302c38312c31382c3138342c33392c3130332c3134382c3233332c37322c3233392c39305d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b39382c3138302c32392c3232342c3133342c38362c3138392c3139352c38382c3134362c33392c34312c3136302c39362c3235332c3131322c392c3235332c34302c33352c35312c3235342c3130302c3231362c3139312c33312c3231342c3132302c3134322c3232392c3133362c3134372c32352c3137352c39332c32312c3138332c37382c3231312c3230302c3139362c32372c33332c3135322c3131332c3131302c352c3136372c3233312c3134382c3130302c3131362c3132392c3130362c3131352c3130352c3134372c3138332c3133302c37302c3132392c32322c3133312c305d2c226c68735f706b223a5b3135302c3134322c3231342c3231392c3230372c31312c32332c322c3232342c3232312c392c32382c3138362c37332c37382c312c3231322c39352c35352c39372c32362c3231302c3136342c34322c3131302c3136382c312c32382c37382c3131302c3133392c38385d2c227268735f706b223a5b3135302c3234362c3133302c3130362c3138392c36352c31352c37342c3234372c3137362c3133392c3230382c3235352c39372c3132352c3136312c3137382c36382c3234312c3139342c3131392c3136312c3139332c3135362c3132382c36302c3134362c32312c3139392c37342c3136322c34355d7d2c226c68735f706b223a5b3134362c3230342c3137332c3233382c31372c3139372c3230372c3135382c37312c33332c3136302c38322c37392c3131312c3235322c3233372c3131312c3134342c3233372c3233362c32332c302c33392c3137352c3137392c39332c3134322c39372c3131372c36332c3231302c3133345d2c227268735f706b223a5b3234332c3136392c3231392c3139382c36352c37392c3234372c39372c3230342c35322c3130342c33332c3235312c33372c32332c3133312c3130332c3230362c3230312c3133352c37342c31352c39382c32342c3138382c3230362c3137332c3233362c3135392c3235322c3138362c3132335d7d2c226c68735f706b223a5b31382c3232382c3131332c3136362c3131342c31392c3133342c36322c3231352c3230382c37332c3136322c3131372c35352c3139312c3139332c31332c3132342c38322c3231322c3133392c3235302c35302c39382c34322c3231382c39382c302c3231392c3134342c36332c36375d2c227268735f706b223a5b3232322c31342c3233322c35362c35392c38302c3135352c3132352c3231332c39382c3232352c3130332c3134362c3230312c31392c3233312c3130372c3231372c34382c3134362c3132352c3130382c31332c33302c3231342c32322c3130312c32302c3232312c3138372c31352c36385d7d2c226c68735f706b223a5b3136342c33352c32392c3136362c32302c31362c3232382c3135332c3131312c3234342c3233372c3139342c3136352c3234312c3132302c3233372c3138342c3234372c3232322c33302c32302c3138362c3133302c39392c3130342c3234302c36382c36382c3138342c3133332c3133352c36335d2c227268735f706b223a5b38332c3130362c3232342c3135332c35312c3136352c3233382c3132312c3130362c3138362c36362c3133352c3231302c3131352c332c3233352c3139322c3133362c3234362c3231302c36342c35372c3234332c3233382c3139372c3138342c3130332c3136362c3130322c36362c37392c3135325d7d2c226c68735f706b223a5b3133302c39312c3131332c3131342c32392c3233382c3130312c37362c3233352c3136382c3233362c3232342c37342c3230382c34302c3138362c38332c33322c3134332c36332c3132372c3136332c3233332c3131382c3139302c35312c3137362c3133332c3231372c37312c3130372c3234385d2c227268735f706b223a5b37332c3131332c3230372c3231322c3135302c39352c3132382c3132302c37392c3139302c3131322c3231342c3135362c3232392c3137322c3133332c3132322c3139312c36352c3131362c3133372c3133302c3133362c3136332c39302c3139332c3136372c3233352c3131342c3233352c3136312c3134395d7d2c226c68735f706b223a5b33302c3232362c3137352c3133302c3136352c31342c372c3132382c322c31302c33302c3232302c3133302c3138382c3231362c3130392c3132372c3234352c33362c3234302c3139382c3137382c352c36322c37352c32302c38332c39322c3230382c3137302c34352c36325d2c227268735f706b223a5b39322c32332c38312c3131302c342c3135332c3231362c3233342c3136352c3135372c39312c3235322c33372c3132352c38392c3139372c3134382c3131392c3131312c3234382c3233332c38372c36352c312c36382c3232312c3230372c3231332c3231382c38352c3231332c3139375d7d", - "operational_certificate": "5b5b5b39382c3234322c3232362c37352c3133312c3230342c352c39372c3135362c3135392c3235302c3139322c3233382c3230392c3235302c3138362c3233362c3234372c3138392c372c34362c37312c3232372c3138382c3231362c32322c312c3233342c3234362c3137372c3135332c38355d2c302c302c5b3231372c3133322c33322c3138372c322c35332c3132322c3231362c3234342c3132332c3139352c38372c3133372c35362c3135302c3234362c3234372c3132332c3138322c3134362c33332c3131372c3131312c372c32352c38332c3234332c3230392c3133372c34362c31372c32332c3136302c3131392c3136352c36322c3232372c3133322c3137382c31382c35322c3135302c34342c33372c37392c322c36332c382c3235322c3138342c3232342c32362c38362c3232362c3131362c3139392c31302c3133322c39312c31342c3131302c3132372c3131332c355d5d2c5b3136312c39372c34332c3233322c3131302c3235332c3135302c39392c32322c35382c35332c3135362c39332c3138372c3133322c3132322c38392c3131322c36362c3233342c32322c3139352c3132302c3134302c392c3230352c39372c3135392c33382c3136342c3139362c3138325d5d", - "kes_period": 0, - "stake": 13333333334 - }, - { - "party_id": "pool1sklnz86g43h2w44dftqaq60zj2d9y5a6vyhzxfmqdpsd50rgch6", - "verification_key": "7b22766b223a5b3136342c3230372c332c34332c33322c3232332c3130372c3232382c36382c352c3230342c3130362c35302c3234322c3131312c32362c34312c3135332c35352c3139352c3134332c3132392c32302c3139372c3133312c32392c33312c3137342c3230362c3133382c3135342c3130392c3139362c3233312c37322c3132372c332c33322c36322c34372c3130342c322c3234392c33322c3234392c3232312c3138322c33362c322c3134332c3234312c36332c3136312c3137342c3133312c32362c3234342c3136382c322c3232372c3135352c3231392c35342c37362c3232352c312c3135372c39352c39312c3131362c3135392c3230302c3131382c3131332c31312c37312c33372c3231322c3233312c3232352c3230322c3136342c39302c322c34362c332c35322c32322c3233352c32322c3133332c38342c342c3133302c3139312c3139305d2c22706f70223a5b3136312c3130302c3132372c39352c34362c31382c35342c3133382c37392c3136332c34352c38382c39302c3230302c38352c3133362c3134352c3230352c3135312c3231382c3139322c3136302c3135312c3132312c3138342c3137392c36392c34372c3134332c3230322c3133302c3131362c36302c3134322c3138332c34382c3132302c3135352c35302c38392c3135382c3139302c3138382c3133362c3136352c3231372c3233382c3138382c3136372c3137392c3138342c3132352c35322c3231342c3130392c3133322c36382c32332c3233342c3132332c39372c3133372c3231342c38352c39332c39312c362c3137372c3233312c33322c3133392c38392c32392c3139322c3232392c3134392c3134372c3231352c3130392c35372c33362c32392c3135302c32352c3138332c3132302c3132322c3139352c3135302c3137332c3231322c362c38322c3135322c3230372c3232305d7d", - "verification_key_signature": "7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a7b227369676d61223a5b3133392c32332c3130362c3132322c3130332c37302c3233382c3138382c34372c32362c37392c3131362c31392c3137372c3234372c33312c3131302c3230332c37362c33342c3133342c3130382c35302c3230322c35352c35362c3136352c3230312c3135372c3139382c3234372c32362c3135332c33352c3130382c3135362c3233312c34342c34302c322c3231372c33352c37302c3135312c3131362c3232362c34332c3131362c3138302c31362c3231302c34342c3139392c3131392c3231342c3130372c32322c33372c3134322c3232372c3235302c3135382c3135342c31335d2c226c68735f706b223a5b36342c3138312c3232372c3130332c35302c3132362c39312c31362c3139372c3234352c322c352c3131362c3139352c3130392c352c34322c35352c35322c3233382c392c38322c3132302c3132382c3132382c38362c3135372c3136312c3135352c3231302c3232342c3131365d2c227268735f706b223a5b3234332c3133332c3135372c3132342c3136342c36352c39362c312c3136392c3233312c3139312c3139352c33392c3139392c3232332c3130302c37352c3135322c3138352c3230382c3232312c3138302c31352c35312c37302c39302c35322c31362c39352c3132332c3134332c37315d7d2c226c68735f706b223a5b3130342c3232342c3232342c3133362c3235342c3137302c33382c3233382c3235312c3136342c3136392c3131302c3231362c39322c3138362c3137332c3134352c3132342c3230342c3233342c3136322c3135392c3137372c32322c3134312c3231382c302c3139332c3133392c372c3130342c3133315d2c227268735f706b223a5b3133392c3232372c3130332c38362c37302c3139392c3133302c3131332c31322c3133312c39362c32342c3136362c38332c3137352c3138342c3235342c36312c3136392c3130332c34332c3234342c3137322c3233332c31372c34332c3232332c3230372c3138342c352c39312c3130395d7d2c226c68735f706b223a5b3233322c35342c36322c3233392c3234372c3234382c352c3231302c39372c3136362c3139362c3235322c322c3134382c3136332c3230322c3136352c3233342c33322c3230362c3139332c36372c3134392c34312c3132332c3233392c3232352c3133342c3231322c31342c3137342c3137365d2c227268735f706b223a5b3132302c36372c3136372c3138392c3136392c32322c35332c352c3133342c38342c32362c3235322c3234332c39382c3232382c38332c3131312c3139362c3231302c3230332c3135332c39392c38302c3136302c3136372c38332c3139352c39342c36302c3131352c31342c3230345d7d2c226c68735f706b223a5b31322c3132372c3135372c36302c3139342c3232382c3133382c32332c3230312c33392c3135312c3131382c3131342c3138382c3137362c31392c3132322c3133322c3132332c3133352c3133352c35362c3135382c372c38392c3233382c3132342c3131352c3234352c35362c36302c3134305d2c227268735f706b223a5b312c332c3134382c3130352c342c37372c39382c3233302c3233352c3137302c3230312c35362c32302c36342c3134382c35342c3137322c38372c3234312c31352c3132372c3137322c35332c3233302c35322c36372c32372c33332c3139312c3133352c37392c3231385d7d2c226c68735f706b223a5b3230362c3134342c3139352c38302c38322c3134332c3231342c3137352c3235302c3136382c3234372c35382c32392c3232382c3138342c3231312c3131382c39392c3133382c3134332c37362c34322c3130382c35362c35342c3137382c3132362c35322c37342c3133302c39322c3136315d2c227268735f706b223a5b3131302c35332c312c3132362c3139362c3135342c32372c35342c32302c3234342c35322c3133362c3233392c37332c3235332c3231302c37332c38342c39382c37302c35332c34392c3137372c3233382c3235352c3234382c3132302c362c372c39332c3233372c3138325d7d2c226c68735f706b223a5b36342c3134392c3232322c3137372c3138302c37332c3231362c36332c3131342c33372c3137362c332c37372c3133352c3139352c3137372c3232302c3234392c3130332c322c3138382c3136332c3133302c36352c32312c32392c34342c35382c3234312c3137392c3133342c3138395d2c227268735f706b223a5b3132342c3139382c3133362c33352c3135392c3137302c3234352c33352c3132362c3139392c3134392c3235322c3138332c3132382c332c3233362c3134382c33342c3135332c3134372c3234332c3138392c3130312c38302c3137392c33302c38392c3131302c39392c36332c3132382c38315d7d", - "operational_certificate": "5b5b5b3138352c31352c39302c3232342c3138332c35342c3137352c3131352c3136372c3234392c3137392c3231312c37372c3230312c352c35392c3132352c35302c3135332c38392c3134372c32312c35352c3131312c3139312c3233352c39392c32342c36382c3134342c38302c3233325d2c302c302c5b372c3139372c3138362c3131362c34362c3136312c3234382c3137352c38352c3134312c3138302c3135302c3134312c3235352c38342c3130342c3230342c38332c3233322c3233312c3130302c3132342c3233372c37312c33342c3135362c3233312c3230362c39372c3137312c32352c3135332c3137352c3231342c3230342c3131312c3234312c31332c3137302c35302c3134352c3232392c3231312c31312c3132342c3133352c3131372c3231342c3132372c3231342c35312c3139372c34302c3232382c3135342c36302c31362c37382c3232332c3136332c35352c3139332c33322c31355d5d2c5b32352c3135332c37322c392c3136372c33382c3135332c3230312c3231342c3134302c3133362c3231302c302c3233312c312c31302c37332c3137352c322c3231332c37372c3232352c37382c32302c39302c3133392c3132362c312c3137312c3130372c3139372c33375d5d", - "kes_period": 0, - "stake": 13333333334 - } - ], - "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", + "hash": "c2bded03ce058bccf7c886fa85dbaad4e9843cfdf78fe1ee3b61c9e394f21d17", + "certificate_hash": "3bb83a95eee930e17deb07f1e83b146125cd13c0ade99ef6dc7d764bda428e08", + "created_at": "2024-10-28T13:28:27.627456889Z", "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 ba2cbe3b742..728c3ae0cc1 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,322 +1,162 @@ [ { - "digest": "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc", + "digest": "ca925854ef40f628fe7d8bf6efdb70e3c6b5314fa00b8d34ff697d241e682de4", "beacon": { "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 + "epoch": 21, + "immutable_file_number": 5 }, - "certificate_hash": "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd", - "size": 873752, - "created_at": "2024-09-09T12:59:46.467500709Z", + "certificate_hash": "35c39f4532f0f6e1b0e10662a020c013a09dceeffbd7c9ded04865c5a6fcde6e", + "size": 314814, + "created_at": "2024-10-28T13:28:52.235312388Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/ca925854ef40f628fe7d8bf6efdb70e3c6b5314fa00b8d34ff697d241e682de4/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, { - "digest": "96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12", + "digest": "5101fe07050f6df7c7f28d7068505302a4b52b3cce2a2a1ecc5bcb81965670cb", "beacon": { "network": "devnet", - "epoch": 60, - "immutable_file_number": 20 + "epoch": 20, + "immutable_file_number": 5 }, - "certificate_hash": "72624ce84ca83b2a92eafa1a4956d38c61306a1108f85e30e1c836747ff29aa0", - "size": 837999, - "created_at": "2024-09-09T12:59:40.566750714Z", + "certificate_hash": "2f738b4a5410ff27cab3fbc01be205ecb7b1cefb77da4bdcfebb2d926a7c69e6", + "size": 301823, + "created_at": "2024-10-28T13:28:49.261162299Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/5101fe07050f6df7c7f28d7068505302a4b52b3cce2a2a1ecc5bcb81965670cb/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, { - "digest": "cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312", + "digest": "4d7499fa55843554dea614b9d9d3c24cf4803cfb31e351df5f85d27727114287", "beacon": { "network": "devnet", - "epoch": 58, - "immutable_file_number": 19 + "epoch": 19, + "immutable_file_number": 4 }, - "certificate_hash": "e339157f5c81d34c325de0205a8a59dec30bc502978c8b4fb3c658ccedcbfae1", - "size": 807502, - "created_at": "2024-09-09T12:59:35.844884036Z", + "certificate_hash": "82c068ffafeed2ee77fb322d82ad2409dbe0491ace919ecf2e0d489d608fe0fa", + "size": 287180, + "created_at": "2024-10-28T13:28:46.111478922Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/cbaa6ef6e79d5be0226df1aaa2b8ad4cd7a8e46f8ebd3dcb4ffbb99cba938312/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/4d7499fa55843554dea614b9d9d3c24cf4803cfb31e351df5f85d27727114287/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, { - "digest": "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a", + "digest": "a1a6a5cdd1936a6a65d71972f87e00e5f2e820b1b7be4b44b39981d03f274298", "beacon": { "network": "devnet", - "epoch": 57, - "immutable_file_number": 19 + "epoch": 18, + "immutable_file_number": 4 }, - "certificate_hash": "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90", - "size": 785793, - "created_at": "2024-09-09T12:59:32.621057202Z", + "certificate_hash": "cc0600f2560620b0eb81f650307db1e556d090d74683377fa768a4ce9534f172", + "size": 274835, + "created_at": "2024-10-28T13:28:43.410006060Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/a1a6a5cdd1936a6a65d71972f87e00e5f2e820b1b7be4b44b39981d03f274298/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, { - "digest": "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a", + "digest": "f4b07b98825949542ee84fac7e60f10e0ddac2c4d576cec81b4633171d9638b2", "beacon": { "network": "devnet", - "epoch": 56, - "immutable_file_number": 18 + "epoch": 17, + "immutable_file_number": 4 }, - "certificate_hash": "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9", - "size": 771122, - "created_at": "2024-09-09T12:59:29.979306951Z", + "certificate_hash": "10bfe43e3035e9d8885d31c8defdae33595f82bcedd2da7d11011a186e39d285", + "size": 260528, + "created_at": "2024-10-28T13:28:40.138843757Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/f4b07b98825949542ee84fac7e60f10e0ddac2c4d576cec81b4633171d9638b2/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, { - "digest": "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e", + "digest": "21920b421518d155359096327741a29d132ab281c263816349f11c36320873ca", "beacon": { "network": "devnet", - "epoch": 55, - "immutable_file_number": 18 + "epoch": 16, + "immutable_file_number": 3 }, - "certificate_hash": "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b", - "size": 753093, - "created_at": "2024-09-09T12:59:27.183961132Z", + "certificate_hash": "2a7846f91bc724e8474db3afffb307fc15a023d3d83b50afbcbf4028873a016d", + "size": 247304, + "created_at": "2024-10-28T13:28:37.234994782Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/21920b421518d155359096327741a29d132ab281c263816349f11c36320873ca/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, { - "digest": "de3515f6f9ef0f2ad0a09e0acd4fa63113cf3f29f42a49a454e7c74cb943c005", + "digest": "498307bebaab40a9acafebb1e0409a9c97ec46bbd65098aef27f4b46d6713c0b", "beacon": { "network": "devnet", - "epoch": 53, - "immutable_file_number": 17 + "epoch": 15, + "immutable_file_number": 3 }, - "certificate_hash": "e08c33b16ffd90a63bf9a90ca81e76c483f7d0e219ecb4f36772f0e835aed89e", - "size": 714104, - "created_at": "2024-09-09T12:59:21.279108001Z", + "certificate_hash": "dc13344480ffb882280daf3d20e1ab5f6ce2fe4fc40a46a28b02fa0f1910f04c", + "size": 231642, + "created_at": "2024-10-28T13:28:34.225215938Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/de3515f6f9ef0f2ad0a09e0acd4fa63113cf3f29f42a49a454e7c74cb943c005/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/498307bebaab40a9acafebb1e0409a9c97ec46bbd65098aef27f4b46d6713c0b/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, { - "digest": "82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643", + "digest": "abdd1efee8695698bd6f158cd624b8fdfe2d748195486b82edf977e7010c0e68", "beacon": { "network": "devnet", - "epoch": 52, - "immutable_file_number": 17 + "epoch": 14, + "immutable_file_number": 3 }, - "certificate_hash": "4d0c84de34c476bfcc315dccb9db078c29f86811db67cf05b33bf8a950de8102", - "size": 702220, - "created_at": "2024-09-09T12:59:19.371419100Z", + "certificate_hash": "01c70d17b667f80a974f93212cd089fa26fc441b1b1efb1141923de7e8ab35a6", + "size": 215292, + "created_at": "2024-10-28T13:28:31.192269124Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/abdd1efee8695698bd6f158cd624b8fdfe2d748195486b82edf977e7010c0e68/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, { - "digest": "d3bae6df21ff157b79ec4ab2ed864b48d06271d103a2cd54ccec9357d27d622c", + "digest": "57a5c4d5d87e67b6fa088808d4174eec34318fcb075ed4b15b898c4694b1010a", "beacon": { "network": "devnet", - "epoch": 51, - "immutable_file_number": 16 + "epoch": 13, + "immutable_file_number": 3 }, - "certificate_hash": "d8378c77f18a605cec435443274014dffff5723b683ad7f8e71cf2c3ac37e1ce", - "size": 676520, - "created_at": "2024-09-09T12:59:15.417866661Z", + "certificate_hash": "70261d781a7798d6a45d1f5a80124b925ae31afa744ecc8a096dc3958ab46b45", + "size": 205559, + "created_at": "2024-10-28T13:28:29.264440823Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/d3bae6df21ff157b79ec4ab2ed864b48d06271d103a2cd54ccec9357d27d622c/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/57a5c4d5d87e67b6fa088808d4174eec34318fcb075ed4b15b898c4694b1010a/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, { - "digest": "dc678af3014f4432303dbbc4f8c4e79c3e89816eacf2bbea993072c8762ac45b", + "digest": "e68ead616e0371d7ecf65976540bb1234f22e621239a585b1cc560bcac53a831", "beacon": { "network": "devnet", - "epoch": 49, - "immutable_file_number": 16 + "epoch": 13, + "immutable_file_number": 2 }, - "certificate_hash": "73011314dab467c86785ed30e896113f9149f0260a8f0d092f03e6f56edf23b9", - "size": 756816, - "created_at": "2024-09-09T12:59:09.970897156Z", + "certificate_hash": "581943ab9d9123a3f311ff75a698c1590b3b405aac1b747531e8b141968351f5", + "size": 200218, + "created_at": "2024-10-28T13:28:28.189839912Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/dc678af3014f4432303dbbc4f8c4e79c3e89816eacf2bbea993072c8762ac45b/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/e68ead616e0371d7ecf65976540bb1234f22e621239a585b1cc560bcac53a831/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" - }, - { - "digest": "8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742", - "beacon": { - "network": "devnet", - "epoch": 48, - "immutable_file_number": 15 - }, - "certificate_hash": "d10068a231936c1994e9451ecd5f6dfde399869181ee392361bccaa43af9a066", - "size": 741761, - "created_at": "2024-09-09T12:59:07.553024831Z", - "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742/download" - ], - "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" - }, - { - "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" - }, - { - "digest": "2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc", - "beacon": { - "network": "devnet", - "epoch": 45, - "immutable_file_number": 14 - }, - "certificate_hash": "06b4bf0a413b8f066c82b6d1cece32dcd843a03133c1d0d224f70ef67787174a", - "size": 692063, - "created_at": "2024-09-09T12:58:59.484694820Z", - "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc/download" - ], - "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" - }, - { - "digest": "3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd", - "beacon": { - "network": "devnet", - "epoch": 44, - "immutable_file_number": 14 - }, - "certificate_hash": "abd22dc580ac6cfd94ccf1f4eb1bdf53056ff78fd8e243da886b3a0a1142d24c", - "size": 672251, - "created_at": "2024-09-09T12:58:56.323361523Z", - "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd/download" - ], - "compression_algorithm": "zstandard", - "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" + "cardano_node_version": "9.2.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 2cf3efc6668..52c3f43f1b9 100644 --- a/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots.json +++ b/mithril-test-lab/mithril-aggregator-fake/default_data/snapshots.json @@ -1,322 +1,162 @@ { - "04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307": { - "digest": "04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307", + "21920b421518d155359096327741a29d132ab281c263816349f11c36320873ca": { + "digest": "21920b421518d155359096327741a29d132ab281c263816349f11c36320873ca", "beacon": { "network": "devnet", - "epoch": 40, - "immutable_file_number": 13 + "epoch": 16, + "immutable_file_number": 3 }, - "certificate_hash": "df2d6cefa95e2f90671555f2c5d611f3aa21c71ebd57cf47a66397dc4ee49ea8", - "size": 600367, - "created_at": "2024-09-09T12:58:44.693627797Z", + "certificate_hash": "2a7846f91bc724e8474db3afffb307fc15a023d3d83b50afbcbf4028873a016d", + "size": 247304, + "created_at": "2024-10-28T13:28:37.234994782Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/04291ca8b79c5ebd9ca090f1717e2079a3bb135e2ebcd9b4f8a7872cc294f307/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/21920b421518d155359096327741a29d132ab281c263816349f11c36320873ca/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, - "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc": { - "digest": "1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc", + "498307bebaab40a9acafebb1e0409a9c97ec46bbd65098aef27f4b46d6713c0b": { + "digest": "498307bebaab40a9acafebb1e0409a9c97ec46bbd65098aef27f4b46d6713c0b", "beacon": { "network": "devnet", - "epoch": 62, - "immutable_file_number": 20 + "epoch": 15, + "immutable_file_number": 3 }, - "certificate_hash": "02e425b7df01d903a96dbb540cd05fea71aa11ae3cfa3a5a7f6913de0b9518fd", - "size": 873752, - "created_at": "2024-09-09T12:59:46.467500709Z", + "certificate_hash": "dc13344480ffb882280daf3d20e1ab5f6ce2fe4fc40a46a28b02fa0f1910f04c", + "size": 231642, + "created_at": "2024-10-28T13:28:34.225215938Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/1cf8c322e4a76dbdf56c5865d66f0e7c24d563702d0930a9cd1a60f807ddd2cc/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/498307bebaab40a9acafebb1e0409a9c97ec46bbd65098aef27f4b46d6713c0b/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, - "1d819bc6f4e565ca0e4f3b87ca6cd2ea6b0e3dcd0d159dc6af26945eaffd9b2f": { - "digest": "1d819bc6f4e565ca0e4f3b87ca6cd2ea6b0e3dcd0d159dc6af26945eaffd9b2f", + "4d7499fa55843554dea614b9d9d3c24cf4803cfb31e351df5f85d27727114287": { + "digest": "4d7499fa55843554dea614b9d9d3c24cf4803cfb31e351df5f85d27727114287", "beacon": { "network": "devnet", - "epoch": 39, - "immutable_file_number": 12 + "epoch": 19, + "immutable_file_number": 4 }, - "certificate_hash": "8e066a60bf13f02745a9b7b865d22340ea15b7114c9b271243758bad03099fba", - "size": 587633, - "created_at": "2024-09-09T12:58:42.598203223Z", + "certificate_hash": "82c068ffafeed2ee77fb322d82ad2409dbe0491ace919ecf2e0d489d608fe0fa", + "size": 287180, + "created_at": "2024-10-28T13:28:46.111478922Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/1d819bc6f4e565ca0e4f3b87ca6cd2ea6b0e3dcd0d159dc6af26945eaffd9b2f/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/4d7499fa55843554dea614b9d9d3c24cf4803cfb31e351df5f85d27727114287/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, - "2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc": { - "digest": "2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc", + "5101fe07050f6df7c7f28d7068505302a4b52b3cce2a2a1ecc5bcb81965670cb": { + "digest": "5101fe07050f6df7c7f28d7068505302a4b52b3cce2a2a1ecc5bcb81965670cb", "beacon": { "network": "devnet", - "epoch": 45, - "immutable_file_number": 14 + "epoch": 20, + "immutable_file_number": 5 }, - "certificate_hash": "06b4bf0a413b8f066c82b6d1cece32dcd843a03133c1d0d224f70ef67787174a", - "size": 692063, - "created_at": "2024-09-09T12:58:59.484694820Z", + "certificate_hash": "2f738b4a5410ff27cab3fbc01be205ecb7b1cefb77da4bdcfebb2d926a7c69e6", + "size": 301823, + "created_at": "2024-10-28T13:28:49.261162299Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/2337ba5e63182192ca1937bcfca74025b5c51f437bb6cc13c73aeb0a3b61d0cc/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/5101fe07050f6df7c7f28d7068505302a4b52b3cce2a2a1ecc5bcb81965670cb/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, - "3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd": { - "digest": "3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd", + "57a5c4d5d87e67b6fa088808d4174eec34318fcb075ed4b15b898c4694b1010a": { + "digest": "57a5c4d5d87e67b6fa088808d4174eec34318fcb075ed4b15b898c4694b1010a", "beacon": { "network": "devnet", - "epoch": 44, - "immutable_file_number": 14 + "epoch": 13, + "immutable_file_number": 3 }, - "certificate_hash": "abd22dc580ac6cfd94ccf1f4eb1bdf53056ff78fd8e243da886b3a0a1142d24c", - "size": 672251, - "created_at": "2024-09-09T12:58:56.323361523Z", + "certificate_hash": "70261d781a7798d6a45d1f5a80124b925ae31afa744ecc8a096dc3958ab46b45", + "size": 205559, + "created_at": "2024-10-28T13:28:29.264440823Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/3814ae76c04d5660183e6f884a8e5742bc3657211406ae71e8f19042722817bd/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/57a5c4d5d87e67b6fa088808d4174eec34318fcb075ed4b15b898c4694b1010a/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, - "557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326": { - "digest": "557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326", + "a1a6a5cdd1936a6a65d71972f87e00e5f2e820b1b7be4b44b39981d03f274298": { + "digest": "a1a6a5cdd1936a6a65d71972f87e00e5f2e820b1b7be4b44b39981d03f274298", "beacon": { "network": "devnet", - "epoch": 41, - "immutable_file_number": 13 + "epoch": 18, + "immutable_file_number": 4 }, - "certificate_hash": "304ae8a325e648d02f92d80be6734281cb729d4bab42ddb464bf15f66690f9ba", - "size": 620277, - "created_at": "2024-09-09T12:58:47.914941935Z", + "certificate_hash": "cc0600f2560620b0eb81f650307db1e556d090d74683377fa768a4ce9534f172", + "size": 274835, + "created_at": "2024-10-28T13:28:43.410006060Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/557118a668022df5b59625f8a725e5f69dcc8c4dcae152c94ef0a7cca6982326/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/a1a6a5cdd1936a6a65d71972f87e00e5f2e820b1b7be4b44b39981d03f274298/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, - "5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4": { - "digest": "5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4", + "abdd1efee8695698bd6f158cd624b8fdfe2d748195486b82edf977e7010c0e68": { + "digest": "abdd1efee8695698bd6f158cd624b8fdfe2d748195486b82edf977e7010c0e68", "beacon": { "network": "devnet", - "epoch": 38, - "immutable_file_number": 12 + "epoch": 14, + "immutable_file_number": 3 }, - "certificate_hash": "c98c0c706f10f62c99bb7ef93bcbdeec62359a3d9fcb9f7efc5dc6e11c0da0b9", - "size": 567823, - "created_at": "2024-09-09T12:58:39.466244772Z", + "certificate_hash": "01c70d17b667f80a974f93212cd089fa26fc441b1b1efb1141923de7e8ab35a6", + "size": 215292, + "created_at": "2024-10-28T13:28:31.192269124Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/5faa09f13556af49dcfa1e30838b8a8b8c9530c983deb1ffcf50d3409e0401c4/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/abdd1efee8695698bd6f158cd624b8fdfe2d748195486b82edf977e7010c0e68/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, - "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e": { - "digest": "7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e", + "ca925854ef40f628fe7d8bf6efdb70e3c6b5314fa00b8d34ff697d241e682de4": { + "digest": "ca925854ef40f628fe7d8bf6efdb70e3c6b5314fa00b8d34ff697d241e682de4", "beacon": { "network": "devnet", - "epoch": 55, - "immutable_file_number": 18 + "epoch": 21, + "immutable_file_number": 5 }, - "certificate_hash": "364d09160906ae321e2efa744075a6f5a0c1131518d8a26880a2c7400d23208b", - "size": 753093, - "created_at": "2024-09-09T12:59:27.183961132Z", + "certificate_hash": "35c39f4532f0f6e1b0e10662a020c013a09dceeffbd7c9ded04865c5a6fcde6e", + "size": 314814, + "created_at": "2024-10-28T13:28:52.235312388Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/7f2b47327c54014e0b44e11f6279ac66d1f36f604171aec3ca23122ef8ded99e/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/ca925854ef40f628fe7d8bf6efdb70e3c6b5314fa00b8d34ff697d241e682de4/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, - "8035c6f09d157b2587680344d25ddb0d4629cdf44aa3d54e86b59d71a7c341fd": { - "digest": "8035c6f09d157b2587680344d25ddb0d4629cdf44aa3d54e86b59d71a7c341fd", + "e68ead616e0371d7ecf65976540bb1234f22e621239a585b1cc560bcac53a831": { + "digest": "e68ead616e0371d7ecf65976540bb1234f22e621239a585b1cc560bcac53a831", "beacon": { "network": "devnet", - "epoch": 43, - "immutable_file_number": 14 + "epoch": 13, + "immutable_file_number": 2 }, - "certificate_hash": "a7f1202c8f8a07db6bd6de70c9a5e8031f268be1d3c20f91721edcf04c3e6a57", - "size": 653483, - "created_at": "2024-09-09T12:58:53.269727269Z", + "certificate_hash": "581943ab9d9123a3f311ff75a698c1590b3b405aac1b747531e8b141968351f5", + "size": 200218, + "created_at": "2024-10-28T13:28:28.189839912Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/8035c6f09d157b2587680344d25ddb0d4629cdf44aa3d54e86b59d71a7c341fd/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/e68ead616e0371d7ecf65976540bb1234f22e621239a585b1cc560bcac53a831/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" + "cardano_node_version": "9.2.1" }, - "82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643": { - "digest": "82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643", + "f4b07b98825949542ee84fac7e60f10e0ddac2c4d576cec81b4633171d9638b2": { + "digest": "f4b07b98825949542ee84fac7e60f10e0ddac2c4d576cec81b4633171d9638b2", "beacon": { "network": "devnet", - "epoch": 52, - "immutable_file_number": 17 + "epoch": 17, + "immutable_file_number": 4 }, - "certificate_hash": "4d0c84de34c476bfcc315dccb9db078c29f86811db67cf05b33bf8a950de8102", - "size": 702220, - "created_at": "2024-09-09T12:59:19.371419100Z", + "certificate_hash": "10bfe43e3035e9d8885d31c8defdae33595f82bcedd2da7d11011a186e39d285", + "size": 260528, + "created_at": "2024-10-28T13:28:40.138843757Z", "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/82d65c548261974712ce9c09c180a827dd6d2475570ba1ea22c4b8f419e1b643/download" + "http://0.0.0.0:8080/aggregator/artifact/snapshot/f4b07b98825949542ee84fac7e60f10e0ddac2c4d576cec81b4633171d9638b2/download" ], "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" - }, - "8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742": { - "digest": "8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742", - "beacon": { - "network": "devnet", - "epoch": 48, - "immutable_file_number": 15 - }, - "certificate_hash": "d10068a231936c1994e9451ecd5f6dfde399869181ee392361bccaa43af9a066", - "size": 741761, - "created_at": "2024-09-09T12:59:07.553024831Z", - "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/8c47801bcb18610144dc42d7d0db87f9e864d3570ee7636f34a78a473f235742/download" - ], - "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" - }, - "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a": { - "digest": "8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a", - "beacon": { - "network": "devnet", - "epoch": 56, - "immutable_file_number": 18 - }, - "certificate_hash": "b6b1e0e8727de28cb52e1db0394af976f0964d1b4f39b6ef4263e319a978f4d9", - "size": 771122, - "created_at": "2024-09-09T12:59:29.979306951Z", - "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/8e9e291ae2951a0092bc918ef1b863fa9ea4156e8b8f9cc66377529784fe532a/download" - ], - "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" - }, - "96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12": { - "digest": "96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12", - "beacon": { - "network": "devnet", - "epoch": 60, - "immutable_file_number": 20 - }, - "certificate_hash": "72624ce84ca83b2a92eafa1a4956d38c61306a1108f85e30e1c836747ff29aa0", - "size": 837999, - "created_at": "2024-09-09T12:59:40.566750714Z", - "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/96f8c9842e761a788d9f3adfd15577322f28e0ed50026c5d61faa02ffef18d12/download" - ], - "compression_algorithm": "zstandard", - "cardano_node_version": "9.1.1" - }, - "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a": { - "digest": "97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a", - "beacon": { - "network": "devnet", - "epoch": 57, - "immutable_file_number": 19 - }, - "certificate_hash": "40192fbfdcaa54ba6d6cfe58916d903c9a6cc04d28badb1c8b85abd0ff20fd90", - "size": 785793, - "created_at": "2024-09-09T12:59:32.621057202Z", - "locations": [ - "http://0.0.0.0:8080/aggregator/artifact/snapshot/97f5a4c4827ae0e4a80bf37d337e260125e7c3b404865dd3832061e83948e61a/download" - ], - "compression_algorithm": "zstandard", - "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" + "cardano_node_version": "9.2.1" } } diff --git a/openapi.yaml b/openapi.yaml index fa9ddf0a16d..324f07405fc 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.32 + version: 0.1.33 title: Mithril Aggregator Server description: | The REST API provided by a Mithril Aggregator Node in a Mithril network. @@ -1265,13 +1265,7 @@ components: "hash": "9dc998101590f733f7a50e7c03b5b336e69a751cc02d811395d49618db3ba3d7", "previous_hash": "aa2ddfb87a17103bdf15bfb21a2941b3f3223a3c8d710910496c392b14f8c403", "epoch": 329, - "beacon": - { - "network": "mainnet", - "epoch": 329, - "immutable_file_number": 7060000 - }, - signed_entity_type: { "MithrilStakeDistribution": 246 }, + "signed_entity_type": { "MithrilStakeDistribution": 246 }, "metadata": { "network": "mainnet", @@ -1318,10 +1312,6 @@ components: format: bytes epoch: $ref: "#/components/schemas/Epoch" - beacon: - deprecated: true - allOf: - - $ref: "#/components/schemas/CardanoDbBeacon" signed_entity_type: $ref: "#/components/schemas/SignedEntityType" metadata: @@ -1341,13 +1331,7 @@ components: "hash": "9dc998101590f733f7a50e7c03b5b336e69a751cc02d811395d49618db3ba3d7", "previous_hash": "aa2ddfb87a17103bdf15bfb21a2941b3f3223a3c8d710910496c392b14f8c403", "epoch": 32, - "beacon": - { - "network": "mainnet", - "epoch": 329, - "immutable_file_number": 7060000 - }, - signed_entity_type: { "MithrilStakeDistribution": 246 }, + "signed_entity_type": { "MithrilStakeDistribution": 246 }, "metadata": { "network": "mainnet", @@ -1443,10 +1427,6 @@ components: format: bytes epoch: $ref: "#/components/schemas/Epoch" - beacon: - deprecated: true - allOf: - - $ref: "#/components/schemas/CardanoDbBeacon" signed_entity_type: $ref: "#/components/schemas/SignedEntityType" metadata: @@ -1474,13 +1454,7 @@ components: "hash": "9dc998101590f733f7a50e7c03b5b336e69a751cc02d811395d49618db3ba3d7", "previous_hash": "aa2ddfb87a17103bdf15bfb21a2941b3f3223a3c8d710910496c392b14f8c403", "epoch": 329, - "beacon": - { - "network": "mainnet", - "epoch": 329, - "immutable_file_number": 7060000 - }, - signed_entity_type: { "MithrilStakeDistribution": 246 }, + "signed_entity_type": { "MithrilStakeDistribution": 246 }, "metadata": { "network": "mainnet",