mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
37 lines
1.9 KiB
Rust
37 lines
1.9 KiB
Rust
use jsonrpsee::{core::RpcResult, proc_macros::rpc};
|
|
use reth_primitives::Address;
|
|
use reth_rpc_types::txpool::{TxpoolContent, TxpoolContentFrom, TxpoolInspect, TxpoolStatus};
|
|
|
|
/// Txpool rpc interface.
|
|
#[cfg_attr(not(feature = "client"), rpc(server))]
|
|
#[cfg_attr(feature = "client", rpc(server, client))]
|
|
#[async_trait::async_trait]
|
|
pub trait TxPoolApi {
|
|
/// Returns the number of transactions currently pending for inclusion in the next block(s), as
|
|
/// well as the ones that are being scheduled for future execution only.
|
|
/// Ref: [Here](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_status)
|
|
#[method(name = "txpool_status")]
|
|
async fn txpool_status(&self) -> RpcResult<TxpoolStatus>;
|
|
|
|
/// Returns a summary of all the transactions currently pending for inclusion in the next
|
|
/// block(s), as well as the ones that are being scheduled for future execution only.
|
|
///
|
|
/// See [here](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_inspect) for more details
|
|
#[method(name = "txpool_inspect")]
|
|
async fn txpool_inspect(&self) -> RpcResult<TxpoolInspect>;
|
|
|
|
/// Retrieves the transactions contained within the txpool, returning pending as well as queued
|
|
/// transactions of this address, grouped by nonce.
|
|
///
|
|
/// See [here](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_contentFrom) for more details
|
|
#[method(name = "txpool_contentFrom")]
|
|
async fn txpool_content_from(&self, from: Address) -> RpcResult<TxpoolContentFrom>;
|
|
|
|
/// Returns the details of all transactions currently pending for inclusion in the next
|
|
/// block(s), as well as the ones that are being scheduled for future execution only.
|
|
///
|
|
/// See [here](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_content) for more details
|
|
#[method(name = "txpool_content")]
|
|
async fn txpool_content(&self) -> RpcResult<TxpoolContent>;
|
|
}
|