pub struct Author<P, Client> { /* private fields */ }
Expand description
Authoring API
Implementations§
source§impl<P, Client> Author<P, Client>
impl<P, Client> Author<P, Client>
sourcepub fn new(
client: Arc<Client>,
pool: Arc<P>,
keystore: KeystorePtr,
executor: SubscriptionTaskExecutor,
) -> Self
pub fn new( client: Arc<Client>, pool: Arc<P>, keystore: KeystorePtr, executor: SubscriptionTaskExecutor, ) -> Self
Create new instance of Authoring API.
Trait Implementations§
source§impl<P, Client> AuthorApiServer<<P as TransactionPool>::Hash, <<P as TransactionPool>::Block as Block>::Hash> for Author<P, Client>where
P: TransactionPool + Sync + Send + 'static,
Client: HeaderBackend<P::Block> + ProvideRuntimeApi<P::Block> + Send + Sync + 'static,
Client::Api: SessionKeys<P::Block>,
P::Hash: Unpin,
<P::Block as BlockT>::Hash: Unpin,
impl<P, Client> AuthorApiServer<<P as TransactionPool>::Hash, <<P as TransactionPool>::Block as Block>::Hash> for Author<P, Client>where
P: TransactionPool + Sync + Send + 'static,
Client: HeaderBackend<P::Block> + ProvideRuntimeApi<P::Block> + Send + Sync + 'static,
Client::Api: SessionKeys<P::Block>,
P::Hash: Unpin,
<P::Block as BlockT>::Hash: Unpin,
source§fn submit_extrinsic<'life0, 'async_trait>(
&'life0 self,
ext: Bytes,
) -> Pin<Box<dyn Future<Output = Result<TxHash<P>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn submit_extrinsic<'life0, 'async_trait>(
&'life0 self,
ext: Bytes,
) -> Pin<Box<dyn Future<Output = Result<TxHash<P>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Submit hex-encoded extrinsic for inclusion in block.
source§fn insert_key(
&self,
ext: &Extensions,
key_type: String,
suri: String,
public: Bytes,
) -> Result<()>
fn insert_key( &self, ext: &Extensions, key_type: String, suri: String, public: Bytes, ) -> Result<()>
Insert a key into the keystore.
source§fn rotate_keys(&self, ext: &Extensions) -> Result<Bytes>
fn rotate_keys(&self, ext: &Extensions) -> Result<Bytes>
Generate new session keys and returns the corresponding public keys.
source§fn has_session_keys(
&self,
ext: &Extensions,
session_keys: Bytes,
) -> Result<bool>
fn has_session_keys( &self, ext: &Extensions, session_keys: Bytes, ) -> Result<bool>
Checks if the keystore has private keys for the given session public keys. Read more
source§fn has_key(
&self,
ext: &Extensions,
public_key: Bytes,
key_type: String,
) -> Result<bool>
fn has_key( &self, ext: &Extensions, public_key: Bytes, key_type: String, ) -> Result<bool>
Checks if the keystore has private keys for the given public key and key type. Read more
source§fn pending_extrinsics(&self) -> Result<Vec<Bytes>>
fn pending_extrinsics(&self) -> Result<Vec<Bytes>>
Returns all pending extrinsics, potentially grouped by sender.
source§fn remove_extrinsic(
&self,
ext: &Extensions,
bytes_or_hash: Vec<ExtrinsicOrHash<TxHash<P>>>,
) -> Result<Vec<TxHash<P>>>
fn remove_extrinsic( &self, ext: &Extensions, bytes_or_hash: Vec<ExtrinsicOrHash<TxHash<P>>>, ) -> Result<Vec<TxHash<P>>>
Remove given extrinsic from the pool and temporarily ban it to prevent reimporting.
source§fn watch_extrinsic(&self, pending: PendingSubscriptionSink, xt: Bytes)
fn watch_extrinsic(&self, pending: PendingSubscriptionSink, xt: Bytes)
Submit an extrinsic to watch. Read more
Auto Trait Implementations§
impl<P, Client> Freeze for Author<P, Client>
impl<P, Client> !RefUnwindSafe for Author<P, Client>
impl<P, Client> Send for Author<P, Client>
impl<P, Client> Sync for Author<P, Client>
impl<P, Client> Unpin for Author<P, Client>
impl<P, Client> !UnwindSafe for Author<P, Client>
Blanket Implementations§
source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.