chore: regenerate umbrella crate
This commit is contained in:
+845
-1565
File diff suppressed because it is too large
Load Diff
+116
-104
@@ -1,4 +1,4 @@
|
|||||||
// Copyright (C) Parity Technologies (UK) Ltd. and Dijital Kurdistan Tech Institute
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
||||||
// SPDX-License-Identifier: Apache-2.0
|
// SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
#![cfg_attr(not(feature = "std"), no_std)]
|
#![cfg_attr(not(feature = "std"), no_std)]
|
||||||
@@ -15,14 +15,6 @@
|
|||||||
#[cfg(feature = "asset-test-pezutils")]
|
#[cfg(feature = "asset-test-pezutils")]
|
||||||
pub use asset_test_pezutils;
|
pub use asset_test_pezutils;
|
||||||
|
|
||||||
/// Assets common utilities.
|
|
||||||
#[cfg(feature = "pez-assets-common")]
|
|
||||||
pub use pez_assets_common;
|
|
||||||
|
|
||||||
/// A no-std/Bizinikiwi compatible library to construct binary merkle tree.
|
|
||||||
#[cfg(feature = "pez-binary-merkle-tree")]
|
|
||||||
pub use pez_binary_merkle_tree;
|
|
||||||
|
|
||||||
/// Converting BIP39 entropy to valid Bizinikiwi (sr25519) SecretKeys.
|
/// Converting BIP39 entropy to valid Bizinikiwi (sr25519) SecretKeys.
|
||||||
#[cfg(feature = "bizinikiwi-bip39")]
|
#[cfg(feature = "bizinikiwi-bip39")]
|
||||||
pub use bizinikiwi_bip39;
|
pub use bizinikiwi_bip39;
|
||||||
@@ -40,8 +32,8 @@ pub use bizinikiwi_frame_rpc_support;
|
|||||||
pub use bizinikiwi_frame_rpc_system;
|
pub use bizinikiwi_frame_rpc_system;
|
||||||
|
|
||||||
/// Endpoint to expose Prometheus metrics.
|
/// Endpoint to expose Prometheus metrics.
|
||||||
#[cfg(feature = "prometheus-endpoint")]
|
#[cfg(feature = "bizinikiwi-prometheus-endpoint")]
|
||||||
pub use prometheus_endpoint;
|
pub use bizinikiwi_prometheus_endpoint;
|
||||||
|
|
||||||
/// Shared JSON-RPC client.
|
/// Shared JSON-RPC client.
|
||||||
#[cfg(feature = "bizinikiwi-rpc-client")]
|
#[cfg(feature = "bizinikiwi-rpc-client")]
|
||||||
@@ -52,52 +44,20 @@ pub use bizinikiwi_rpc_client;
|
|||||||
pub use bizinikiwi_state_trie_migration_rpc;
|
pub use bizinikiwi_state_trie_migration_rpc;
|
||||||
|
|
||||||
/// Bizinikiwi utility: A library and CLI tool for sending transactions to Pezkuwi blockchain, enabling developers to test and monitor transaction scenarios.
|
/// Bizinikiwi utility: A library and CLI tool for sending transactions to Pezkuwi blockchain, enabling developers to test and monitor transaction scenarios.
|
||||||
#[cfg(feature = "txtesttool")]
|
#[cfg(feature = "bizinikiwi-txtesttool")]
|
||||||
pub use txtesttool;
|
pub use bizinikiwi_txtesttool;
|
||||||
|
|
||||||
/// Utility for building WASM binaries.
|
/// Utility for building WASM binaries.
|
||||||
#[cfg(feature = "bizinikiwi-wasm-builder")]
|
#[cfg(feature = "bizinikiwi-wasm-builder")]
|
||||||
pub use bizinikiwi_wasm_builder;
|
pub use bizinikiwi_wasm_builder;
|
||||||
|
|
||||||
/// A common interface for describing what a bridge pezpallet should be able to do.
|
/// Assets common utilities.
|
||||||
#[cfg(feature = "pezbp-header-pez-chain")]
|
#[cfg(feature = "pez-assets-common")]
|
||||||
pub use pezbp_header_pez_chain;
|
pub use pez_assets_common;
|
||||||
|
|
||||||
/// Primitives of messages module.
|
/// A no-std/Bizinikiwi compatible library to construct binary merkle tree.
|
||||||
#[cfg(feature = "pezbp-messages")]
|
#[cfg(feature = "pez-binary-merkle-tree")]
|
||||||
pub use pezbp_messages;
|
pub use pez_binary_merkle_tree;
|
||||||
|
|
||||||
/// Primitives of Pezkuwi-like runtime.
|
|
||||||
#[cfg(feature = "pezbp-pezkuwi-core")]
|
|
||||||
pub use pezbp_pezkuwi_core;
|
|
||||||
|
|
||||||
/// Primitives of relayers module.
|
|
||||||
#[cfg(feature = "pezbp-relayers")]
|
|
||||||
pub use pezbp_relayers;
|
|
||||||
|
|
||||||
/// Utilities for testing bizinikiwi-based runtime bridge code.
|
|
||||||
#[cfg(feature = "pezbp-test-utils")]
|
|
||||||
pub use pezbp_test_utils;
|
|
||||||
|
|
||||||
/// Primitives of teyrchains module.
|
|
||||||
#[cfg(feature = "pezbp-teyrchains")]
|
|
||||||
pub use pezbp_teyrchains;
|
|
||||||
|
|
||||||
/// Primitives of the xcm-bridge-hub pezpallet.
|
|
||||||
#[cfg(feature = "pezbp-xcm-bridge-hub")]
|
|
||||||
pub use pezbp_xcm_bridge_hub;
|
|
||||||
|
|
||||||
/// Primitives of the xcm-bridge-hub fee pezpallet.
|
|
||||||
#[cfg(feature = "pezbp-xcm-bridge-hub-router")]
|
|
||||||
pub use pezbp_xcm_bridge_hub_router;
|
|
||||||
|
|
||||||
/// Bridge hub common utilities.
|
|
||||||
#[cfg(feature = "pezbridge-hub-common")]
|
|
||||||
pub use pezbridge_hub_common;
|
|
||||||
|
|
||||||
/// An externalities provided environment that can load itself from remote nodes or cached files.
|
|
||||||
#[cfg(feature = "remote-externalities")]
|
|
||||||
pub use remote_externalities;
|
|
||||||
|
|
||||||
/// Interfaces for Ethereum standards.
|
/// Interfaces for Ethereum standards.
|
||||||
#[cfg(feature = "pez-ethereum-standards")]
|
#[cfg(feature = "pez-ethereum-standards")]
|
||||||
@@ -120,17 +80,53 @@ pub use pez_slot_range_helper;
|
|||||||
pub use pez_subkey;
|
pub use pez_subkey;
|
||||||
|
|
||||||
/// Stick logs together with the TraceID as provided by tempo.
|
/// Stick logs together with the TraceID as provided by tempo.
|
||||||
#[cfg(feature = "gum")]
|
#[cfg(feature = "pez-tracing-gum")]
|
||||||
pub use gum;
|
pub use pez_tracing_gum;
|
||||||
|
|
||||||
/// Generate an overseer including builder pattern and message wrapper from a single annotated struct definition.
|
/// Generate an overseer including builder pattern and message wrapper from a single annotated struct definition.
|
||||||
#[cfg(feature = "gum-proc-macro")]
|
#[cfg(feature = "pez-tracing-gum-proc-macro")]
|
||||||
pub use gum_proc_macro;
|
pub use pez_tracing_gum_proc_macro;
|
||||||
|
|
||||||
|
/// A common interface for describing what a bridge pezpallet should be able to do.
|
||||||
|
#[cfg(feature = "pezbp-header-pez-chain")]
|
||||||
|
pub use pezbp_header_pez_chain;
|
||||||
|
|
||||||
|
/// Primitives of messages module.
|
||||||
|
#[cfg(feature = "pezbp-messages")]
|
||||||
|
pub use pezbp_messages;
|
||||||
|
|
||||||
|
/// Primitives of Pezkuwi-like runtime.
|
||||||
|
#[cfg(feature = "pezbp-pezkuwi-core")]
|
||||||
|
pub use pezbp_pezkuwi_core;
|
||||||
|
|
||||||
|
/// Primitives of relayers module.
|
||||||
|
#[cfg(feature = "pezbp-relayers")]
|
||||||
|
pub use pezbp_relayers;
|
||||||
|
|
||||||
/// Primitives that may be used at (bridges) runtime level.
|
/// Primitives that may be used at (bridges) runtime level.
|
||||||
#[cfg(feature = "pezbp-runtime")]
|
#[cfg(feature = "pezbp-runtime")]
|
||||||
pub use pezbp_runtime;
|
pub use pezbp_runtime;
|
||||||
|
|
||||||
|
/// Utilities for testing bizinikiwi-based runtime bridge code.
|
||||||
|
#[cfg(feature = "pezbp-test-utils")]
|
||||||
|
pub use pezbp_test_utils;
|
||||||
|
|
||||||
|
/// Primitives of teyrchains module.
|
||||||
|
#[cfg(feature = "pezbp-teyrchains")]
|
||||||
|
pub use pezbp_teyrchains;
|
||||||
|
|
||||||
|
/// Primitives of the xcm-bridge-hub pezpallet.
|
||||||
|
#[cfg(feature = "pezbp-xcm-bridge-hub")]
|
||||||
|
pub use pezbp_xcm_bridge_hub;
|
||||||
|
|
||||||
|
/// Primitives of the xcm-bridge-hub fee pezpallet.
|
||||||
|
#[cfg(feature = "pezbp-xcm-bridge-hub-router")]
|
||||||
|
pub use pezbp_xcm_bridge_hub_router;
|
||||||
|
|
||||||
|
/// Bridge hub common utilities.
|
||||||
|
#[cfg(feature = "pezbridge-hub-common")]
|
||||||
|
pub use pezbridge_hub_common;
|
||||||
|
|
||||||
/// Utils for BridgeHub testing.
|
/// Utils for BridgeHub testing.
|
||||||
#[cfg(feature = "pezbridge-hub-test-utils")]
|
#[cfg(feature = "pezbridge-hub-test-utils")]
|
||||||
pub use pezbridge_hub_test_utils;
|
pub use pezbridge_hub_test_utils;
|
||||||
@@ -271,6 +267,14 @@ pub use pezcumulus_relay_chain_rpc_interface;
|
|||||||
#[cfg(feature = "pezcumulus-relay-chain-streams")]
|
#[cfg(feature = "pezcumulus-relay-chain-streams")]
|
||||||
pub use pezcumulus_relay_chain_streams;
|
pub use pezcumulus_relay_chain_streams;
|
||||||
|
|
||||||
|
/// Mocked relay state proof builder for testing Pezcumulus.
|
||||||
|
#[cfg(feature = "pezcumulus-test-relay-sproof-builder")]
|
||||||
|
pub use pezcumulus_test_relay_sproof_builder;
|
||||||
|
|
||||||
|
/// The single package to get you started with building frame pallets and runtimes.
|
||||||
|
#[cfg(feature = "pezframe")]
|
||||||
|
pub use pezframe;
|
||||||
|
|
||||||
/// Macro for benchmarking a FRAME runtime.
|
/// Macro for benchmarking a FRAME runtime.
|
||||||
#[cfg(feature = "pezframe-benchmarking")]
|
#[cfg(feature = "pezframe-benchmarking")]
|
||||||
pub use pezframe_benchmarking;
|
pub use pezframe_benchmarking;
|
||||||
@@ -303,6 +307,10 @@ pub use pezframe_metadata;
|
|||||||
#[cfg(feature = "pezframe-metadata-hash-extension")]
|
#[cfg(feature = "pezframe-metadata-hash-extension")]
|
||||||
pub use pezframe_metadata_hash_extension;
|
pub use pezframe_metadata_hash_extension;
|
||||||
|
|
||||||
|
/// An externalities provided environment that can load itself from remote nodes or cached files.
|
||||||
|
#[cfg(feature = "pezframe-remote-externalities")]
|
||||||
|
pub use pezframe_remote_externalities;
|
||||||
|
|
||||||
/// Support code for the runtime.
|
/// Support code for the runtime.
|
||||||
#[cfg(feature = "pezframe-support")]
|
#[cfg(feature = "pezframe-support")]
|
||||||
pub use pezframe_support;
|
pub use pezframe_support;
|
||||||
@@ -507,18 +515,10 @@ pub use pezkuwi_runtime_metrics;
|
|||||||
#[cfg(feature = "pezkuwi-runtime-teyrchains")]
|
#[cfg(feature = "pezkuwi-runtime-teyrchains")]
|
||||||
pub use pezkuwi_runtime_teyrchains;
|
pub use pezkuwi_runtime_teyrchains;
|
||||||
|
|
||||||
/// The single package to get you started with building frame pallets and runtimes.
|
|
||||||
#[cfg(feature = "pezframe")]
|
|
||||||
pub use pezframe;
|
|
||||||
|
|
||||||
/// Utils to tie different Pezkuwi components together and allow instantiation of a node.
|
/// Utils to tie different Pezkuwi components together and allow instantiation of a node.
|
||||||
#[cfg(feature = "pezkuwi-service")]
|
#[cfg(feature = "pezkuwi-service")]
|
||||||
pub use pezkuwi_service;
|
pub use pezkuwi_service;
|
||||||
|
|
||||||
/// Registry of known SS58 address types - PezkuwiChain fork.
|
|
||||||
#[cfg(feature = "ss58-registry")]
|
|
||||||
pub use ss58_registry;
|
|
||||||
|
|
||||||
/// Statement Distribution Subsystem.
|
/// Statement Distribution Subsystem.
|
||||||
#[cfg(feature = "pezkuwi-statement-distribution")]
|
#[cfg(feature = "pezkuwi-statement-distribution")]
|
||||||
pub use pezkuwi_statement_distribution;
|
pub use pezkuwi_statement_distribution;
|
||||||
@@ -571,6 +571,30 @@ pub use pezkuwi_subxt_utils_stripmetadata;
|
|||||||
#[cfg(feature = "pezkuwi-teyrchain-primitives")]
|
#[cfg(feature = "pezkuwi-teyrchain-primitives")]
|
||||||
pub use pezkuwi_teyrchain_primitives;
|
pub use pezkuwi_teyrchain_primitives;
|
||||||
|
|
||||||
|
/// Pezkuwi Zombienet configuration builder for network testing.
|
||||||
|
#[cfg(feature = "pezkuwi-zombienet-configuration")]
|
||||||
|
pub use pezkuwi_zombienet_configuration;
|
||||||
|
|
||||||
|
/// Pezkuwi Zombienet orchestrator - Network spawn through providers.
|
||||||
|
#[cfg(feature = "pezkuwi-zombienet-orchestrator")]
|
||||||
|
pub use pezkuwi_zombienet_orchestrator;
|
||||||
|
|
||||||
|
/// Pezkuwi Zombienet Prometheus metrics parser.
|
||||||
|
#[cfg(feature = "pezkuwi-zombienet-prom-metrics-parser")]
|
||||||
|
pub use pezkuwi_zombienet_prom_metrics_parser;
|
||||||
|
|
||||||
|
/// Pezkuwi Zombienet provider - Node execution through native provider.
|
||||||
|
#[cfg(feature = "pezkuwi-zombienet-provider")]
|
||||||
|
pub use pezkuwi_zombienet_provider;
|
||||||
|
|
||||||
|
/// Pezkuwi Zombienet SDK - Network orchestration for Pezkuwi blockchain testing.
|
||||||
|
#[cfg(feature = "pezkuwi-zombienet-sdk")]
|
||||||
|
pub use pezkuwi_zombienet_sdk;
|
||||||
|
|
||||||
|
/// Pezkuwi Zombienet support - Common traits, structs and helpers.
|
||||||
|
#[cfg(feature = "pezkuwi-zombienet-support")]
|
||||||
|
pub use pezkuwi_zombienet_support;
|
||||||
|
|
||||||
/// MMR Client gadget for bizinikiwi.
|
/// MMR Client gadget for bizinikiwi.
|
||||||
#[cfg(feature = "pezmmr-gadget")]
|
#[cfg(feature = "pezmmr-gadget")]
|
||||||
pub use pezmmr_gadget;
|
pub use pezmmr_gadget;
|
||||||
@@ -703,9 +727,13 @@ pub use pezpallet_collective_content;
|
|||||||
#[cfg(feature = "pezpallet-contracts")]
|
#[cfg(feature = "pezpallet-contracts")]
|
||||||
pub use pezpallet_contracts;
|
pub use pezpallet_contracts;
|
||||||
|
|
||||||
// A mock network for testing pezpallet-contracts.
|
/// Fixtures for testing contracts pezpallet.
|
||||||
// #[cfg(feature = "pezpallet-contracts-mock-network")]
|
#[cfg(feature = "pezpallet-contracts-fixtures")]
|
||||||
// pub use pezpallet_contracts_mock_network; // Test-only crate, not published
|
pub use pezpallet_contracts_fixtures;
|
||||||
|
|
||||||
|
/// A mock network for testing pezpallet-contracts.
|
||||||
|
#[cfg(feature = "pezpallet-contracts-mock-network")]
|
||||||
|
pub use pezpallet_contracts_mock_network;
|
||||||
|
|
||||||
/// Procedural macros used in pallet_contracts.
|
/// Procedural macros used in pallet_contracts.
|
||||||
#[cfg(feature = "pezpallet-contracts-proc-macro")]
|
#[cfg(feature = "pezpallet-contracts-proc-macro")]
|
||||||
@@ -803,6 +831,10 @@ pub use pezpallet_meta_tx;
|
|||||||
#[cfg(feature = "pezpallet-migrations")]
|
#[cfg(feature = "pezpallet-migrations")]
|
||||||
pub use pezpallet_migrations;
|
pub use pezpallet_migrations;
|
||||||
|
|
||||||
|
/// A minimal pezpallet built with FRAME, part of Pezkuwi Sdk.
|
||||||
|
#[cfg(feature = "pezpallet-minimal-template")]
|
||||||
|
pub use pezpallet_minimal_template;
|
||||||
|
|
||||||
/// FRAME's mixnet pezpallet.
|
/// FRAME's mixnet pezpallet.
|
||||||
#[cfg(feature = "pezpallet-mixnet")]
|
#[cfg(feature = "pezpallet-mixnet")]
|
||||||
pub use pezpallet_mixnet;
|
pub use pezpallet_mixnet;
|
||||||
@@ -1455,6 +1487,10 @@ pub use pezsp_runtime_interface_proc_macro;
|
|||||||
#[cfg(feature = "pezsp-session")]
|
#[cfg(feature = "pezsp-session")]
|
||||||
pub use pezsp_session;
|
pub use pezsp_session;
|
||||||
|
|
||||||
|
/// Registry of known SS58 address types - PezkuwiChain fork.
|
||||||
|
#[cfg(feature = "pezsp-ss58-registry")]
|
||||||
|
pub use pezsp_ss58_registry;
|
||||||
|
|
||||||
/// A crate which contains primitives that are useful for implementation that uses staking approaches in general. Definitions related to sessions, slashing, etc go here.
|
/// A crate which contains primitives that are useful for implementation that uses staking approaches in general. Definitions related to sessions, slashing, etc go here.
|
||||||
#[cfg(feature = "pezsp-staking")]
|
#[cfg(feature = "pezsp-staking")]
|
||||||
pub use pezsp_staking;
|
pub use pezsp_staking;
|
||||||
@@ -1512,32 +1548,32 @@ pub use pezsp_wasm_interface;
|
|||||||
pub use pezsp_weights;
|
pub use pezsp_weights;
|
||||||
|
|
||||||
/// Utility for building chain-specification files for Bizinikiwi-based runtimes based on `pezsp-genesis-builder`.
|
/// Utility for building chain-specification files for Bizinikiwi-based runtimes based on `pezsp-genesis-builder`.
|
||||||
#[cfg(feature = "chain-spec-builder")]
|
#[cfg(feature = "pezstaging-chain-spec-builder")]
|
||||||
pub use chain_spec_builder;
|
pub use pezstaging_chain_spec_builder;
|
||||||
|
|
||||||
/// Bizinikiwi node block inspection tool.
|
/// Bizinikiwi node block inspection tool.
|
||||||
#[cfg(feature = "node-inspect")]
|
#[cfg(feature = "pezstaging-node-inspect")]
|
||||||
pub use node_inspect;
|
pub use pezstaging_node_inspect;
|
||||||
|
|
||||||
/// Pallet to store the teyrchain ID.
|
/// Pallet to store the teyrchain ID.
|
||||||
#[cfg(feature = "teyrchain-info")]
|
#[cfg(feature = "pezstaging-teyrchain-info")]
|
||||||
pub use teyrchain_info;
|
pub use pezstaging_teyrchain_info;
|
||||||
|
|
||||||
/// Tracking allocator to control the amount of memory consumed by the process.
|
/// Tracking allocator to control the amount of memory consumed by the process.
|
||||||
#[cfg(feature = "tracking-allocator")]
|
#[cfg(feature = "pezstaging-tracking-allocator")]
|
||||||
pub use tracking_allocator;
|
pub use pezstaging_tracking_allocator;
|
||||||
|
|
||||||
/// The basic XCM datastructures.
|
/// The basic XCM datastructures.
|
||||||
#[cfg(feature = "xcm")]
|
#[cfg(feature = "pezstaging-xcm")]
|
||||||
pub use xcm;
|
pub use pezstaging_xcm;
|
||||||
|
|
||||||
/// Tools & types for building with XCM and its executor.
|
/// Tools & types for building with XCM and its executor.
|
||||||
#[cfg(feature = "xcm-builder")]
|
#[cfg(feature = "pezstaging-xcm-builder")]
|
||||||
pub use xcm_builder;
|
pub use pezstaging_xcm_builder;
|
||||||
|
|
||||||
/// An abstract and configurable XCM message executor.
|
/// An abstract and configurable XCM message executor.
|
||||||
#[cfg(feature = "xcm-executor")]
|
#[cfg(feature = "pezstaging-xcm-executor")]
|
||||||
pub use xcm_executor;
|
pub use pezstaging_xcm_executor;
|
||||||
|
|
||||||
/// Common constants for Testnet Teyrchains runtimes.
|
/// Common constants for Testnet Teyrchains runtimes.
|
||||||
#[cfg(feature = "testnet-teyrchains-constants")]
|
#[cfg(feature = "testnet-teyrchains-constants")]
|
||||||
@@ -1566,27 +1602,3 @@ pub use xcm_pez_simulator;
|
|||||||
/// XCM runtime APIs.
|
/// XCM runtime APIs.
|
||||||
#[cfg(feature = "xcm-runtime-pezapis")]
|
#[cfg(feature = "xcm-runtime-pezapis")]
|
||||||
pub use xcm_runtime_pezapis;
|
pub use xcm_runtime_pezapis;
|
||||||
|
|
||||||
/// Pezkuwi Zombienet configuration builder for network testing.
|
|
||||||
#[cfg(feature = "pezkuwi-zombienet-configuration")]
|
|
||||||
pub use pezkuwi_zombienet_configuration;
|
|
||||||
|
|
||||||
/// Pezkuwi Zombienet orchestrator - Network spawn through providers.
|
|
||||||
#[cfg(feature = "pezkuwi-zombienet-orchestrator")]
|
|
||||||
pub use pezkuwi_zombienet_orchestrator;
|
|
||||||
|
|
||||||
/// Pezkuwi Zombienet Prometheus metrics parser.
|
|
||||||
#[cfg(feature = "pezkuwi-zombienet-prom-metrics-parser")]
|
|
||||||
pub use pezkuwi_zombienet_prom_metrics_parser;
|
|
||||||
|
|
||||||
/// Pezkuwi Zombienet provider - Node execution through native provider.
|
|
||||||
#[cfg(feature = "pezkuwi-zombienet-provider")]
|
|
||||||
pub use pezkuwi_zombienet_provider;
|
|
||||||
|
|
||||||
/// Pezkuwi Zombienet SDK - Network orchestration for Pezkuwi blockchain testing.
|
|
||||||
#[cfg(feature = "pezkuwi-zombienet-sdk")]
|
|
||||||
pub use pezkuwi_zombienet_sdk;
|
|
||||||
|
|
||||||
/// Pezkuwi Zombienet support - Common traits, structs and helpers.
|
|
||||||
#[cfg(feature = "pezkuwi-zombienet-support")]
|
|
||||||
pub use pezkuwi_zombienet_support;
|
|
||||||
|
|||||||
Reference in New Issue
Block a user