dpp/tokens/
allowed_currency.rs

1use platform_value::Identifier;
2
3#[derive(Debug, PartialEq, Clone)]
4pub enum AllowedCurrency {
5    TradingInDash,
6    OnContract(Identifier, String),
7}