diff --git a/pallets/xvm/src/lib.rs b/pallets/xvm/src/lib.rs index 006ce58848..7bb71acab5 100644 --- a/pallets/xvm/src/lib.rs +++ b/pallets/xvm/src/lib.rs @@ -18,15 +18,21 @@ //! # XVM pallet //! +//! A module to provide +//! //! ## Overview //! -//! ## Interface +//! The XVM pallet provides a runtime interface to call different VMs. It currently +//! supports two VMs: EVM and WASM. With further development, more VMs can be added. //! -//! ### Dispatchable Function +//! Together with other functionalities like Chain Extension and precompiles, +//! the XVM pallet enables the runtime to support cross-VM calls. //! +//! ## Interface //! -//! ### Other +//! ### Implementation //! +//! - Implements `XvmCall` trait. //! #![cfg_attr(not(feature = "std"), no_std)]