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,
deny_unsafe: DenyUnsafe,
executor: SubscriptionTaskExecutor
) -> Self
pub fn new( client: Arc<Client>, pool: Arc<P>, keystore: KeystorePtr, deny_unsafe: DenyUnsafe, 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 = RpcResult<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 = RpcResult<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,
key_type: String,
suri: String,
public: Bytes
) -> RpcResult<()>
fn insert_key( &self, key_type: String, suri: String, public: Bytes ) -> RpcResult<()>
Insert a key into the keystore.
source§fn rotate_keys(&self) -> RpcResult<Bytes>
fn rotate_keys(&self) -> RpcResult<Bytes>
Generate new session keys and returns the corresponding public keys.
source§fn has_session_keys(&self, session_keys: Bytes) -> RpcResult<bool>
fn has_session_keys(&self, session_keys: Bytes) -> RpcResult<bool>
Checks if the keystore has private keys for the given session public keys. Read more
source§fn has_key(&self, public_key: Bytes, key_type: String) -> RpcResult<bool>
fn has_key(&self, public_key: Bytes, key_type: String) -> RpcResult<bool>
Checks if the keystore has private keys for the given public key and key type. Read more
source§fn pending_extrinsics(&self) -> RpcResult<Vec<Bytes>>
fn pending_extrinsics(&self) -> RpcResult<Vec<Bytes>>
Returns all pending extrinsics, potentially grouped by sender.
source§fn remove_extrinsic(
&self,
bytes_or_hash: Vec<ExtrinsicOrHash<TxHash<P>>>
) -> RpcResult<Vec<TxHash<P>>>
fn remove_extrinsic( &self, bytes_or_hash: Vec<ExtrinsicOrHash<TxHash<P>>> ) -> RpcResult<Vec<TxHash<P>>>
Remove given extrinsic from the pool and temporarily ban it to prevent reimporting.
source§fn watch_extrinsic(
&self,
sink: SubscriptionSink,
xt: Bytes
) -> SubscriptionResult
fn watch_extrinsic( &self, sink: SubscriptionSink, xt: Bytes ) -> SubscriptionResult
Submit an extrinsic to watch. Read more
Auto Trait Implementations§
impl<P, Client> !RefUnwindSafe for Author<P, Client>
impl<P, Client> Send for Author<P, Client>where Client: Send + Sync, P: Send + Sync,
impl<P, Client> Sync for Author<P, Client>where Client: Send + Sync, P: Send + Sync,
impl<P, Client> Unpin for Author<P, Client>
impl<P, Client> !UnwindSafe for Author<P, Client>
Blanket Implementations§
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, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§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 Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.