dpp/identity/
identities_contract_keys.rs1use crate::identity::{IdentityPublicKey, Purpose};
2use platform_value::Identifier;
3use std::collections::BTreeMap;
4
5pub type IdentitiesContractKeys =
6 BTreeMap<Identifier, BTreeMap<Purpose, Option<IdentityPublicKey>>>;