pub trait CurrencyInspect {
    type CurrencyId;

    // Required method
    fn is_tranche_token(currency: Self::CurrencyId) -> bool;
}
Expand description

Trait to retrieve information about currencies.

Required Associated Types§

Required Methods§

source

fn is_tranche_token(currency: Self::CurrencyId) -> bool

Checks whether the provided currency is a tranche token.

Object Safety§

This trait is not object safe.

Implementors§