Struct sc_rpc::state::State [−][src]
pub struct State<Block, Client> { /* fields omitted */ }
Expand description
State API with subscriptions support.
Trait Implementations
fn trace_block(
&self,
block: Block::Hash,
targets: Option<String>,
storage_keys: Option<String>
) -> FutureResult<TraceBlockResponse>
fn trace_block(
&self,
block: Block::Hash,
targets: Option<String>,
storage_keys: Option<String>
) -> FutureResult<TraceBlockResponse>
Re-execute the given block with the tracing targets given in targets
and capture all state changes.
Note: requires the node to run with --rpc-methods=Unsafe
.
Note: requires runtimes compiled with wasm tracing support, --features with-tracing
.
Call a contract at a block’s state.
fn storage_keys(
&self,
key_prefix: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Vec<StorageKey>>
fn storage_keys(
&self,
key_prefix: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Vec<StorageKey>>
DEPRECATED: Please use state_getKeysPaged
with proper paging support.
Returns the keys with prefix, leave empty to get all the keys. Read more
fn storage_pairs(
&self,
key_prefix: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Vec<(StorageKey, StorageData)>>
fn storage_pairs(
&self,
key_prefix: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Vec<(StorageKey, StorageData)>>
Returns the keys with prefix, leave empty to get all the keys
fn storage_keys_paged(
&self,
prefix: Option<StorageKey>,
count: u32,
start_key: Option<StorageKey>,
block: Option<Block::Hash>
) -> FutureResult<Vec<StorageKey>>
fn storage_keys_paged(
&self,
prefix: Option<StorageKey>,
count: u32,
start_key: Option<StorageKey>,
block: Option<Block::Hash>
) -> FutureResult<Vec<StorageKey>>
Returns the keys with prefix with pagination support.
Up to count
keys will be returned.
If start_key
is passed, return next keys in storage in lexicographic order. Read more
fn storage(
&self,
key: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Option<StorageData>>
fn storage(
&self,
key: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Option<StorageData>>
Returns a storage entry at a specific block’s state.
fn storage_hash(
&self,
key: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Option<Block::Hash>>
fn storage_hash(
&self,
key: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Option<Block::Hash>>
Returns the hash of a storage entry at a block’s state.
fn storage_size(
&self,
key: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Option<u64>>
fn storage_size(
&self,
key: StorageKey,
block: Option<Block::Hash>
) -> FutureResult<Option<u64>>
Returns the size of a storage entry at a block’s state.
Returns the runtime metadata as an opaque blob.
fn query_storage(
&self,
keys: Vec<StorageKey>,
from: Block::Hash,
to: Option<Block::Hash>
) -> FutureResult<Vec<StorageChangeSet<Block::Hash>>>
fn query_storage(
&self,
keys: Vec<StorageKey>,
from: Block::Hash,
to: Option<Block::Hash>
) -> FutureResult<Vec<StorageChangeSet<Block::Hash>>>
Query historical storage entries (by key) starting from a block given as the second parameter. Read more
fn query_storage_at(
&self,
keys: Vec<StorageKey>,
at: Option<Block::Hash>
) -> FutureResult<Vec<StorageChangeSet<Block::Hash>>>
fn query_storage_at(
&self,
keys: Vec<StorageKey>,
at: Option<Block::Hash>
) -> FutureResult<Vec<StorageChangeSet<Block::Hash>>>
Query storage entries (by key) starting at block hash given as the second parameter.
fn read_proof(
&self,
keys: Vec<StorageKey>,
block: Option<Block::Hash>
) -> FutureResult<ReadProof<Block::Hash>>
fn read_proof(
&self,
keys: Vec<StorageKey>,
block: Option<Block::Hash>
) -> FutureResult<ReadProof<Block::Hash>>
Returns proof of storage entries at a specific block’s state.
fn subscribe_storage(
&self,
meta: Self::Metadata,
subscriber: Subscriber<StorageChangeSet<Block::Hash>>,
keys: Option<Vec<StorageKey>>
)
fn subscribe_storage(
&self,
meta: Self::Metadata,
subscriber: Subscriber<StorageChangeSet<Block::Hash>>,
keys: Option<Vec<StorageKey>>
)
New storage subscription
fn unsubscribe_storage(
&self,
meta: Option<Self::Metadata>,
id: SubscriptionId
) -> RpcResult<bool>
fn unsubscribe_storage(
&self,
meta: Option<Self::Metadata>,
id: SubscriptionId
) -> RpcResult<bool>
Unsubscribe from storage subscription
Get the runtime version.
fn subscribe_runtime_version(
&self,
meta: Self::Metadata,
subscriber: Subscriber<RuntimeVersion>
)
fn subscribe_runtime_version(
&self,
meta: Self::Metadata,
subscriber: Subscriber<RuntimeVersion>
)
New runtime version subscription
fn unsubscribe_runtime_version(
&self,
meta: Option<Self::Metadata>,
id: SubscriptionId
) -> RpcResult<bool>
fn unsubscribe_runtime_version(
&self,
meta: Option<Self::Metadata>,
id: SubscriptionId
) -> RpcResult<bool>
Unsubscribe from runtime version subscription
fn to_delegate(self) -> IoDelegate<Self, Self::Metadata> where
Hash: Send + Sync + 'static + Serialize + DeserializeOwned,
fn to_delegate(self) -> IoDelegate<Self, Self::Metadata> where
Hash: Send + Sync + 'static + Serialize + DeserializeOwned,
Create an IoDelegate
, wiring rpc calls to the trait methods.
Auto Trait Implementations
impl<Block, Client> !RefUnwindSafe for State<Block, Client>
impl<Block, Client> !UnwindSafe for State<Block, Client>
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self
The counterpart to unchecked_from
.
Consume self to return an equivalent value of T
.
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more