Trait sc_transaction_graph::ChainApi [−][src]
Concrete extrinsic validation and query logic.
Associated Types
type Block: BlockT
[src]
Block type.
type Error: From<Error> + IntoPoolError
[src]
Error type.
type ValidationFuture: Future<Output = Result<TransactionValidity, Self::Error>> + Send + Unpin
[src]
Validate transaction future.
type BodyFuture: Future<Output = Result<Option<Vec<<Self::Block as Block>::Extrinsic>>, Self::Error>> + Unpin + Send + 'static
[src]
Body future (since block body might be remote)
Required methods
fn validate_transaction(
&self,
at: &BlockId<Self::Block>,
source: TransactionSource,
uxt: ExtrinsicFor<Self>
) -> Self::ValidationFuture
[src]
&self,
at: &BlockId<Self::Block>,
source: TransactionSource,
uxt: ExtrinsicFor<Self>
) -> Self::ValidationFuture
Verify extrinsic at given block.
fn block_id_to_number(
&self,
at: &BlockId<Self::Block>
) -> Result<Option<NumberFor<Self>>, Self::Error>
[src]
&self,
at: &BlockId<Self::Block>
) -> Result<Option<NumberFor<Self>>, Self::Error>
Returns a block number given the block id.
fn block_id_to_hash(
&self,
at: &BlockId<Self::Block>
) -> Result<Option<<Self::Block as BlockT>::Hash>, Self::Error>
[src]
&self,
at: &BlockId<Self::Block>
) -> Result<Option<<Self::Block as BlockT>::Hash>, Self::Error>
Returns a block hash given the block id.
fn hash_and_length(
&self,
uxt: &ExtrinsicFor<Self>
) -> (ExtrinsicHash<Self>, usize)
[src]
&self,
uxt: &ExtrinsicFor<Self>
) -> (ExtrinsicHash<Self>, usize)
Returns hash and encoding length of the extrinsic.
fn block_body(&self, at: &BlockId<Self::Block>) -> Self::BodyFuture
[src]
Returns a block body given the block id.