snapshot before rebranding

This commit is contained in:
2025-12-14 07:37:21 +03:00
parent 5520d491a5
commit 09735eb97a
1752 changed files with 58116 additions and 15986 deletions
+21 -20
View File
@@ -7,6 +7,7 @@ edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
documentation = "https://docs.rs/xcm-emulator"
[lints]
workspace = true
@@ -50,24 +51,24 @@ xcm-simulator = { workspace = true, default-features = true }
[features]
runtime-benchmarks = [
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
"pezcumulus-primitives-core/runtime-benchmarks",
"pezcumulus-primitives-teyrchain-inherent/runtime-benchmarks",
"pezcumulus-test-relay-sproof-builder/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
"pezpallet-aura/runtime-benchmarks",
"pezpallet-balances/runtime-benchmarks",
"pezpallet-message-queue/runtime-benchmarks",
"pezpallet-timestamp/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
"pezkuwi-teyrchain-primitives/runtime-benchmarks",
"pezsp-consensus-aura/runtime-benchmarks",
"pezsp-io/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"teyrchains-common/runtime-benchmarks",
"xcm-executor/runtime-benchmarks",
"xcm-simulator/runtime-benchmarks",
"xcm/runtime-benchmarks",
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
"pezcumulus-primitives-core/runtime-benchmarks",
"pezcumulus-primitives-teyrchain-inherent/runtime-benchmarks",
"pezcumulus-test-relay-sproof-builder/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
"pezpallet-aura/runtime-benchmarks",
"pezpallet-balances/runtime-benchmarks",
"pezpallet-message-queue/runtime-benchmarks",
"pezpallet-timestamp/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
"pezkuwi-teyrchain-primitives/runtime-benchmarks",
"pezsp-consensus-aura/runtime-benchmarks",
"pezsp-io/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"teyrchains-common/runtime-benchmarks",
"xcm-executor/runtime-benchmarks",
"xcm-simulator/runtime-benchmarks",
"xcm/runtime-benchmarks",
]
+7 -7
View File
@@ -30,13 +30,13 @@ pub use std::{
};
pub use tracing;
pub use cumulus_primitives_core::relay_chain::Slot;
pub use pezcumulus_primitives_core::relay_chain::Slot;
pub use pezsp_consensus_aura::AURA_ENGINE_ID;
pub use pezsp_runtime::DigestItem;
// Bizinikiwi
pub use alloc::collections::vec_deque::VecDeque;
pub use core::{cell::RefCell, fmt::Debug};
pub use cumulus_primitives_core::AggregateMessageOrigin as CumulusAggregateMessageOrigin;
pub use pezcumulus_primitives_core::AggregateMessageOrigin as CumulusAggregateMessageOrigin;
pub use pezframe_support::{
assert_ok,
pezsp_runtime::{
@@ -66,16 +66,16 @@ pub use pezsp_runtime::BoundedSlice;
pub use pezsp_tracing;
// Pezcumulus
pub use cumulus_pallet_teyrchain_system::{
pub use pezcumulus_pallet_teyrchain_system::{
teyrchain_inherent::{deconstruct_teyrchain_inherent_data, InboundMessagesData},
Call as TeyrchainSystemCall, Pallet as TeyrchainSystemPallet,
};
pub use cumulus_primitives_core::{
pub use pezcumulus_primitives_core::{
relay_chain::{BlockNumber as RelayBlockNumber, HeadData, HrmpChannelId},
AbridgedHrmpChannel, DmpMessageHandler, ParaId, PersistedValidationData, XcmpMessageHandler,
};
pub use cumulus_primitives_teyrchain_inherent::TeyrchainInherentData;
pub use cumulus_test_relay_sproof_builder::RelayStateSproofBuilder;
pub use pezcumulus_primitives_teyrchain_inherent::TeyrchainInherentData;
pub use pezcumulus_test_relay_sproof_builder::RelayStateSproofBuilder;
pub use pezpallet_aura;
pub use pezpallet_message_queue::{Config as MessageQueueConfig, Pallet as MessageQueuePallet};
pub use pezkuwi_primitives;
@@ -731,7 +731,7 @@ macro_rules! decl_test_teyrchains {
timestamp_set.dispatch(<Self as Chain>::RuntimeOrigin::none())
);
// 2. inherent: cumulus_pallet_teyrchain_system::Call::set_validation_data
// 2. inherent: pezcumulus_pallet_teyrchain_system::Call::set_validation_data
let data = N::hrmp_channel_teyrchain_inherent_data(para_id, relay_block_number, parent_head_data);
let (data, mut downward_messages, mut horizontal_messages) =
$crate::deconstruct_teyrchain_inherent_data(data);