Trait plonk_pallet_rpc::PlonkApi[][src]

pub trait PlonkApi<BlockHash>: Sized + Send + Sync + 'static {
    fn get_public_parameters(
        &self,
        at: Option<BlockHash>
    ) -> Result<PublicParameters>; fn to_delegate<M: Metadata>(self) -> IoDelegate<Self, M>
    where
        BlockHash: Send + Sync + 'static + DeserializeOwned
, { ... } }

Required methods

Provided methods

Create an IoDelegate, wiring rpc calls to the trait methods.

Implementors