fix: Complete snowbridge pezpallet rebrand and critical bug fixes

- snowbridge-pezpallet-* → pezsnowbridge-pezpallet-* (201 refs)
- pallet/ directories → pezpallet/ (4 locations)
- Fixed pezpallet.rs self-include recursion bug
- Fixed sc-chain-spec hardcoded crate name in derive macro
- Reverted .pezpallet_by_name() to .pallet_by_name() (subxt API)
- Added BizinikiwiConfig type alias for zombienet tests
- Deleted obsolete session state files

Verified: pezsnowbridge-pezpallet-*, pezpallet-staking,
pezpallet-staking-async, pezframe-benchmarking-cli all pass cargo check
This commit is contained in:
2025-12-16 09:57:23 +03:00
parent eea003e14d
commit 3139ffa25e
3022 changed files with 42157 additions and 23579 deletions
@@ -46,7 +46,7 @@ use xcm::latest::prelude::*;
#[allow(clippy::large_enum_variant)]
#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)]
pub enum Call {
/// `ToZagrosXcmRouter` bridge pallet.
/// `ToZagrosXcmRouter` bridge pezpallet.
#[codec(index = 45)]
ToZagrosXcmRouter(XcmBridgeHubRouterCall),
}
@@ -54,7 +54,7 @@ pub enum Call {
pezframe_support::parameter_types! {
/// Some sane weight to execute `xcm::Transact(pezpallet-xcm-bridge-hub-router::Call::report_bridge_status)`.
pub const XcmBridgeHubRouterTransactCallMaxWeight: pezframe_support::weights::Weight = pezframe_support::weights::Weight::from_parts(200_000_000, 6144);
/// Should match the `AssetDeposit` of the `ForeignAssets` pallet on Asset Hub.
/// Should match the `AssetDeposit` of the `ForeignAssets` pezpallet on Asset Hub.
pub const CreateForeignAssetDeposit: u128 = UNITS / 10;
}
@@ -137,15 +137,15 @@ pub type AccountSigner = MultiSigner;
/// The address format for describing accounts.
pub type Address = MultiAddress<AccountId, ()>;
/// Name of the With-AssetHubPezkuwichain messages pallet instance that is deployed at bridged
/// Name of the With-AssetHubPezkuwichain messages pezpallet instance that is deployed at bridged
/// chains.
pub const WITH_ASSET_HUB_PEZKUWICHAIN_MESSAGES_PALLET_NAME: &str = "BridgePezkuwichainMessages";
/// Name of the With-AssetHubPezkuwichain bridge-relayers pallet instance that is deployed at
/// Name of the With-AssetHubPezkuwichain bridge-relayers pezpallet instance that is deployed at
/// bridged chains.
pub const WITH_ASSET_HUB_PEZKUWICHAIN_RELAYERS_PALLET_NAME: &str = "BridgeRelayers";
/// Pallet index of `BridgeZagrosMessages: pezpallet_bridge_messages::<Instance1>`.
/// Pezpallet index of `BridgeZagrosMessages: pezpallet_bridge_messages::<Instance1>`.
pub const WITH_BRIDGE_PEZKUWICHAIN_TO_ZAGROS_MESSAGES_PALLET_INDEX: u8 = 62;
decl_bridge_finality_runtime_apis!(asset_hub_pezkuwichain);