pub trait PriceForParachainDelivery {
    // Required method
    fn price_for_parachain_delivery(
        para: ParaId,
        message: &Xcm<()>
    ) -> MultiAssets;
}
Expand description

Simple value-bearing trait for determining/expressing the assets required to be paid for a messages to be delivered to a parachain.

Required Methods§

source

fn price_for_parachain_delivery(para: ParaId, message: &Xcm<()>) -> MultiAssets

Return the assets required to deliver message to the given para destination.

Implementations on Foreign Types§

source§

impl PriceForParachainDelivery for ()

Implementors§