-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switch deposit currency with deposit pallet (#833)
Co-authored-by: Adel Golghalyani <[email protected]>
- Loading branch information
Showing
12 changed files
with
203 additions
and
72 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// KILT Blockchain – https://botlabs.org | ||
// Copyright (C) 2019-2024 BOTLabs GmbH | ||
|
||
// The KILT Blockchain is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// The KILT Blockchain is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
// If you feel like getting in touch with us, you can do so at [email protected] | ||
|
||
// The `RuntimeDebug` macro uses these internally. | ||
#![allow(clippy::ref_patterns)] | ||
|
||
use pallet_dip_provider::IdentityCommitmentVersion; | ||
use parity_scale_codec::{Decode, Encode, MaxEncodedLen}; | ||
use scale_info::TypeInfo; | ||
use sp_core::RuntimeDebug; | ||
|
||
use crate::DidIdentifier; | ||
|
||
#[derive(Encode, Decode, MaxEncodedLen, TypeInfo, Clone, PartialEq, Eq, RuntimeDebug)] | ||
pub enum DepositNamespace { | ||
DipProvider, | ||
BondedTokens, | ||
} | ||
|
||
#[cfg(feature = "runtime-benchmarks")] | ||
impl Default for DepositNamespace { | ||
fn default() -> Self { | ||
Self::DipProvider | ||
} | ||
} | ||
|
||
/// The various different keys that can be stored in the storage-tracking | ||
/// pallet. | ||
/// Although the namespace is used to distinguish between keys, it is useful to | ||
/// group all keys under the same enum to calculate the maximum length that a | ||
/// key can take. | ||
#[derive(Encode, Decode, MaxEncodedLen, TypeInfo, Clone, PartialEq, Eq, RuntimeDebug)] | ||
pub enum DepositKey { | ||
DipProvider { | ||
identifier: DidIdentifier, | ||
version: IdentityCommitmentVersion, | ||
}, | ||
} |
Oops, something went wrong.