pub trait Create<AccountId>: Inspect<AccountId> {
    // Required method
    fn create(
        id: Self::AssetId,
        admin: AccountId,
        is_sufficient: bool,
        min_balance: Self::Balance
    ) -> DispatchResult;
}
Expand description

Trait for providing the ability to create new fungible assets.

Required Methods§

source

fn create( id: Self::AssetId, admin: AccountId, is_sufficient: bool, min_balance: Self::Balance ) -> DispatchResult

Create a new fungible asset.

Implementors§