From 4fab4b8ba275fcd9ae44fa36b07b14c6d21711cc Mon Sep 17 00:00:00 2001 From: nhussein11 Date: Tue, 17 Dec 2024 09:06:51 -0300 Subject: [PATCH] fix: adding reference to utility pallet --- .../parachains/zero-to-hero/add-pallets-to-runtime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/polkadot-sdk/parachains/zero-to-hero/add-pallets-to-runtime.md b/tutorials/polkadot-sdk/parachains/zero-to-hero/add-pallets-to-runtime.md index 3aa71c1cd..8de4e02ab 100644 --- a/tutorials/polkadot-sdk/parachains/zero-to-hero/add-pallets-to-runtime.md +++ b/tutorials/polkadot-sdk/parachains/zero-to-hero/add-pallets-to-runtime.md @@ -9,7 +9,7 @@ description: Add pallets to your runtime for custom functionality. Learn to conf In previous tutorials, you learned how to [create a custom pallet](/tutorials/polkadot-sdk/parachains/zero-to-hero/build-custom-pallet/){target=\_blank} and [test it](/tutorials/polkadot-sdk/parachains/zero-to-hero/pallet-unit-testing/){target=\_blank}. The next step is to include this pallet in your runtime, integrating it into the core logic of your blockchain. -This tutorial will guide you through adding two pallets to your runtime: the custom pallet you previously developed and the utility pallet. This standard Polkadot SDK pallet provides powerful dispatch functionality. The utility pallet offers, for example, batch dispatch, a stateless operation that enables executing multiple calls in a single transaction. +This tutorial will guide you through adding two pallets to your runtime: the custom pallet you previously developed and the [utility pallet](https://paritytech.github.io/polkadot-sdk/master/pallet_utility/index.html){target=\_blank}. This standard Polkadot SDK pallet provides powerful dispatch functionality. The utility pallet offers, for example, batch dispatch, a stateless operation that enables executing multiple calls in a single transaction. ## Add the Pallets as Dependencies