pub struct BlockchainProvider2<N: NodeTypesWithDB> { /* private fields */ }
Expand description
The main type for interacting with the blockchain.
This type serves as the main entry point for interacting with the blockchain and provides data from database storage and from the blockchain tree (pending state etc.) It is a simple wrapper type that holds an instance of the database and the blockchain tree.
Implementations§
Source§impl<N: ProviderNodeTypes> BlockchainProvider2<N>
impl<N: ProviderNodeTypes> BlockchainProvider2<N>
Sourcepub fn new(storage: ProviderFactory<N>) -> ProviderResult<Self>
pub fn new(storage: ProviderFactory<N>) -> ProviderResult<Self>
Create a new BlockchainProvider2
using only the storage, fetching the latest
header from the database to initialize the provider.
Sourcepub fn with_latest(
storage: ProviderFactory<N>,
latest: SealedHeader,
) -> ProviderResult<Self>
pub fn with_latest( storage: ProviderFactory<N>, latest: SealedHeader, ) -> ProviderResult<Self>
Create new provider instance that wraps the database and the blockchain tree, using the provided latest header to initialize the chain info tracker.
This returns a ProviderResult
since it tries the retrieve the last finalized header from
database
.
Sourcepub fn canonical_in_memory_state(&self) -> CanonicalInMemoryState
pub fn canonical_in_memory_state(&self) -> CanonicalInMemoryState
Gets a clone of canonical_in_memory_state
.
Sourcepub fn consistent_provider(&self) -> ProviderResult<ConsistentProvider<N>>
pub fn consistent_provider(&self) -> ProviderResult<ConsistentProvider<N>>
Returns a provider with a created DbTx
inside, which allows fetching data from the
database using different types of providers. Example: HeaderProvider
BlockHashReader
. This may fail if the inner read database transaction fails to open.
Sourcepub fn get_state(
&self,
range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Option<ExecutionOutcome>>
pub fn get_state( &self, range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Option<ExecutionOutcome>>
Return the last N blocks of state, recreating the ExecutionOutcome
.
If the range is empty, or there are no blocks for the given range, then this returns None
.
Trait Implementations§
Source§impl<N: ProviderNodeTypes> AccountReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> AccountReader for BlockchainProvider2<N>
Source§fn basic_account(&self, address: Address) -> ProviderResult<Option<Account>>
fn basic_account(&self, address: Address) -> ProviderResult<Option<Account>>
Get basic account information.
Source§impl<N: ProviderNodeTypes> BlockHashReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> BlockHashReader for BlockchainProvider2<N>
Source§fn block_hash(&self, number: u64) -> ProviderResult<Option<B256>>
fn block_hash(&self, number: u64) -> ProviderResult<Option<B256>>
None
if no block with this number
exists.Source§fn canonical_hashes_range(
&self,
start: BlockNumber,
end: BlockNumber,
) -> ProviderResult<Vec<B256>>
fn canonical_hashes_range( &self, start: BlockNumber, end: BlockNumber, ) -> ProviderResult<Vec<B256>>
§fn convert_block_hash(
&self,
hash_or_number: HashOrNumber,
) -> Result<Option<FixedBytes<32>>, ProviderError>
fn convert_block_hash( &self, hash_or_number: HashOrNumber, ) -> Result<Option<FixedBytes<32>>, ProviderError>
None
if no block with this number
exists.Source§impl<N: ProviderNodeTypes> BlockIdReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> BlockIdReader for BlockchainProvider2<N>
Source§fn pending_block_num_hash(&self) -> ProviderResult<Option<BlockNumHash>>
fn pending_block_num_hash(&self) -> ProviderResult<Option<BlockNumHash>>
Source§fn safe_block_num_hash(&self) -> ProviderResult<Option<BlockNumHash>>
fn safe_block_num_hash(&self) -> ProviderResult<Option<BlockNumHash>>
Source§fn finalized_block_num_hash(&self) -> ProviderResult<Option<BlockNumHash>>
fn finalized_block_num_hash(&self) -> ProviderResult<Option<BlockNumHash>>
§fn convert_block_number(
&self,
num: BlockNumberOrTag,
) -> Result<Option<u64>, ProviderError>
fn convert_block_number( &self, num: BlockNumberOrTag, ) -> Result<Option<u64>, ProviderError>
BlockNumberOrTag
variants to a block number.§fn block_hash_for_id(
&self,
block_id: BlockId,
) -> Result<Option<FixedBytes<32>>, ProviderError>
fn block_hash_for_id( &self, block_id: BlockId, ) -> Result<Option<FixedBytes<32>>, ProviderError>
§fn block_number_for_id(
&self,
block_id: BlockId,
) -> Result<Option<u64>, ProviderError>
fn block_number_for_id( &self, block_id: BlockId, ) -> Result<Option<u64>, ProviderError>
§fn safe_block_number(&self) -> Result<Option<u64>, ProviderError>
fn safe_block_number(&self) -> Result<Option<u64>, ProviderError>
§fn finalized_block_number(&self) -> Result<Option<u64>, ProviderError>
fn finalized_block_number(&self) -> Result<Option<u64>, ProviderError>
§fn safe_block_hash(&self) -> Result<Option<FixedBytes<32>>, ProviderError>
fn safe_block_hash(&self) -> Result<Option<FixedBytes<32>>, ProviderError>
§fn finalized_block_hash(&self) -> Result<Option<FixedBytes<32>>, ProviderError>
fn finalized_block_hash(&self) -> Result<Option<FixedBytes<32>>, ProviderError>
Source§impl<N: ProviderNodeTypes> BlockNumReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> BlockNumReader for BlockchainProvider2<N>
Source§fn chain_info(&self) -> ProviderResult<ChainInfo>
fn chain_info(&self) -> ProviderResult<ChainInfo>
Source§fn best_block_number(&self) -> ProviderResult<BlockNumber>
fn best_block_number(&self) -> ProviderResult<BlockNumber>
Source§fn last_block_number(&self) -> ProviderResult<BlockNumber>
fn last_block_number(&self) -> ProviderResult<BlockNumber>
Source§fn block_number(&self, hash: B256) -> ProviderResult<Option<BlockNumber>>
fn block_number(&self, hash: B256) -> ProviderResult<Option<BlockNumber>>
BlockNumber
for the given hash. Returns None
if no block with this hash exists.§fn convert_hash_or_number(
&self,
id: HashOrNumber,
) -> Result<Option<u64>, ProviderError>
fn convert_hash_or_number( &self, id: HashOrNumber, ) -> Result<Option<u64>, ProviderError>
BlockHashOrNumber
. Returns None
if no block with
this hash exists. If the BlockHashOrNumber
is a Number
, it is returned as is.§fn convert_number(
&self,
id: HashOrNumber,
) -> Result<Option<FixedBytes<32>>, ProviderError>
fn convert_number( &self, id: HashOrNumber, ) -> Result<Option<FixedBytes<32>>, ProviderError>
BlockHashOrNumber
. Returns None
if no block with this
number exists. If the BlockHashOrNumber
is a Hash
, it is returned as is.Source§impl<N: ProviderNodeTypes> BlockReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> BlockReader for BlockchainProvider2<N>
Source§fn block_with_senders(
&self,
id: BlockHashOrNumber,
transaction_kind: TransactionVariant,
) -> ProviderResult<Option<BlockWithSenders>>
fn block_with_senders( &self, id: BlockHashOrNumber, transaction_kind: TransactionVariant, ) -> ProviderResult<Option<BlockWithSenders>>
Returns the block with senders with matching number or hash from database.
NOTE: If TransactionVariant::NoHash
is provided then the transactions have invalid
hashes, since they would need to be calculated on the spot, and we want fast querying.
Returns None
if block is not found.
Source§fn find_block_by_hash(
&self,
hash: B256,
source: BlockSource,
) -> ProviderResult<Option<Block>>
fn find_block_by_hash( &self, hash: B256, source: BlockSource, ) -> ProviderResult<Option<Block>>
Source§fn block(&self, id: BlockHashOrNumber) -> ProviderResult<Option<Block>>
fn block(&self, id: BlockHashOrNumber) -> ProviderResult<Option<Block>>
Source§fn pending_block(&self) -> ProviderResult<Option<SealedBlock>>
fn pending_block(&self) -> ProviderResult<Option<SealedBlock>>
Source§fn pending_block_with_senders(
&self,
) -> ProviderResult<Option<SealedBlockWithSenders>>
fn pending_block_with_senders( &self, ) -> ProviderResult<Option<SealedBlockWithSenders>>
Source§fn pending_block_and_receipts(
&self,
) -> ProviderResult<Option<(SealedBlock, Vec<Receipt>)>>
fn pending_block_and_receipts( &self, ) -> ProviderResult<Option<(SealedBlock, Vec<Receipt>)>>
Source§fn ommers(&self, id: BlockHashOrNumber) -> ProviderResult<Option<Vec<Header>>>
fn ommers(&self, id: BlockHashOrNumber) -> ProviderResult<Option<Vec<Header>>>
Source§fn block_body_indices(
&self,
number: BlockNumber,
) -> ProviderResult<Option<StoredBlockBodyIndices>>
fn block_body_indices( &self, number: BlockNumber, ) -> ProviderResult<Option<StoredBlockBodyIndices>>
Source§fn sealed_block_with_senders(
&self,
id: BlockHashOrNumber,
transaction_kind: TransactionVariant,
) -> ProviderResult<Option<SealedBlockWithSenders>>
fn sealed_block_with_senders( &self, id: BlockHashOrNumber, transaction_kind: TransactionVariant, ) -> ProviderResult<Option<SealedBlockWithSenders>>
Source§fn block_range(
&self,
range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Vec<Block>>
fn block_range( &self, range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<Block>>
Source§fn block_with_senders_range(
&self,
range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Vec<BlockWithSenders>>
fn block_with_senders_range( &self, range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<BlockWithSenders>>
Source§fn sealed_block_with_senders_range(
&self,
range: RangeInclusive<BlockNumber>,
) -> ProviderResult<Vec<SealedBlockWithSenders>>
fn sealed_block_with_senders_range( &self, range: RangeInclusive<BlockNumber>, ) -> ProviderResult<Vec<SealedBlockWithSenders>>
§fn block_by_hash(
&self,
hash: FixedBytes<32>,
) -> Result<Option<Block>, ProviderError>
fn block_by_hash( &self, hash: FixedBytes<32>, ) -> Result<Option<Block>, ProviderError>
§fn block_by_number(&self, num: u64) -> Result<Option<Block>, ProviderError>
fn block_by_number(&self, num: u64) -> Result<Option<Block>, ProviderError>
Source§impl<N: ProviderNodeTypes> BlockReaderIdExt for BlockchainProvider2<N>where
Self: BlockReader + ReceiptProviderIdExt,
impl<N: ProviderNodeTypes> BlockReaderIdExt for BlockchainProvider2<N>where
Self: BlockReader + ReceiptProviderIdExt,
Source§fn block_by_id(&self, id: BlockId) -> ProviderResult<Option<Block>>
fn block_by_id(&self, id: BlockId) -> ProviderResult<Option<Block>>
BlockId
] from the database. Read moreSource§fn header_by_number_or_tag(
&self,
id: BlockNumberOrTag,
) -> ProviderResult<Option<Header>>
fn header_by_number_or_tag( &self, id: BlockNumberOrTag, ) -> ProviderResult<Option<Header>>
Source§fn sealed_header_by_number_or_tag(
&self,
id: BlockNumberOrTag,
) -> ProviderResult<Option<SealedHeader>>
fn sealed_header_by_number_or_tag( &self, id: BlockNumberOrTag, ) -> ProviderResult<Option<SealedHeader>>
Source§fn sealed_header_by_id(
&self,
id: BlockId,
) -> ProviderResult<Option<SealedHeader>>
fn sealed_header_by_id( &self, id: BlockId, ) -> ProviderResult<Option<SealedHeader>>
BlockId
from the database. Read moreSource§fn header_by_id(&self, id: BlockId) -> ProviderResult<Option<Header>>
fn header_by_id(&self, id: BlockId) -> ProviderResult<Option<Header>>
BlockId
from the database. Read moreSource§fn ommers_by_id(&self, id: BlockId) -> ProviderResult<Option<Vec<Header>>>
fn ommers_by_id(&self, id: BlockId) -> ProviderResult<Option<Vec<Header>>>
BlockId
from the database. Read more§fn block_by_number_or_tag(
&self,
id: BlockNumberOrTag,
) -> Result<Option<Block>, ProviderError>
fn block_by_number_or_tag( &self, id: BlockNumberOrTag, ) -> Result<Option<Block>, ProviderError>
§fn pending_header(&self) -> Result<Option<SealedHeader>, ProviderError>
fn pending_header(&self) -> Result<Option<SealedHeader>, ProviderError>
§fn latest_header(&self) -> Result<Option<SealedHeader>, ProviderError>
fn latest_header(&self) -> Result<Option<SealedHeader>, ProviderError>
§fn safe_header(&self) -> Result<Option<SealedHeader>, ProviderError>
fn safe_header(&self) -> Result<Option<SealedHeader>, ProviderError>
§fn finalized_header(&self) -> Result<Option<SealedHeader>, ProviderError>
fn finalized_header(&self) -> Result<Option<SealedHeader>, ProviderError>
§fn block_with_senders_by_id(
&self,
id: BlockId,
transaction_kind: TransactionVariant,
) -> Result<Option<BlockWithSenders>, ProviderError>
fn block_with_senders_by_id( &self, id: BlockId, transaction_kind: TransactionVariant, ) -> Result<Option<BlockWithSenders>, ProviderError>
BlockId
]. Read more§fn ommers_by_number_or_tag(
&self,
id: BlockNumberOrTag,
) -> Result<Option<Vec<Header>>, ProviderError>
fn ommers_by_number_or_tag( &self, id: BlockNumberOrTag, ) -> Result<Option<Vec<Header>>, ProviderError>
Source§impl<N: NodeTypesWithDB> CanonChainTracker for BlockchainProvider2<N>where
Self: BlockReader,
impl<N: NodeTypesWithDB> CanonChainTracker for BlockchainProvider2<N>where
Self: BlockReader,
Source§fn on_forkchoice_update_received(&self, _update: &ForkchoiceState)
fn on_forkchoice_update_received(&self, _update: &ForkchoiceState)
Source§fn last_received_update_timestamp(&self) -> Option<Instant>
fn last_received_update_timestamp(&self) -> Option<Instant>
CanonChainTracker::on_forkchoice_update_received
)Source§fn on_transition_configuration_exchanged(&self)
fn on_transition_configuration_exchanged(&self)
Source§fn last_exchanged_transition_configuration_timestamp(&self) -> Option<Instant>
fn last_exchanged_transition_configuration_timestamp(&self) -> Option<Instant>
CanonChainTracker::on_transition_configuration_exchanged
)Source§fn set_canonical_head(&self, header: SealedHeader)
fn set_canonical_head(&self, header: SealedHeader)
Source§fn set_finalized(&self, header: SealedHeader)
fn set_finalized(&self, header: SealedHeader)
Source§impl<N: NodeTypesWithDB> CanonStateSubscriptions for BlockchainProvider2<N>
impl<N: NodeTypesWithDB> CanonStateSubscriptions for BlockchainProvider2<N>
Source§fn subscribe_to_canonical_state(&self) -> CanonStateNotifications
fn subscribe_to_canonical_state(&self) -> CanonStateNotifications
§fn canonical_state_stream(&self) -> CanonStateNotificationStream
fn canonical_state_stream(&self) -> CanonStateNotificationStream
CanonStateNotification
.Source§impl<N: NodeTypesWithDB> ChainSpecProvider for BlockchainProvider2<N>
impl<N: NodeTypesWithDB> ChainSpecProvider for BlockchainProvider2<N>
Source§impl<N: ProviderNodeTypes> ChangeSetReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> ChangeSetReader for BlockchainProvider2<N>
Source§fn account_block_changeset(
&self,
block_number: BlockNumber,
) -> ProviderResult<Vec<AccountBeforeTx>>
fn account_block_changeset( &self, block_number: BlockNumber, ) -> ProviderResult<Vec<AccountBeforeTx>>
Source§impl<N: NodeTypesWithDB> Clone for BlockchainProvider2<N>
impl<N: NodeTypesWithDB> Clone for BlockchainProvider2<N>
Source§impl<N: ProviderNodeTypes> DatabaseProviderFactory for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> DatabaseProviderFactory for BlockchainProvider2<N>
Source§type Provider = <ProviderFactory<N> as DatabaseProviderFactory>::Provider
type Provider = <ProviderFactory<N> as DatabaseProviderFactory>::Provider
Source§type ProviderRW = <ProviderFactory<N> as DatabaseProviderFactory>::ProviderRW
type ProviderRW = <ProviderFactory<N> as DatabaseProviderFactory>::ProviderRW
Source§fn database_provider_ro(&self) -> ProviderResult<Self::Provider>
fn database_provider_ro(&self) -> ProviderResult<Self::Provider>
Source§fn database_provider_rw(&self) -> ProviderResult<Self::ProviderRW>
fn database_provider_rw(&self) -> ProviderResult<Self::ProviderRW>
Source§impl<N: Debug + NodeTypesWithDB> Debug for BlockchainProvider2<N>
impl<N: Debug + NodeTypesWithDB> Debug for BlockchainProvider2<N>
Source§impl<N: ProviderNodeTypes> EvmEnvProvider for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> EvmEnvProvider for BlockchainProvider2<N>
Source§fn fill_env_at<EvmConfig>(
&self,
cfg: &mut CfgEnvWithHandlerCfg,
block_env: &mut BlockEnv,
at: BlockHashOrNumber,
evm_config: EvmConfig,
) -> ProviderResult<()>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
fn fill_env_at<EvmConfig>(
&self,
cfg: &mut CfgEnvWithHandlerCfg,
block_env: &mut BlockEnv,
at: BlockHashOrNumber,
evm_config: EvmConfig,
) -> ProviderResult<()>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
CfgEnvWithHandlerCfg
] and [BlockEnv] fields with values specific to the given
[BlockHashOrNumber].Source§fn fill_env_with_header<EvmConfig>(
&self,
cfg: &mut CfgEnvWithHandlerCfg,
block_env: &mut BlockEnv,
header: &Header,
evm_config: EvmConfig,
) -> ProviderResult<()>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
fn fill_env_with_header<EvmConfig>(
&self,
cfg: &mut CfgEnvWithHandlerCfg,
block_env: &mut BlockEnv,
header: &Header,
evm_config: EvmConfig,
) -> ProviderResult<()>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
CfgEnvWithHandlerCfg
] and [BlockEnv] fields with values specific to the given
[Header].Source§fn fill_cfg_env_at<EvmConfig>(
&self,
cfg: &mut CfgEnvWithHandlerCfg,
at: BlockHashOrNumber,
evm_config: EvmConfig,
) -> ProviderResult<()>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
fn fill_cfg_env_at<EvmConfig>(
&self,
cfg: &mut CfgEnvWithHandlerCfg,
at: BlockHashOrNumber,
evm_config: EvmConfig,
) -> ProviderResult<()>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
CfgEnvWithHandlerCfg
] fields with values specific to the given
[BlockHashOrNumber].Source§fn fill_cfg_env_with_header<EvmConfig>(
&self,
cfg: &mut CfgEnvWithHandlerCfg,
header: &Header,
evm_config: EvmConfig,
) -> ProviderResult<()>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
fn fill_cfg_env_with_header<EvmConfig>(
&self,
cfg: &mut CfgEnvWithHandlerCfg,
header: &Header,
evm_config: EvmConfig,
) -> ProviderResult<()>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
CfgEnvWithHandlerCfg
] fields with values specific to the given [Header].§fn env_with_header<EvmConfig>(
&self,
header: &Header,
evm_config: EvmConfig,
) -> Result<(CfgEnvWithHandlerCfg, BlockEnv), ProviderError>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
fn env_with_header<EvmConfig>(
&self,
header: &Header,
evm_config: EvmConfig,
) -> Result<(CfgEnvWithHandlerCfg, BlockEnv), ProviderError>where
EvmConfig: ConfigureEvmEnv<Header = Header>,
CfgEnvWithHandlerCfg
] and [BlockEnv] fields with values specific to the
given [Header].Source§impl<N: NodeTypesWithDB> ForkChoiceSubscriptions for BlockchainProvider2<N>
impl<N: NodeTypesWithDB> ForkChoiceSubscriptions for BlockchainProvider2<N>
Source§fn subscribe_safe_block(&self) -> ForkChoiceNotifications
fn subscribe_safe_block(&self) -> ForkChoiceNotifications
Source§fn subscribe_finalized_block(&self) -> ForkChoiceNotifications
fn subscribe_finalized_block(&self) -> ForkChoiceNotifications
§fn safe_block_stream(&self) -> ForkChoiceStream<SealedHeader>
fn safe_block_stream(&self) -> ForkChoiceStream<SealedHeader>
§fn finalized_block_stream(&self) -> ForkChoiceStream<SealedHeader>
fn finalized_block_stream(&self) -> ForkChoiceStream<SealedHeader>
Source§impl<N: ProviderNodeTypes> HeaderProvider for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> HeaderProvider for BlockchainProvider2<N>
Source§fn header(&self, block_hash: &BlockHash) -> ProviderResult<Option<Header>>
fn header(&self, block_hash: &BlockHash) -> ProviderResult<Option<Header>>
Source§fn header_by_number(&self, num: BlockNumber) -> ProviderResult<Option<Header>>
fn header_by_number(&self, num: BlockNumber) -> ProviderResult<Option<Header>>
Source§fn header_td(&self, hash: &BlockHash) -> ProviderResult<Option<U256>>
fn header_td(&self, hash: &BlockHash) -> ProviderResult<Option<U256>>
Source§fn header_td_by_number(
&self,
number: BlockNumber,
) -> ProviderResult<Option<U256>>
fn header_td_by_number( &self, number: BlockNumber, ) -> ProviderResult<Option<U256>>
Source§fn headers_range(
&self,
range: impl RangeBounds<BlockNumber>,
) -> ProviderResult<Vec<Header>>
fn headers_range( &self, range: impl RangeBounds<BlockNumber>, ) -> ProviderResult<Vec<Header>>
Source§fn sealed_header(
&self,
number: BlockNumber,
) -> ProviderResult<Option<SealedHeader>>
fn sealed_header( &self, number: BlockNumber, ) -> ProviderResult<Option<SealedHeader>>
Source§fn sealed_headers_range(
&self,
range: impl RangeBounds<BlockNumber>,
) -> ProviderResult<Vec<SealedHeader>>
fn sealed_headers_range( &self, range: impl RangeBounds<BlockNumber>, ) -> ProviderResult<Vec<SealedHeader>>
Source§fn sealed_headers_while(
&self,
range: impl RangeBounds<BlockNumber>,
predicate: impl FnMut(&SealedHeader) -> bool,
) -> ProviderResult<Vec<SealedHeader>>
fn sealed_headers_while( &self, range: impl RangeBounds<BlockNumber>, predicate: impl FnMut(&SealedHeader) -> bool, ) -> ProviderResult<Vec<SealedHeader>>
predicate
returns true
or the range is exhausted.§fn is_known(&self, block_hash: &FixedBytes<32>) -> Result<bool, ProviderError>
fn is_known(&self, block_hash: &FixedBytes<32>) -> Result<bool, ProviderError>
§fn sealed_header_by_hash(
&self,
block_hash: FixedBytes<32>,
) -> Result<Option<SealedHeader>, ProviderError>
fn sealed_header_by_hash( &self, block_hash: FixedBytes<32>, ) -> Result<Option<SealedHeader>, ProviderError>
§fn header_by_hash_or_number(
&self,
hash_or_num: HashOrNumber,
) -> Result<Option<Header>, ProviderError>
fn header_by_hash_or_number( &self, hash_or_num: HashOrNumber, ) -> Result<Option<Header>, ProviderError>
Source§impl<N: ProviderNodeTypes> PruneCheckpointReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> PruneCheckpointReader for BlockchainProvider2<N>
Source§fn get_prune_checkpoint(
&self,
segment: PruneSegment,
) -> ProviderResult<Option<PruneCheckpoint>>
fn get_prune_checkpoint( &self, segment: PruneSegment, ) -> ProviderResult<Option<PruneCheckpoint>>
Source§fn get_prune_checkpoints(
&self,
) -> ProviderResult<Vec<(PruneSegment, PruneCheckpoint)>>
fn get_prune_checkpoints( &self, ) -> ProviderResult<Vec<(PruneSegment, PruneCheckpoint)>>
Source§impl<N: ProviderNodeTypes> ReceiptProvider for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> ReceiptProvider for BlockchainProvider2<N>
Source§fn receipt(&self, id: TxNumber) -> ProviderResult<Option<Receipt>>
fn receipt(&self, id: TxNumber) -> ProviderResult<Option<Receipt>>
Source§fn receipt_by_hash(&self, hash: TxHash) -> ProviderResult<Option<Receipt>>
fn receipt_by_hash(&self, hash: TxHash) -> ProviderResult<Option<Receipt>>
Source§fn receipts_by_block(
&self,
block: BlockHashOrNumber,
) -> ProviderResult<Option<Vec<Receipt>>>
fn receipts_by_block( &self, block: BlockHashOrNumber, ) -> ProviderResult<Option<Vec<Receipt>>>
Source§fn receipts_by_tx_range(
&self,
range: impl RangeBounds<TxNumber>,
) -> ProviderResult<Vec<Receipt>>
fn receipts_by_tx_range( &self, range: impl RangeBounds<TxNumber>, ) -> ProviderResult<Vec<Receipt>>
Source§impl<N: ProviderNodeTypes> ReceiptProviderIdExt for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> ReceiptProviderIdExt for BlockchainProvider2<N>
Source§fn receipts_by_block_id(
&self,
block: BlockId,
) -> ProviderResult<Option<Vec<Receipt>>>
fn receipts_by_block_id( &self, block: BlockId, ) -> ProviderResult<Option<Vec<Receipt>>>
§fn receipts_by_number_or_tag(
&self,
number_or_tag: BlockNumberOrTag,
) -> Result<Option<Vec<Receipt>>, ProviderError>
fn receipts_by_number_or_tag( &self, number_or_tag: BlockNumberOrTag, ) -> Result<Option<Vec<Receipt>>, ProviderError>
BlockId
from the database. Read moreSource§impl<N: ProviderNodeTypes> StageCheckpointReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> StageCheckpointReader for BlockchainProvider2<N>
Source§fn get_stage_checkpoint(
&self,
id: StageId,
) -> ProviderResult<Option<StageCheckpoint>>
fn get_stage_checkpoint( &self, id: StageId, ) -> ProviderResult<Option<StageCheckpoint>>
Source§fn get_stage_checkpoint_progress(
&self,
id: StageId,
) -> ProviderResult<Option<Vec<u8>>>
fn get_stage_checkpoint_progress( &self, id: StageId, ) -> ProviderResult<Option<Vec<u8>>>
Source§fn get_all_checkpoints(&self) -> ProviderResult<Vec<(String, StageCheckpoint)>>
fn get_all_checkpoints(&self) -> ProviderResult<Vec<(String, StageCheckpoint)>>
Source§impl<N: ProviderNodeTypes> StateProviderFactory for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> StateProviderFactory for BlockchainProvider2<N>
Source§fn latest(&self) -> ProviderResult<StateProviderBox>
fn latest(&self) -> ProviderResult<StateProviderBox>
Storage provider for latest block
Source§fn pending(&self) -> ProviderResult<StateProviderBox>
fn pending(&self) -> ProviderResult<StateProviderBox>
Returns the state provider for pending state.
If there’s no pending block available then the latest state provider is returned:
Self::latest
Source§fn state_by_block_number_or_tag(
&self,
number_or_tag: BlockNumberOrTag,
) -> ProviderResult<StateProviderBox>
fn state_by_block_number_or_tag( &self, number_or_tag: BlockNumberOrTag, ) -> ProviderResult<StateProviderBox>
Returns a StateProviderBox
indexed by the given block number or tag.
Source§fn history_by_block_number(
&self,
block_number: BlockNumber,
) -> ProviderResult<StateProviderBox>
fn history_by_block_number( &self, block_number: BlockNumber, ) -> ProviderResult<StateProviderBox>
Source§fn history_by_block_hash(
&self,
block_hash: BlockHash,
) -> ProviderResult<StateProviderBox>
fn history_by_block_hash( &self, block_hash: BlockHash, ) -> ProviderResult<StateProviderBox>
Source§fn state_by_block_hash(
&self,
hash: BlockHash,
) -> ProviderResult<StateProviderBox>
fn state_by_block_hash( &self, hash: BlockHash, ) -> ProviderResult<StateProviderBox>
Source§fn pending_state_by_hash(
&self,
block_hash: B256,
) -> ProviderResult<Option<StateProviderBox>>
fn pending_state_by_hash( &self, block_hash: B256, ) -> ProviderResult<Option<StateProviderBox>>
§fn state_by_block_id(
&self,
block_id: BlockId,
) -> Result<Box<dyn StateProvider>, ProviderError>
fn state_by_block_id( &self, block_id: BlockId, ) -> Result<Box<dyn StateProvider>, ProviderError>
Source§impl<N: ProviderNodeTypes> StateReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> StateReader for BlockchainProvider2<N>
Source§fn get_state(
&self,
block: BlockNumber,
) -> ProviderResult<Option<ExecutionOutcome>>
fn get_state( &self, block: BlockNumber, ) -> ProviderResult<Option<ExecutionOutcome>>
Re-constructs the ExecutionOutcome
from in-memory and database state, if necessary.
If data for the block does not exist, this will return None
.
NOTE: This cannot be called safely in a loop outside of the blockchain tree thread. This is
because the [CanonicalInMemoryState
] could change during a reorg, causing results to be
inconsistent. Currently this can safely be called within the blockchain tree thread,
because the tree thread is responsible for modifying the [CanonicalInMemoryState
] in the
first place.
Source§impl<N: ProviderNodeTypes> StaticFileProviderFactory for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> StaticFileProviderFactory for BlockchainProvider2<N>
Source§fn static_file_provider(&self) -> StaticFileProvider
fn static_file_provider(&self) -> StaticFileProvider
Source§impl<N: ProviderNodeTypes> StorageChangeSetReader for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> StorageChangeSetReader for BlockchainProvider2<N>
Source§fn storage_changeset(
&self,
block_number: BlockNumber,
) -> ProviderResult<Vec<(BlockNumberAddress, StorageEntry)>>
fn storage_changeset( &self, block_number: BlockNumber, ) -> ProviderResult<Vec<(BlockNumberAddress, StorageEntry)>>
Source§impl<N: ProviderNodeTypes> TransactionsProvider for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> TransactionsProvider for BlockchainProvider2<N>
Source§fn transaction_id(&self, tx_hash: TxHash) -> ProviderResult<Option<TxNumber>>
fn transaction_id(&self, tx_hash: TxHash) -> ProviderResult<Option<TxNumber>>
Source§fn transaction_by_id(
&self,
id: TxNumber,
) -> ProviderResult<Option<TransactionSigned>>
fn transaction_by_id( &self, id: TxNumber, ) -> ProviderResult<Option<TransactionSigned>>
Source§fn transaction_by_id_no_hash(
&self,
id: TxNumber,
) -> ProviderResult<Option<TransactionSignedNoHash>>
fn transaction_by_id_no_hash( &self, id: TxNumber, ) -> ProviderResult<Option<TransactionSignedNoHash>>
Source§fn transaction_by_hash(
&self,
hash: TxHash,
) -> ProviderResult<Option<TransactionSigned>>
fn transaction_by_hash( &self, hash: TxHash, ) -> ProviderResult<Option<TransactionSigned>>
Source§fn transaction_by_hash_with_meta(
&self,
tx_hash: TxHash,
) -> ProviderResult<Option<(TransactionSigned, TransactionMeta)>>
fn transaction_by_hash_with_meta( &self, tx_hash: TxHash, ) -> ProviderResult<Option<(TransactionSigned, TransactionMeta)>>
Source§fn transaction_block(&self, id: TxNumber) -> ProviderResult<Option<BlockNumber>>
fn transaction_block(&self, id: TxNumber) -> ProviderResult<Option<BlockNumber>>
Source§fn transactions_by_block(
&self,
id: BlockHashOrNumber,
) -> ProviderResult<Option<Vec<TransactionSigned>>>
fn transactions_by_block( &self, id: BlockHashOrNumber, ) -> ProviderResult<Option<Vec<TransactionSigned>>>
Source§fn transactions_by_block_range(
&self,
range: impl RangeBounds<BlockNumber>,
) -> ProviderResult<Vec<Vec<TransactionSigned>>>
fn transactions_by_block_range( &self, range: impl RangeBounds<BlockNumber>, ) -> ProviderResult<Vec<Vec<TransactionSigned>>>
Source§fn transactions_by_tx_range(
&self,
range: impl RangeBounds<TxNumber>,
) -> ProviderResult<Vec<TransactionSignedNoHash>>
fn transactions_by_tx_range( &self, range: impl RangeBounds<TxNumber>, ) -> ProviderResult<Vec<TransactionSignedNoHash>>
Source§fn senders_by_tx_range(
&self,
range: impl RangeBounds<TxNumber>,
) -> ProviderResult<Vec<Address>>
fn senders_by_tx_range( &self, range: impl RangeBounds<TxNumber>, ) -> ProviderResult<Vec<Address>>
Source§fn transaction_sender(&self, id: TxNumber) -> ProviderResult<Option<Address>>
fn transaction_sender(&self, id: TxNumber) -> ProviderResult<Option<Address>>
Source§impl<N: ProviderNodeTypes> WithdrawalsProvider for BlockchainProvider2<N>
impl<N: ProviderNodeTypes> WithdrawalsProvider for BlockchainProvider2<N>
Source§fn withdrawals_by_block(
&self,
id: BlockHashOrNumber,
timestamp: u64,
) -> ProviderResult<Option<Withdrawals>>
fn withdrawals_by_block( &self, id: BlockHashOrNumber, timestamp: u64, ) -> ProviderResult<Option<Withdrawals>>
Source§fn latest_withdrawal(&self) -> ProviderResult<Option<Withdrawal>>
fn latest_withdrawal(&self) -> ProviderResult<Option<Withdrawal>>
Auto Trait Implementations§
impl<N> Freeze for BlockchainProvider2<N>where
<N as NodeTypesWithDB>::DB: Freeze,
impl<N> !RefUnwindSafe for BlockchainProvider2<N>
impl<N> Send for BlockchainProvider2<N>
impl<N> Sync for BlockchainProvider2<N>
impl<N> Unpin for BlockchainProvider2<N>
impl<N> !UnwindSafe for BlockchainProvider2<N>
Blanket Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
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>
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 more§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T, N> FullProvider<N> for Twhere
N: NodeTypesWithDB,
T: DatabaseProviderFactory<DB = <N as NodeTypesWithDB>::DB> + StaticFileProviderFactory + BlockReaderIdExt + AccountReader + StateProviderFactory + EvmEnvProvider + ChainSpecProvider<ChainSpec = <N as NodeTypes>::ChainSpec> + ChangeSetReader + CanonStateSubscriptions + ForkChoiceSubscriptions + StageCheckpointReader + Clone + Unpin + 'static,
impl<T> MaybeDebug for Twhere
T: Debug,
impl<T> MaybeSendSync for T
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.