repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/backfill/stream.rs
crates/exex/exex/src/backfill/stream.rs
use super::job::BackfillJobResult; use crate::{BackfillJob, SingleBlockBackfillJob}; use alloy_primitives::BlockNumber; use futures::{ stream::{FuturesOrdered, Stream}, StreamExt, }; use reth_ethereum_primitives::EthPrimitives; use reth_evm::{ execute::{BlockExecutionError, BlockExecutionOutput}, Config...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/backfill/test_utils.rs
crates/exex/exex/src/backfill/test_utils.rs
use std::sync::Arc; use alloy_consensus::{constants::ETH_TO_WEI, BlockHeader, Header, TxEip2930}; use alloy_primitives::{b256, Address, TxKind, U256}; use reth_chainspec::{ChainSpec, ChainSpecBuilder, EthereumHardfork, MAINNET, MIN_TRANSACTION_GAS}; use reth_ethereum_primitives::{Block, BlockBody, Receipt, Transaction...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/backfill/mod.rs
crates/exex/exex/src/backfill/mod.rs
mod factory; mod job; mod stream; #[cfg(test)] mod test_utils; pub use factory::BackfillJobFactory; pub use job::{BackfillJob, SingleBlockBackfillJob}; pub use stream::StreamBackfillJob;
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/backfill/job.rs
crates/exex/exex/src/backfill/job.rs
use crate::StreamBackfillJob; use reth_evm::ConfigureEvm; use std::{ ops::RangeInclusive, time::{Duration, Instant}, }; use alloy_consensus::BlockHeader; use alloy_primitives::BlockNumber; use reth_ethereum_primitives::Receipt; use reth_evm::execute::{BlockExecutionError, BlockExecutionOutput, Executor}; use r...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/backfill/factory.rs
crates/exex/exex/src/backfill/factory.rs
use crate::BackfillJob; use std::{ops::RangeInclusive, time::Duration}; use alloy_primitives::BlockNumber; use reth_node_api::FullNodeComponents; use reth_prune_types::PruneModes; use reth_stages_api::ExecutionStageThresholds; use super::stream::DEFAULT_PARALLELISM; /// Factory for creating new backfill jobs. #[deri...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/wal/storage.rs
crates/exex/exex/src/wal/storage.rs
use std::{ fs::File, ops::RangeInclusive, path::{Path, PathBuf}, }; use crate::wal::{WalError, WalResult}; use reth_ethereum_primitives::EthPrimitives; use reth_exex_types::ExExNotification; use reth_node_api::NodePrimitives; use reth_tracing::tracing::debug; use tracing::instrument; static FILE_EXTENSION...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/wal/error.rs
crates/exex/exex/src/wal/error.rs
//! Wal Errors use std::path::PathBuf; /// Wal Result type. pub type WalResult<T> = Result<T, WalError>; /// Wal Error types #[derive(Debug, thiserror::Error)] pub enum WalError { /// Filesystem error at the path #[error(transparent)] FsPathError(#[from] reth_fs_util::FsPathError), /// Directory entr...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/wal/mod.rs
crates/exex/exex/src/wal/mod.rs
#![allow(dead_code)] mod cache; pub use cache::BlockCache; mod storage; use reth_ethereum_primitives::EthPrimitives; use reth_node_api::NodePrimitives; pub use storage::Storage; mod metrics; use metrics::Metrics; mod error; pub use error::{WalError, WalResult}; use std::{ path::Path, sync::{ atomic::{...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/wal/metrics.rs
crates/exex/exex/src/wal/metrics.rs
use metrics::Gauge; use reth_metrics::Metrics; /// Metrics for the [WAL](`super::Wal`) #[derive(Metrics)] #[metrics(scope = "exex.wal")] pub(super) struct Metrics { /// Size of all notifications in WAL in bytes pub size_bytes: Gauge, /// Number of notifications in WAL pub notifications_count: Gauge, ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/exex/src/wal/cache.rs
crates/exex/exex/src/wal/cache.rs
use std::{ cmp::Reverse, collections::{BinaryHeap, HashSet}, }; use alloy_consensus::BlockHeader; use alloy_eips::BlockNumHash; use alloy_primitives::{map::FbHashMap, BlockNumber, B256}; use reth_exex_types::ExExNotification; use reth_node_api::NodePrimitives; /// The block cache of the WAL. /// /// This cach...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/types/src/lib.rs
crates/exex/types/src/lib.rs
//! Commonly used ExEx types. #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue_tracker_base_url = "https://github.com/SeismicSystems/seismic-reth/issues/" )] #![cfg_att...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/types/src/notification.rs
crates/exex/types/src/notification.rs
use std::sync::Arc; use reth_chain_state::CanonStateNotification; use reth_execution_types::Chain; use reth_primitives_traits::NodePrimitives; /// Notifications sent to an `ExEx`. #[derive(Debug, Clone, PartialEq, Eq)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] pub enum ExExNotificat...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/types/src/finished_height.rs
crates/exex/types/src/finished_height.rs
use alloy_primitives::BlockNumber; /// The finished height of all `ExEx`'s. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum FinishedExExHeight { /// No `ExEx`'s are installed, so there is no finished height. NoExExs, /// Not all `ExExs` have emitted a `FinishedHeight` event yet. NotReady, ///...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/types/src/head.rs
crates/exex/types/src/head.rs
use alloy_eips::BlockNumHash; /// A head of the ExEx. It contains the highest host block committed to the /// internal ExEx state. I.e. the latest block that the ExEx has fully /// processed. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub struct ExExHead { /// The head block. pub block: BlockNumHash, } impl...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/exex/test-utils/src/lib.rs
crates/exex/test-utils/src/lib.rs
//! Test helpers for `reth-exex` #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue_tracker_base_url = "https://github.com/SeismicSystems/seismic-reth/issues/" )] #![cfg_...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-engine-api/src/lib.rs
crates/rpc/rpc-engine-api/src/lib.rs
//! The implementation of Engine API. //! [Read more](https://github.com/ethereum/execution-apis/tree/main/src/engine). #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-engine-api/src/error.rs
crates/rpc/rpc-engine-api/src/error.rs
use alloy_primitives::{B256, U256}; use alloy_rpc_types_engine::{ ForkchoiceUpdateError, INVALID_FORK_CHOICE_STATE_ERROR, INVALID_FORK_CHOICE_STATE_ERROR_MSG, INVALID_PAYLOAD_ATTRIBUTES_ERROR, INVALID_PAYLOAD_ATTRIBUTES_ERROR_MSG, }; use jsonrpsee_types::error::{ INTERNAL_ERROR_CODE, INVALID_PARAMS_CODE, IN...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-engine-api/src/metrics.rs
crates/rpc/rpc-engine-api/src/metrics.rs
use std::time::Duration; use crate::EngineApiError; use alloy_rpc_types_engine::{ForkchoiceUpdated, PayloadStatus, PayloadStatusEnum}; use metrics::{Counter, Gauge, Histogram}; use reth_metrics::Metrics; /// All beacon consensus engine metrics #[derive(Default)] pub(crate) struct EngineApiMetrics { /// Engine API...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-engine-api/src/capabilities.rs
crates/rpc/rpc-engine-api/src/capabilities.rs
use std::collections::HashSet; /// The list of all supported Engine capabilities available over the engine endpoint. pub const CAPABILITIES: &[&str] = &[ "engine_forkchoiceUpdatedV1", "engine_forkchoiceUpdatedV2", "engine_forkchoiceUpdatedV3", "engine_getClientVersionV1", "engine_getPayloadV1", ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-engine-api/src/engine_api.rs
crates/rpc/rpc-engine-api/src/engine_api.rs
use crate::{ capabilities::EngineCapabilities, metrics::EngineApiMetrics, EngineApiError, EngineApiResult, }; use alloy_eips::{ eip1898::BlockHashOrNumber, eip4844::{BlobAndProofV1, BlobAndProofV2}, eip4895::Withdrawals, eip7685::RequestsOrHash, }; use alloy_primitives::{BlockHash, BlockNumber, B256...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-engine-api/tests/it/payload.rs
crates/rpc/rpc-engine-api/tests/it/payload.rs
//! Some payload tests use alloy_eips::eip4895::Withdrawals; use alloy_primitives::Bytes; use alloy_rlp::Decodable; use alloy_rpc_types_engine::{ ExecutionPayload, ExecutionPayloadBodyV1, ExecutionPayloadSidecar, ExecutionPayloadV1, PayloadError, }; use assert_matches::assert_matches; use reth_ethereum_primiti...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-engine-api/tests/it/main.rs
crates/rpc/rpc-engine-api/tests/it/main.rs
#![allow(missing_docs)] mod payload; const fn main() {}
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-testing-util/src/lib.rs
crates/rpc/rpc-testing-util/src/lib.rs
//! Reth RPC testing utilities. #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue_tracker_base_url = "https://github.com/SeismicSystems/seismic-reth/issues/" )] #![cfg_a...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-testing-util/src/trace.rs
crates/rpc/rpc-testing-util/src/trace.rs
//! Helpers for testing trace calls. use alloy_eips::BlockId; use alloy_primitives::{map::HashSet, Bytes, TxHash, B256}; use alloy_rpc_types_eth::{transaction::TransactionRequest, Index}; use alloy_rpc_types_trace::{ filter::TraceFilter, opcode::BlockOpcodeGas, parity::{LocalizedTransactionTrace, TraceResu...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-testing-util/src/debug.rs
crates/rpc/rpc-testing-util/src/debug.rs
//! Helpers for testing debug trace calls. use std::{ future::Future, pin::Pin, task::{Context, Poll}, }; use alloy_eips::BlockId; use alloy_primitives::{TxHash, B256}; use alloy_rpc_types_eth::{transaction::TransactionRequest, Block, Header, Transaction}; use alloy_rpc_types_trace::{ common::TraceRes...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-testing-util/src/utils.rs
crates/rpc/rpc-testing-util/src/utils.rs
//! Utils for testing RPC. /// This will read the value of the given environment variable and parse it as a URL. /// /// If the value has no http(s) scheme, it will be appended: `http://{var}`. pub fn parse_env_url(var: &str) -> Result<String, std::env::VarError> { let var = std::env::var(var)?; if var.starts_...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-testing-util/tests/it/trace.rs
crates/rpc/rpc-testing-util/tests/it/trace.rs
//! Integration tests for the trace API. use alloy_primitives::map::HashSet; use alloy_rpc_types_eth::{Block, Header, Transaction, TransactionRequest}; use alloy_rpc_types_trace::{ filter::TraceFilter, parity::TraceType, tracerequest::TraceCallRequest, }; use futures::StreamExt; use jsonrpsee::http_client::HttpCli...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-testing-util/tests/it/main.rs
crates/rpc/rpc-testing-util/tests/it/main.rs
#![allow(missing_docs)] mod trace; const fn main() {}
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/ipc/src/lib.rs
crates/rpc/ipc/src/lib.rs
//! Reth IPC transport implementation //! //! ## Feature Flags //! //! - `client`: Enables JSON-RPC client support. #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue_tra...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/ipc/src/stream_codec.rs
crates/rpc/ipc/src/stream_codec.rs
// Copyright (c) 2015-2017 Parity Technologies Limited // // Permission is hereby granted, free of charge, to any // person obtaining a copy of this software and associated // documentation files (the "Software"), to deal in the // Software without restriction, including without // limitation the rights to use, copy, m...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/ipc/src/server/connection.rs
crates/rpc/ipc/src/server/connection.rs
//! An IPC connection. use crate::stream_codec::StreamCodec; use futures::{stream::FuturesUnordered, FutureExt, Sink, Stream}; use std::{ collections::VecDeque, future::Future, io, pin::Pin, task::{Context, Poll}, }; use tokio::io::{AsyncRead, AsyncWrite}; use tokio_util::codec::Framed; use tower::...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/ipc/src/server/mod.rs
crates/rpc/ipc/src/server/mod.rs
//! JSON-RPC IPC server implementation use crate::server::connection::{IpcConn, JsonRpcStream}; use futures::StreamExt; use futures_util::future::Either; use interprocess::local_socket::{ tokio::prelude::{LocalSocketListener, LocalSocketStream}, traits::tokio::{Listener, Stream}, GenericFilePath, ListenerO...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/ipc/src/server/rpc_service.rs
crates/rpc/ipc/src/server/rpc_service.rs
//! JSON-RPC service middleware. use futures::{ future::Either, stream::{FuturesOrdered, StreamExt}, }; use jsonrpsee::{ core::middleware::{Batch, BatchEntry}, server::{ middleware::rpc::{ResponseFuture, RpcServiceT}, IdProvider, }, types::{error::reject_too_many_subscriptions, E...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/ipc/src/server/ipc.rs
crates/rpc/ipc/src/server/ipc.rs
//! IPC request handling adapted from [`jsonrpsee`] http request handling use futures::{stream::FuturesOrdered, StreamExt}; use jsonrpsee::{ batch_response_error, core::{server::helpers::prepare_error, JsonRawValue}, server::middleware::rpc::RpcServiceT, types::{ error::{reject_too_big_request,...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/ipc/src/client/mod.rs
crates/rpc/ipc/src/client/mod.rs
//! [`jsonrpsee`] transport adapter implementation for IPC. use crate::stream_codec::StreamCodec; use futures::{StreamExt, TryFutureExt}; use interprocess::local_socket::{ tokio::{prelude::*, RecvHalf, SendHalf}, GenericFilePath, }; use jsonrpsee::{ async_client::{Client, ClientBuilder}, core::client::...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/miner.rs
crates/rpc/rpc/src/miner.rs
use alloy_primitives::{Bytes, U128}; use async_trait::async_trait; use jsonrpsee::core::RpcResult; use reth_rpc_api::MinerApiServer; /// `miner` API implementation. /// /// This type provides the functionality for handling `miner` related requests. #[derive(Clone, Debug, Default)] pub struct MinerApi {} #[async_trait...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/engine.rs
crates/rpc/rpc/src/engine.rs
use alloy_eips::{BlockId, BlockNumberOrTag}; use alloy_primitives::{Address, Bytes, B256, U256, U64}; use alloy_rpc_types_eth::{ state::StateOverride, BlockOverrides, EIP1186AccountProofResponse, Filter, Log, SyncStatus, }; use alloy_serde::JsonStorageKey; use jsonrpsee::core::RpcResult as Result; use reth_rpc_api:...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/lib.rs
crates/rpc/rpc/src/lib.rs
//! Reth RPC implementation //! //! Provides the implementation of all RPC interfaces. //! //! //! ## Note on blocking behaviour //! //! All async RPC handlers must non-blocking, see also [What is blocking](https://ryhl.io/blog/async-what-is-blocking/). //! //! A lot of the RPC are using a mix of async and direct calls...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/validation.rs
crates/rpc/rpc/src/validation.rs
use alloy_consensus::{ BlobTransactionValidationError, BlockHeader, EnvKzgSettings, Transaction, TxReceipt, }; use alloy_eips::{eip4844::kzg_to_versioned_hash, eip7685::RequestsOrHash}; use alloy_rpc_types_beacon::relay::{ BidTrace, BuilderBlockValidationRequest, BuilderBlockValidationRequestV2, BuilderBloc...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/trace.rs
crates/rpc/rpc/src/trace.rs
use alloy_consensus::BlockHeader as _; use alloy_eips::BlockId; use alloy_evm::block::calc::{base_block_reward_pre_merge, block_reward, ommer_reward}; use alloy_primitives::{ map::{HashMap, HashSet}, Address, BlockHash, Bytes, B256, U256, }; use alloy_rpc_types_eth::{ state::{EvmOverrides, StateOverride}, ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/web3.rs
crates/rpc/rpc/src/web3.rs
use alloy_primitives::{keccak256, Bytes, B256}; use async_trait::async_trait; use jsonrpsee::core::RpcResult; use reth_network_api::NetworkInfo; use reth_rpc_api::Web3ApiServer; use reth_rpc_server_types::ToRpcResult; /// `web3` API implementation. /// /// This type provides the functionality for handling `web3` relat...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/debug.rs
crates/rpc/rpc/src/debug.rs
use alloy_consensus::{transaction::SignerRecoverable, BlockHeader}; use alloy_eips::{eip2718::Encodable2718, BlockId, BlockNumberOrTag}; use alloy_genesis::ChainConfig; use alloy_primitives::{uint, Address, Bytes, B256}; use alloy_rlp::{Decodable, Encodable}; use alloy_rpc_types_debug::ExecutionWitness; use alloy_rpc_t...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/admin.rs
crates/rpc/rpc/src/admin.rs
use std::sync::Arc; use alloy_genesis::ChainConfig; use alloy_rpc_types_admin::{ EthInfo, EthPeerInfo, EthProtocolInfo, NodeInfo, PeerInfo, PeerNetworkInfo, PeerProtocolInfo, Ports, ProtocolInfo, }; use async_trait::async_trait; use jsonrpsee::core::RpcResult; use reth_chainspec::{EthChainSpec, EthereumHardfor...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/rpc.rs
crates/rpc/rpc/src/rpc.rs
use alloy_primitives::map::HashMap; use alloy_rpc_types::RpcModules; use jsonrpsee::core::RpcResult; use reth_rpc_api::RpcApiServer; use std::sync::Arc; /// `rpc` API implementation. /// /// This type provides the functionality for handling `rpc` requests #[derive(Debug, Clone, Default)] pub struct RPCApi { /// Th...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/txpool.rs
crates/rpc/rpc/src/txpool.rs
use core::fmt; use std::collections::BTreeMap; use alloy_consensus::Transaction; use alloy_primitives::Address; use alloy_rpc_types_txpool::{ TxpoolContent, TxpoolContentFrom, TxpoolInspect, TxpoolInspectSummary, TxpoolStatus, }; use async_trait::async_trait; use jsonrpsee::core::RpcResult; use reth_primitives_tra...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/otterscan.rs
crates/rpc/rpc/src/otterscan.rs
use alloy_consensus::{BlockHeader, Typed2718}; use alloy_eips::{eip1898::LenientBlockNumberOrTag, BlockId}; use alloy_network::{ReceiptResponse, TransactionResponse}; use alloy_primitives::{Address, Bytes, TxHash, B256, U256}; use alloy_rpc_types_eth::{BlockTransactions, TransactionReceipt}; use alloy_rpc_types_trace::...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/reth.rs
crates/rpc/rpc/src/reth.rs
use std::{collections::HashMap, future::Future, sync::Arc}; use alloy_eips::BlockId; use alloy_primitives::{Address, U256}; use async_trait::async_trait; use futures::StreamExt; use jsonrpsee::{core::RpcResult, PendingSubscriptionSink, SubscriptionMessage, SubscriptionSink}; use jsonrpsee_types::ErrorObject; use reth_...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/net.rs
crates/rpc/rpc/src/net.rs
use alloy_primitives::U64; use jsonrpsee::core::RpcResult as Result; use reth_network_api::PeersInfo; use reth_rpc_api::NetApiServer; use reth_rpc_eth_api::helpers::EthApiSpec; /// `Net` API implementation. /// /// This type provides the functionality for handling `net` related requests. pub struct NetApi<Net, Eth> { ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/builder.rs
crates/rpc/rpc/src/eth/builder.rs
//! `EthApiBuilder` implementation use crate::{eth::core::EthApiInner, EthApi}; use alloy_network::Ethereum; use reth_chain_state::CanonStateSubscriptions; use reth_chainspec::ChainSpecProvider; use reth_primitives_traits::HeaderTy; use reth_rpc_convert::{RpcConvert, RpcConverter}; use reth_rpc_eth_api::{ helpers:...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/bundle.rs
crates/rpc/rpc/src/eth/bundle.rs
//! `Eth` bundle implementation and helpers. use alloy_consensus::{EnvKzgSettings, Transaction as _}; use alloy_eips::eip7840::BlobParams; use alloy_primitives::{Keccak256, U256}; use alloy_rpc_types_mev::{EthCallBundle, EthCallBundleResponse, EthCallBundleTransactionResult}; use jsonrpsee::core::RpcResult; use reth_c...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/filter.rs
crates/rpc/rpc/src/eth/filter.rs
//! `eth_` `Filter` RPC handler implementation use alloy_consensus::BlockHeader; use alloy_primitives::{Sealable, TxHash}; use alloy_rpc_types_eth::{ BlockNumHash, Filter, FilterBlockOption, FilterChanges, FilterId, Log, PendingTransactionFilterKind, }; use async_trait::async_trait; use futures::{ future::...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/sim_bundle.rs
crates/rpc/rpc/src/eth/sim_bundle.rs
//! `Eth` Sim bundle implementation and helpers. use alloy_consensus::BlockHeader; use alloy_eips::BlockNumberOrTag; use alloy_evm::overrides::apply_block_overrides; use alloy_primitives::U256; use alloy_rpc_types_eth::BlockId; use alloy_rpc_types_mev::{ BundleItem, Inclusion, MevSendBundle, Privacy, RefundConfig,...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/core.rs
crates/rpc/rpc/src/eth/core.rs
//! Implementation of the [`jsonrpsee`] generated [`EthApiServer`](crate::EthApi) trait //! Handles RPC requests for the `eth_` namespace. use std::sync::Arc; use crate::{eth::helpers::types::EthRpcConverter, EthApiBuilder}; use alloy_consensus::BlockHeader; use alloy_eips::BlockNumberOrTag; use alloy_network::Ethere...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/pubsub.rs
crates/rpc/rpc/src/eth/pubsub.rs
//! `eth_` `PubSub` RPC handler implementation use std::sync::Arc; use alloy_primitives::{TxHash, U256}; use alloy_rpc_types_eth::{ pubsub::{Params, PubSubSyncStatus, SubscriptionKind, SyncStatusMetadata}, Filter, Header, Log, }; use futures::StreamExt; use jsonrpsee::{ server::SubscriptionMessage, types:...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/mod.rs
crates/rpc/rpc/src/eth/mod.rs
//! Server implementation of `eth` namespace API. pub mod builder; pub mod bundle; pub mod core; pub mod filter; pub mod helpers; pub mod pubsub; pub mod sim_bundle; /// Implementation of `eth` namespace API. pub use builder::EthApiBuilder; pub use bundle::EthBundle; pub use core::{EthApi, EthApiFor}; pub use filter:...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/pending_block.rs
crates/rpc/rpc/src/eth/helpers/pending_block.rs
//! Support for building a pending block with transactions from local view of mempool. use crate::EthApi; use reth_rpc_convert::RpcConvert; use reth_rpc_eth_api::{ helpers::{pending_block::PendingEnvBuilder, LoadPendingBlock}, FromEvmError, RpcNodeCore, }; use reth_rpc_eth_types::{builder::config::PendingBlock...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/signer.rs
crates/rpc/rpc/src/eth/helpers/signer.rs
//! An abstraction over ethereum signers. use std::collections::HashMap; use crate::EthApi; use alloy_dyn_abi::TypedData; use alloy_eips::eip2718::Decodable2718; use alloy_primitives::{eip191_hash_message, Address, Signature, B256}; use alloy_signer::SignerSync; use alloy_signer_local::PrivateKeySigner; use reth_rpc_...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/call.rs
crates/rpc/rpc/src/eth/helpers/call.rs
//! Contains RPC handler implementations specific to endpoints that call/execute within evm. use crate::EthApi; use reth_evm::{SpecFor, TxEnvFor}; use reth_rpc_convert::RpcConvert; use reth_rpc_eth_api::{ helpers::{estimate::EstimateCall, Call, EthCall}, FromEvmError, RpcNodeCore, }; use reth_rpc_eth_types::Et...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/sync_listener.rs
crates/rpc/rpc/src/eth/helpers/sync_listener.rs
//! A utility Future to asynchronously wait until a node has finished syncing. use futures::Stream; use pin_project::pin_project; use reth_network_api::NetworkInfo; use std::{ future::Future, pin::Pin, task::{ready, Context, Poll}, }; /// This future resolves once the node is no longer syncing: [`NetworkI...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/trace.rs
crates/rpc/rpc/src/eth/helpers/trace.rs
//! Contains RPC handler implementations specific to tracing. use reth_rpc_convert::RpcConvert; use reth_rpc_eth_api::{helpers::Trace, FromEvmError, RpcNodeCore}; use reth_rpc_eth_types::EthApiError; use crate::EthApi; impl<N, Rpc> Trace for EthApi<N, Rpc> where N: RpcNodeCore, EthApiError: FromEvmError<N::E...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/state.rs
crates/rpc/rpc/src/eth/helpers/state.rs
//! Contains RPC handler implementations specific to state. use crate::EthApi; use reth_rpc_convert::RpcConvert; use reth_rpc_eth_api::{ helpers::{EthState, LoadPendingBlock, LoadState}, RpcNodeCore, }; impl<N, Rpc> EthState for EthApi<N, Rpc> where N: RpcNodeCore, Rpc: RpcConvert<Primitives = N::Prim...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/block.rs
crates/rpc/rpc/src/eth/helpers/block.rs
//! Contains RPC handler implementations specific to blocks. use reth_rpc_convert::RpcConvert; use reth_rpc_eth_api::{ helpers::{EthBlocks, LoadBlock, LoadPendingBlock}, FromEvmError, RpcNodeCore, }; use reth_rpc_eth_types::EthApiError; use crate::EthApi; impl<N, Rpc> EthBlocks for EthApi<N, Rpc> where N...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/receipt.rs
crates/rpc/rpc/src/eth/helpers/receipt.rs
//! Builds an RPC receipt response w.r.t. data layout of network. use crate::EthApi; use reth_rpc_convert::RpcConvert; use reth_rpc_eth_api::{helpers::LoadReceipt, FromEvmError, RpcNodeCore}; use reth_rpc_eth_types::EthApiError; impl<N, Rpc> LoadReceipt for EthApi<N, Rpc> where N: RpcNodeCore, EthApiError: Fr...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/types.rs
crates/rpc/rpc/src/eth/helpers/types.rs
//! L1 `eth` API types. use alloy_network::Ethereum; use reth_evm_ethereum::EthEvmConfig; use reth_rpc_convert::RpcConverter; use reth_rpc_eth_types::receipt::EthReceiptConverter; /// An [`RpcConverter`] with its generics set to Ethereum specific. pub type EthRpcConverter<ChainSpec> = RpcConverter<Ethereum, EthEv...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/mod.rs
crates/rpc/rpc/src/eth/helpers/mod.rs
//! The entire implementation of the namespace is quite large, hence it is divided across several //! files. pub mod signer; pub mod sync_listener; pub mod types; mod block; mod call; mod fees; mod pending_block; mod receipt; mod spec; mod state; mod trace; mod transaction; pub use sync_listener::SyncListener;
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/transaction.rs
crates/rpc/rpc/src/eth/helpers/transaction.rs
//! Contains RPC handler implementations specific to transactions use crate::EthApi; use alloy_primitives::{hex, Bytes, B256}; use reth_rpc_convert::RpcConvert; use reth_rpc_eth_api::{ helpers::{spec::SignersForRpc, EthTransactions, LoadTransaction}, FromEvmError, RpcNodeCore, }; use reth_rpc_eth_types::{utils...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/spec.rs
crates/rpc/rpc/src/eth/helpers/spec.rs
use alloy_primitives::U256; use reth_rpc_convert::RpcConvert; use reth_rpc_eth_api::{ helpers::{spec::SignersForApi, EthApiSpec}, RpcNodeCore, }; use reth_storage_api::ProviderTx; use crate::EthApi; impl<N, Rpc> EthApiSpec for EthApi<N, Rpc> where N: RpcNodeCore, Rpc: RpcConvert<Primitives = N::Primit...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc/src/eth/helpers/fees.rs
crates/rpc/rpc/src/eth/helpers/fees.rs
//! Contains RPC handler implementations for fee history. use reth_rpc_convert::RpcConvert; use reth_rpc_eth_api::{ helpers::{EthFees, LoadFee}, FromEvmError, RpcNodeCore, }; use reth_rpc_eth_types::{EthApiError, FeeHistoryCache, GasPriceOracle}; use reth_storage_api::ProviderHeader; use crate::EthApi; impl<...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/pending_block.rs
crates/rpc/rpc-eth-types/src/pending_block.rs
//! Helper types for `reth_rpc_eth_api::EthApiServer` implementation. //! //! Types used in block building. use std::{sync::Arc, time::Instant}; use alloy_consensus::BlockHeader; use alloy_eips::{BlockId, BlockNumberOrTag}; use alloy_primitives::{BlockHash, B256}; use derive_more::Constructor; use reth_chain_state::{...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/lib.rs
crates/rpc/rpc-eth-types/src/lib.rs
//! Reth RPC server types, used in server implementation of `eth` namespace API. #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue_tracker_base_url = "https://github.com...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/id_provider.rs
crates/rpc/rpc-eth-types/src/id_provider.rs
//! Helper type for `reth_rpc_eth_api::EthPubSubApiServer` implementation. //! //! Generates IDs for tracking subscriptions. use std::fmt::Write; use jsonrpsee_types::SubscriptionId; /// An [`IdProvider`](jsonrpsee_core::traits::IdProvider) for ethereum subscription ids. /// /// Returns new hex-string [QUANTITY](htt...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/logs_utils.rs
crates/rpc/rpc-eth-types/src/logs_utils.rs
//! Helper functions for `reth_rpc_eth_api::EthFilterApiServer` implementation. //! //! Log parsing for building filter. use alloy_consensus::TxReceipt; use alloy_eips::{eip2718::Encodable2718, BlockNumHash}; use alloy_primitives::TxHash; use alloy_rpc_types_eth::{Filter, Log}; use reth_chainspec::ChainInfo; use reth_...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/receipt.rs
crates/rpc/rpc-eth-types/src/receipt.rs
//! RPC receipt response builder, extends a layer one receipt with layer two data. use crate::EthApiError; use alloy_consensus::{ReceiptEnvelope, Transaction, TxReceipt}; use alloy_eips::eip7840::BlobParams; use alloy_primitives::{Address, TxKind}; use alloy_rpc_types_eth::{Log, ReceiptWithBloom, TransactionReceipt}; ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/utils.rs
crates/rpc/rpc-eth-types/src/utils.rs
//! Commonly used code snippets use super::{EthApiError, EthResult}; use reth_primitives_traits::{Recovered, SignedTransaction}; use std::future::Future; /// Recovers a [`SignedTransaction`] from an enveloped encoded byte stream. /// /// This is a helper function that returns the appropriate RPC-specific error if the...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/simulate.rs
crates/rpc/rpc-eth-types/src/simulate.rs
//! Utilities for serving `eth_simulateV1` use crate::{ error::{ api::{FromEthApiError, FromEvmHalt}, ToRpcError, }, EthApiError, RevertError, }; use alloy_consensus::{BlockHeader, Transaction as _}; use alloy_eips::eip2718::WithEncoded; use alloy_network::TransactionBuilder; use alloy_rpc_...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/gas_oracle.rs
crates/rpc/rpc-eth-types/src/gas_oracle.rs
//! An implementation of the eth gas price oracle, used for providing gas price estimates based on //! previous blocks. use super::{EthApiError, EthResult, EthStateCache, RpcInvalidTransactionError}; use alloy_consensus::{constants::GWEI_TO_WEI, BlockHeader, Transaction, TxReceipt}; use alloy_eips::BlockNumberOrTag; u...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/fee_history.rs
crates/rpc/rpc-eth-types/src/fee_history.rs
//! Consist of types adjacent to the fee history cache and its configs use std::{ collections::{BTreeMap, VecDeque}, fmt::Debug, sync::{atomic::Ordering::SeqCst, Arc}, }; use alloy_consensus::{BlockHeader, Header, Transaction, TxReceipt}; use alloy_eips::eip7840::BlobParams; use alloy_rpc_types_eth::TxGas...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/tx_forward.rs
crates/rpc/rpc-eth-types/src/tx_forward.rs
//! Consist of types adjacent to the fee history cache and its configs use alloy_rpc_client::RpcClient; use reqwest::Url; use serde::{Deserialize, Serialize}; use std::fmt::Debug; /// Configuration for the transaction forwarder. #[derive(Debug, PartialEq, Eq, Clone, Default, Serialize, Deserialize)] pub struct Forwar...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/transaction.rs
crates/rpc/rpc-eth-types/src/transaction.rs
//! Helper types for `reth_rpc_eth_api::EthApiServer` implementation. //! //! Transaction wrapper that labels transaction with its origin. use alloy_primitives::B256; use alloy_rpc_types_eth::TransactionInfo; use reth_ethereum_primitives::TransactionSigned; use reth_primitives_traits::{NodePrimitives, Recovered, Signe...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/builder/config.rs
crates/rpc/rpc-eth-types/src/builder/config.rs
//! Configuration for `eth` namespace APIs. use std::time::Duration; use crate::{ EthStateCacheConfig, FeeHistoryCacheConfig, ForwardConfig, GasPriceOracleConfig, RPC_DEFAULT_GAS_CAP, }; use reqwest::Url; use reth_rpc_server_types::constants::{ default_max_tracing_requests, DEFAULT_ETH_PROOF_WINDOW, DEFAU...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/builder/mod.rs
crates/rpc/rpc-eth-types/src/builder/mod.rs
//! `eth` namespace API builder types. pub mod config;
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/cache/db.rs
crates/rpc/rpc-eth-types/src/cache/db.rs
//! Helper types to workaround 'higher-ranked lifetime error' //! <https://github.com/rust-lang/rust/issues/100013> in default implementation of //! `reth_rpc_eth_api::helpers::Call`. use alloy_primitives::{Address, B256, U256}; use reth_errors::ProviderResult; use reth_revm::{database::StateProviderDatabase, Database...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/cache/config.rs
crates/rpc/rpc-eth-types/src/cache/config.rs
//! Configuration for RPC cache. use serde::{Deserialize, Serialize}; use reth_rpc_server_types::constants::cache::{ DEFAULT_BLOCK_CACHE_MAX_LEN, DEFAULT_CONCURRENT_DB_REQUESTS, DEFAULT_HEADER_CACHE_MAX_LEN, DEFAULT_RECEIPT_CACHE_MAX_LEN, }; /// Settings for the [`EthStateCache`](super::EthStateCache). #[der...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/cache/multi_consumer.rs
crates/rpc/rpc-eth-types/src/cache/multi_consumer.rs
//! Metered cache, which also provides storage for senders in order to queue queries that result in //! a cache miss. use super::metrics::CacheMetrics; use reth_primitives_traits::InMemorySize; use schnellru::{ByLength, Limiter, LruMap}; use std::{ collections::{hash_map::Entry, HashMap}, fmt::{self, Debug, Fo...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/cache/mod.rs
crates/rpc/rpc-eth-types/src/cache/mod.rs
//! Async caching support for eth RPC use super::{EthStateCacheConfig, MultiConsumerLruCache}; use alloy_consensus::BlockHeader; use alloy_eips::BlockHashOrNumber; use alloy_primitives::B256; use futures::{future::Either, stream::FuturesOrdered, Stream, StreamExt}; use reth_chain_state::CanonStateNotification; use ret...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/cache/metrics.rs
crates/rpc/rpc-eth-types/src/cache/metrics.rs
//! Tracks state of RPC cache. use metrics::Counter; use reth_metrics::{metrics::Gauge, Metrics}; #[derive(Metrics)] #[metrics(scope = "rpc.eth_cache")] pub(crate) struct CacheMetrics { /// The number of entities in the cache. pub(crate) cached_count: Gauge, /// The number of queued consumers. pub(cra...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/error/api.rs
crates/rpc/rpc-eth-types/src/error/api.rs
//! Helper traits to wrap generic l1 errors, in network specific error type configured in //! `reth_rpc_eth_api::EthApiTypes`. use crate::EthApiError; use reth_errors::ProviderError; use reth_evm::{ConfigureEvm, EvmErrorFor, HaltReasonFor}; use revm::context_interface::result::HaltReason; use seismic_revm::SeismicHalt...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-types/src/error/mod.rs
crates/rpc/rpc-eth-types/src/error/mod.rs
//! Implementation specific Errors for the `eth_` namespace. pub mod api; use crate::error::api::FromEvmHalt; use alloy_eips::BlockId; use alloy_evm::{call::CallError, overrides::StateOverrideError}; use alloy_primitives::{Address, Bytes, B256, U256}; use alloy_rpc_types_eth::{error::EthRpcErrorCode, request::Transact...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-layer/src/auth_client_layer.rs
crates/rpc/rpc-layer/src/auth_client_layer.rs
use crate::{Claims, JwtSecret}; use http::{header::AUTHORIZATION, HeaderValue}; use std::{ task::{Context, Poll}, time::{Duration, SystemTime, UNIX_EPOCH}, }; use tower::{Layer, Service}; /// A layer that adds a new JWT token to every request using `AuthClientService`. #[derive(Debug)] pub struct AuthClientLay...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-layer/src/lib.rs
crates/rpc/rpc-layer/src/lib.rs
//! Layer implementations used in RPC #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue_tracker_base_url = "https://github.com/SeismicSystems/seismic-reth/issues/" )] #!...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-layer/src/compression_layer.rs
crates/rpc/rpc-layer/src/compression_layer.rs
use jsonrpsee_http_client::{HttpBody, HttpRequest, HttpResponse}; use std::{ future::Future, pin::Pin, task::{Context, Poll}, }; use tower::{Layer, Service}; use tower_http::compression::{Compression, CompressionLayer as TowerCompressionLayer}; /// This layer is a wrapper around [`tower_http::compression::...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-layer/src/auth_layer.rs
crates/rpc/rpc-layer/src/auth_layer.rs
use super::AuthValidator; use jsonrpsee_http_client::{HttpRequest, HttpResponse}; use pin_project::pin_project; use std::{ future::Future, pin::Pin, task::{Context, Poll}, }; use tower::{Layer, Service}; /// This is an Http middleware layer that acts as an /// interceptor for `Authorization` headers. Incom...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-layer/src/jwt_validator.rs
crates/rpc/rpc-layer/src/jwt_validator.rs
use crate::{AuthValidator, JwtError, JwtSecret}; use http::{header, HeaderMap, Response, StatusCode}; use jsonrpsee_http_client::{HttpBody, HttpResponse}; use tracing::error; /// Implements JWT validation logics and integrates /// to an Http [`AuthLayer`][crate::AuthLayer] /// by implementing the [`AuthValidator`] tra...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-server-types/src/lib.rs
crates/rpc/rpc-server-types/src/lib.rs
//! Reth RPC server types. #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue_tracker_base_url = "https://github.com/SeismicSystems/seismic-reth/issues/" )] #![cfg_attr(d...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-server-types/src/module.rs
crates/rpc/rpc-server-types/src/module.rs
use std::{collections::HashSet, fmt, str::FromStr}; use serde::{Deserialize, Serialize, Serializer}; use strum::{AsRefStr, EnumIter, IntoStaticStr, ParseError, VariantArray, VariantNames}; /// Describes the modules that should be installed. /// /// # Example /// /// Create a [`RpcModuleSelection`] from a selection. /...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-server-types/src/result.rs
crates/rpc/rpc-server-types/src/result.rs
//! Additional helpers for converting errors. use std::fmt; use alloy_eips::BlockId; use alloy_rpc_types_engine::PayloadError; use jsonrpsee_core::RpcResult; use reth_errors::ConsensusError; /// Helper trait to easily convert various `Result` types into [`RpcResult`] pub trait ToRpcResult<Ok, Err>: Sized { /// C...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-server-types/src/constants.rs
crates/rpc/rpc-server-types/src/constants.rs
use std::cmp::max; /// The default port for the http server pub const DEFAULT_HTTP_RPC_PORT: u16 = 8545; /// The default port for the ws server pub const DEFAULT_WS_RPC_PORT: u16 = 8546; /// The default port for the auth server. pub const DEFAULT_AUTH_PORT: u16 = 8551; /// The default maximum block range allowed to...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-api/src/node.rs
crates/rpc/rpc-eth-api/src/node.rs
//! Helper trait for interfacing with [`FullNodeComponents`]. use reth_chain_state::CanonStateSubscriptions; use reth_chainspec::{ChainSpecProvider, EthChainSpec, EthereumHardforks, Hardforks}; use reth_evm::ConfigureEvm; use reth_network_api::NetworkInfo; use reth_node_api::{FullNodeComponents, NodePrimitives, Primit...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-api/src/lib.rs
crates/rpc/rpc-eth-api/src/lib.rs
//! Reth RPC `eth_` API implementation //! //! ## Feature Flags //! //! - `client`: Enables JSON-RPC client support. #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256", issue_tr...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/rpc/rpc-eth-api/src/bundle.rs
crates/rpc/rpc-eth-api/src/bundle.rs
//! Additional `eth_` RPC API for bundles. //! //! See also <https://docs.flashbots.net/flashbots-auction/advanced/rpc-endpoint> use alloy_primitives::{Bytes, B256}; use alloy_rpc_types_mev::{ EthBundleHash, EthCallBundle, EthCallBundleResponse, EthCancelBundle, EthCancelPrivateTransaction, EthSendBundle, EthS...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false