Trait pallet_plasma::Config[][src]

pub trait Config: Config + Config {
    type Currency: Currency<Self::AccountId>;
    type DeterminePlappsAddress: PlappsAddressFor<Self::Hash, Self::AccountId>;
    type MaximumTokenAddress: Get<Self::AccountId>;
    type PlasmaHashing: Hash<Output = Self::Hash>;
    type Event: From<Event<Self>> + Into<<Self as Config>::Event>;
}

Associated Types

Plasma Range’s currency.

A function type to get the contract address given the instantiator.

The using initial right over token address.

The hashing system (algorithm) being used in the Plasma module (e.g. Keccak256).

The overarching event type.

Implementors