reth::rpc::api::servers::eth::helpers

Trait EthApiSpec

Source
pub trait EthApiSpec: RpcNodeCore{
    type Transaction;

    // Required methods
    fn starting_block(&self) -> Uint<256, 4>;
    fn signers(
        &self,
    ) -> &RwLock<RawRwLock, Vec<Box<dyn EthSigner<Self::Transaction>>>>;

    // Provided methods
    fn protocol_version(
        &self,
    ) -> impl Future<Output = Result<Uint<64, 1>, RethError>> + Send { ... }
    fn chain_id(&self) -> Uint<64, 1> { ... }
    fn chain_info(&self) -> Result<ChainInfo, RethError> { ... }
    fn accounts(&self) -> Vec<Address> { ... }
    fn is_syncing(&self) -> bool { ... }
    fn sync_status(&self) -> Result<SyncStatus, RethError> { ... }
}
Expand description

Eth API trait.

Defines core functionality of the eth API implementation.

Required Associated Types§

Source

type Transaction

The transaction type signers are using.

Required Methods§

Source

fn starting_block(&self) -> Uint<256, 4>

Returns the block node is started on.

Source

fn signers( &self, ) -> &RwLock<RawRwLock, Vec<Box<dyn EthSigner<Self::Transaction>>>>

Returns a handle to the signers owned by provider.

Provided Methods§

Source

fn protocol_version( &self, ) -> impl Future<Output = Result<Uint<64, 1>, RethError>> + Send

Returns the current ethereum protocol version.

Source

fn chain_id(&self) -> Uint<64, 1>

Returns the chain id

Source

fn chain_info(&self) -> Result<ChainInfo, RethError>

Returns provider chain info

Source

fn accounts(&self) -> Vec<Address>

Returns a list of addresses owned by provider.

Source

fn is_syncing(&self) -> bool

Returns true if the network is undergoing sync.

Source

fn sync_status(&self) -> Result<SyncStatus, RethError>

Returns the SyncStatus of the network

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a, T> EthApiSpec for &'a T

Source§

type Transaction = <T as EthApiSpec>::Transaction

Source§

fn starting_block(&self) -> Uint<256, 4>

Source§

fn signers( &self, ) -> &RwLock<RawRwLock, Vec<Box<dyn EthSigner<<&'a T as EthApiSpec>::Transaction>>>>

Source§

fn protocol_version( &self, ) -> impl Future<Output = Result<Uint<64, 1>, RethError>> + Send

Source§

fn chain_id(&self) -> Uint<64, 1>

Source§

fn chain_info(&self) -> Result<ChainInfo, RethError>

Source§

fn accounts(&self) -> Vec<Address>

Source§

fn is_syncing(&self) -> bool

Source§

fn sync_status(&self) -> Result<SyncStatus, RethError>

Source§

impl<T> EthApiSpec for Arc<T>

Source§

type Transaction = <T as EthApiSpec>::Transaction

Source§

fn starting_block(&self) -> Uint<256, 4>

Source§

fn signers( &self, ) -> &RwLock<RawRwLock, Vec<Box<dyn EthSigner<<Arc<T> as EthApiSpec>::Transaction>>>>

Source§

fn protocol_version( &self, ) -> impl Future<Output = Result<Uint<64, 1>, RethError>> + Send

Source§

fn chain_id(&self) -> Uint<64, 1>

Source§

fn chain_info(&self) -> Result<ChainInfo, RethError>

Source§

fn accounts(&self) -> Vec<Address>

Source§

fn is_syncing(&self) -> bool

Source§

fn sync_status(&self) -> Result<SyncStatus, RethError>

Implementors§

Source§

impl<Provider, Pool, Network, EvmConfig> EthApiSpec for EthApi<Provider, Pool, Network, EvmConfig>
where EthApi<Provider, Pool, Network, EvmConfig>: RpcNodeCore, <EthApi<Provider, Pool, Network, EvmConfig> as RpcNodeCore>::Provider: ChainSpecProvider + BlockNumReader + StageCheckpointReader, <<EthApi<Provider, Pool, Network, EvmConfig> as RpcNodeCore>::Provider as ChainSpecProvider>::ChainSpec: EthereumHardforks, <EthApi<Provider, Pool, Network, EvmConfig> as RpcNodeCore>::Network: NetworkInfo, Provider: BlockReader,