-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
79 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,17 @@ | |
|
||
// If you feel like getting in touch with us, you can do so at [email protected] | ||
|
||
//! Runtime template of a Decentralized Identity Provider (DIP) consumer, which | ||
//! does not itself include any identity-related pallets, but only the | ||
//! [`pallet_dip_consumer::Pallet`] pallet (configured to work with the | ||
//! [`dip_provider_runtime_template::Runtime`] template runtime), the | ||
//! [`pallet_relay_store::Pallet`] pallet to keep track of finalized relaychain | ||
//! state roots, and the example [`pallet_postit::Pallet`], which allows any | ||
//! entity that can be identified with a username (e.g., a web3name carried over | ||
//! from the provider chain) to post a message on chain, reply to another | ||
//! on-chain message (including another reply), or like a message and/or any of | ||
//! its replies. | ||
|
||
#![cfg_attr(not(feature = "std"), no_std)] | ||
#![recursion_limit = "256"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,12 @@ | |
|
||
// If you feel like getting in touch with us, you can do so at [email protected] | ||
|
||
//! Runtime template of a Decentralized Identity Provider (DIP) provider, which | ||
//! includes, beyond system pallets, [`did::Pallet`], | ||
//! [`pallet_web3_names::Pallet`], and [`pallet_did_lookup::Pallet`] pallets, as | ||
//! well as the [`pallet_dip_provider::Pallet`] pallet and the | ||
//! [`pallet_deposit_storage::Pallet`] pallet. | ||
|
||
#![cfg_attr(not(feature = "std"), no_std)] | ||
#![recursion_limit = "256"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters