pub trait InspectMetadata<AccountId>: Inspect<AccountId> {
    fn name(asset: &Self::AssetId) -> Vec<u8>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
;
fn symbol(asset: &Self::AssetId) -> Vec<u8>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
;
fn decimals(asset: &Self::AssetId) -> u8; }
Expand description

Trait for reading metadata from a fungible asset.

Required methods

Return the name of an asset.

Return the symbol of an asset.

Return the decimals of an asset.

Implementors