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/rpc/rpc-eth-api/src/ext.rs
crates/rpc/rpc-eth-api/src/ext.rs
//! `eth_` Extension traits. use alloy_primitives::{Bytes, B256}; use alloy_rpc_types_eth::erc4337::TransactionConditional; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; /// Extension trait for `eth_` namespace for L2s. #[cfg_attr(not(feature = "client"), rpc(server, namespace = "eth"))] #[cfg_attr(feature = "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-eth-api/src/filter.rs
crates/rpc/rpc-eth-api/src/filter.rs
//! `eth_` RPC API for filtering. use alloy_json_rpc::RpcObject; use alloy_rpc_types_eth::{Filter, FilterChanges, FilterId, Log, PendingTransactionFilterKind}; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; use std::future::Future; /// Rpc Interface for poll-based ethereum filter API. #[cfg_attr(not(feature = "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-eth-api/src/core.rs
crates/rpc/rpc-eth-api/src/core.rs
//! Implementation of the [`jsonrpsee`] generated [`EthApiServer`] trait. Handles RPC requests for //! the `eth_` namespace. use crate::{ helpers::{EthApiSpec, EthBlocks, EthCall, EthFees, EthState, EthTransactions, FullEthApi}, RpcBlock, RpcHeader, RpcReceipt, RpcTransaction, }; use alloy_dyn_abi::TypedData; u...
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-eth-api/src/pubsub.rs
crates/rpc/rpc-eth-api/src/pubsub.rs
//! `eth_` RPC API for pubsub subscription. use alloy_json_rpc::RpcObject; use alloy_rpc_types_eth::pubsub::{Params, SubscriptionKind}; use jsonrpsee::proc_macros::rpc; /// Ethereum pub-sub rpc interface. #[rpc(server, namespace = "eth")] pub trait EthPubSubApi<T: RpcObject> { /// Create an ethereum subscription ...
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/types.rs
crates/rpc/rpc-eth-api/src/types.rs
//! Trait for specifying `eth` network dependent API types. use crate::{AsEthApiError, FromEthApiError, RpcNodeCore}; use alloy_rpc_types_eth::Block; use reth_chain_state::CanonStateSubscriptions; use reth_rpc_convert::RpcConvert; pub use reth_rpc_convert::{RpcTransaction, RpcTxReq, RpcTypes}; use reth_storage_api::{P...
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/helpers/config.rs
crates/rpc/rpc-eth-api/src/helpers/config.rs
//! Loads chain configuration. use alloy_consensus::{BlockHeader, Header}; use alloy_eips::eip7910::{EthConfig, EthForkConfig, SystemContract}; use alloy_primitives::Address; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; use reth_chainspec::{ChainSpecProvider, EthChainSpec, EthereumHardforks, Hardforks, Head}; 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-api/src/helpers/pending_block.rs
crates/rpc/rpc-eth-api/src/helpers/pending_block.rs
//! Loads a pending block from database. Helper trait for `eth_` block, transaction, call and trace //! RPC methods. use super::SpawnBlocking; use crate::{EthApiTypes, FromEthApiError, FromEvmError, RpcNodeCore}; use alloy_consensus::{BlockHeader, Transaction}; use alloy_eips::eip7840::BlobParams; use alloy_primitives...
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/helpers/signer.rs
crates/rpc/rpc-eth-api/src/helpers/signer.rs
//! An abstraction over ethereum signers. use alloy_dyn_abi::TypedData; use alloy_primitives::{Address, Signature}; use alloy_rpc_types_eth::TransactionRequest; use dyn_clone::DynClone; use reth_rpc_eth_types::SignError; use std::result; /// Result returned by [`EthSigner`] methods. pub type Result<T> = result::Resul...
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/helpers/estimate.rs
crates/rpc/rpc-eth-api/src/helpers/estimate.rs
//! Estimate gas needed implementation use super::{Call, LoadPendingBlock}; use crate::{AsEthApiError, FromEthApiError, IntoEthApiError}; use alloy_evm::overrides::apply_state_overrides; use alloy_network::TransactionBuilder; use alloy_primitives::{TxKind, U256}; use alloy_rpc_types_eth::{state::StateOverride, BlockId...
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/helpers/call.rs
crates/rpc/rpc-eth-api/src/helpers/call.rs
//! Loads a pending block from database. Helper trait for `eth_` transaction, call and trace RPC //! methods. use core::fmt; use super::{LoadBlock, LoadPendingBlock, LoadState, LoadTransaction, SpawnBlocking, Trace}; use crate::{ helpers::estimate::EstimateCall, FromEvmError, FullEthApiTypes, RpcBlock, RpcNodeCor...
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-eth-api/src/helpers/blocking_task.rs
crates/rpc/rpc-eth-api/src/helpers/blocking_task.rs
//! Spawns a blocking task. CPU heavy tasks are executed with the `rayon` library. IO heavy tasks //! are executed on the `tokio` runtime. use futures::Future; use reth_rpc_eth_types::EthApiError; use reth_tasks::{ pool::{BlockingTaskGuard, BlockingTaskPool}, TaskSpawner, }; use tokio::sync::{oneshot, AcquireE...
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/helpers/fee.rs
crates/rpc/rpc-eth-api/src/helpers/fee.rs
//! Loads fee history from database. Helper trait for `eth_` fee and transaction RPC methods. use super::LoadBlock; use crate::FromEthApiError; use alloy_consensus::BlockHeader; use alloy_eips::eip7840::BlobParams; use alloy_primitives::U256; use alloy_rpc_types_eth::{BlockNumberOrTag, FeeHistory}; use futures::Future...
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/helpers/trace.rs
crates/rpc/rpc-eth-api/src/helpers/trace.rs
//! Loads a pending block from database. Helper trait for `eth_` call and trace RPC methods. use super::{Call, LoadBlock, LoadPendingBlock, LoadState, LoadTransaction}; use crate::FromEvmError; use alloy_consensus::BlockHeader; use alloy_primitives::B256; use alloy_rpc_types_eth::{BlockId, TransactionInfo}; use future...
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/helpers/state.rs
crates/rpc/rpc-eth-api/src/helpers/state.rs
//! Loads a pending block from database. Helper trait for `eth_` block, transaction, call and trace //! RPC methods. use super::{EthApiSpec, LoadPendingBlock, SpawnBlocking}; use crate::{EthApiTypes, FromEthApiError, RpcNodeCore, RpcNodeCoreExt}; use alloy_consensus::constants::KECCAK_EMPTY; use alloy_eips::BlockId; 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-api/src/helpers/block.rs
crates/rpc/rpc-eth-api/src/helpers/block.rs
//! Database access for `eth_` block RPC methods. Loads block and receipt data w.r.t. network. use super::{LoadPendingBlock, LoadReceipt, SpawnBlocking}; use crate::{ node::RpcNodeCoreExt, EthApiTypes, FromEthApiError, FullEthApiTypes, RpcBlock, RpcNodeCore, RpcReceipt, }; use alloy_consensus::TxReceipt; use 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-eth-api/src/helpers/receipt.rs
crates/rpc/rpc-eth-api/src/helpers/receipt.rs
//! Loads a receipt from database. Helper trait for `eth_` block and transaction RPC methods, that //! loads receipt data w.r.t. network. use crate::{EthApiTypes, RpcNodeCoreExt, RpcReceipt}; use alloy_consensus::{transaction::TransactionMeta, TxReceipt}; use futures::Future; use reth_primitives_traits::SignerRecovera...
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/helpers/mod.rs
crates/rpc/rpc-eth-api/src/helpers/mod.rs
//! Behaviour needed to serve `eth_` RPC requests, divided into general database reads and //! specific database access. //! //! Traits with `Load` prefix, read atomic data from database, e.g. a block or transaction. Any //! database read done in more than one default `Eth` trait implementation, is defined in a `Load` ...
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/helpers/transaction.rs
crates/rpc/rpc-eth-api/src/helpers/transaction.rs
//! Database access for `eth_` transaction RPC methods. Loads transaction and receipt data w.r.t. //! network. use super::{EthApiSpec, EthSigner, LoadBlock, LoadReceipt, LoadState, SpawnBlocking}; use crate::{ helpers::{estimate::EstimateCall, spec::SignersForRpc}, FromEthApiError, FullEthApiTypes, IntoEthApiE...
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/helpers/spec.rs
crates/rpc/rpc-eth-api/src/helpers/spec.rs
//! Loads chain metadata. use alloy_primitives::{Address, U256, U64}; use alloy_rpc_types_eth::{Stage, SyncInfo, SyncStatus}; use futures::Future; use reth_chainspec::{ChainInfo, ChainSpecProvider, EthereumHardforks, Hardforks}; use reth_errors::{RethError, RethResult}; use reth_network_api::NetworkInfo; 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-e2e-tests/src/lib.rs
crates/rpc/rpc-e2e-tests/src/lib.rs
//! RPC end-to-end tests including execution-apis compatibility testing. #![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/Seismic...
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-e2e-tests/src/rpc_compat.rs
crates/rpc/rpc-e2e-tests/src/rpc_compat.rs
//! RPC compatibility test actions for testing RPC methods against execution-apis test data. use eyre::{eyre, Result}; use futures_util::future::BoxFuture; use jsonrpsee::core::client::ClientT; use reth_e2e_test_utils::testsuite::{actions::Action, BlockInfo, Environment}; use reth_node_api::EngineTypes; use serde_json...
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-e2e-tests/tests/e2e-testsuite/main.rs
crates/rpc/rpc-e2e-tests/tests/e2e-testsuite/main.rs
//! RPC compatibility tests using execution-apis test data use eyre::Result; use reth_chainspec::ChainSpec; use reth_e2e_test_utils::testsuite::{ actions::{MakeCanonical, UpdateBlockInfo}, setup::{NetworkSetup, Setup}, TestBuilder, }; use reth_node_ethereum::{EthEngineTypes, EthereumNode}; use reth_rpc_e2e...
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-api/src/mev.rs
crates/rpc/rpc-api/src/mev.rs
use alloy_rpc_types_mev::{EthBundleHash, MevSendBundle, SimBundleOverrides, SimBundleResponse}; use jsonrpsee::proc_macros::rpc; /// Mev rpc interface. #[cfg_attr(not(feature = "client"), rpc(server, namespace = "mev"))] #[cfg_attr(feature = "client", rpc(server, client, namespace = "mev"))] pub trait MevSimApi { ...
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-api/src/miner.rs
crates/rpc/rpc-api/src/miner.rs
use alloy_primitives::{Bytes, U128}; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; /// Miner namespace rpc interface that can control miner/builder settings #[cfg_attr(not(feature = "client"), rpc(server, namespace = "miner"))] #[cfg_attr(feature = "client", rpc(server, client, namespace = "miner"))] pub trait 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/rpc-api/src/engine.rs
crates/rpc/rpc-api/src/engine.rs
//! Server traits for the engine API //! //! This contains the `engine_` namespace and the subset of the `eth_` namespace that is exposed to //! the consensus client. use alloy_eips::{ eip4844::{BlobAndProofV1, BlobAndProofV2}, eip7685::RequestsOrHash, BlockId, BlockNumberOrTag, }; use alloy_json_rpc::RpcO...
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-api/src/lib.rs
crates/rpc/rpc-api/src/lib.rs
//! Reth RPC interface definitions //! //! Provides all RPC interfaces. //! //! ## 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.co...
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-api/src/validation.rs
crates/rpc/rpc-api/src/validation.rs
//! API for block submission validation. use alloy_rpc_types_beacon::relay::{ BuilderBlockValidationRequest, BuilderBlockValidationRequestV2, BuilderBlockValidationRequestV3, BuilderBlockValidationRequestV4, BuilderBlockValidationRequestV5, }; use jsonrpsee::proc_macros::rpc; /// Block validation rpc inte...
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-api/src/trace.rs
crates/rpc/rpc-api/src/trace.rs
use alloy_eips::BlockId; use alloy_primitives::{map::HashSet, Bytes, B256}; use alloy_rpc_types_eth::{state::StateOverride, BlockOverrides, Index}; use alloy_rpc_types_trace::{ filter::TraceFilter, opcode::{BlockOpcodeGas, TransactionOpcodeGas}, parity::*, }; use jsonrpsee::{core::RpcResult, proc_macros::rp...
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-api/src/web3.rs
crates/rpc/rpc-api/src/web3.rs
use alloy_primitives::{Bytes, B256}; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; /// Web3 rpc interface. #[cfg_attr(not(feature = "client"), rpc(server, namespace = "web3"))] #[cfg_attr(feature = "client", rpc(server, client, namespace = "web3"))] pub trait Web3Api { /// Returns current client version. ...
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-api/src/debug.rs
crates/rpc/rpc-api/src/debug.rs
use alloy_eips::{BlockId, BlockNumberOrTag}; use alloy_genesis::ChainConfig; use alloy_json_rpc::RpcObject; use alloy_primitives::{Address, Bytes, B256}; use alloy_rpc_types_debug::ExecutionWitness; use alloy_rpc_types_eth::{Block, Bundle, StateContext}; use alloy_rpc_types_trace::geth::{ BlockTraceResult, GethDebu...
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-api/src/admin.rs
crates/rpc/rpc-api/src/admin.rs
use alloy_rpc_types_admin::{NodeInfo, PeerInfo}; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; use reth_network_peers::{AnyNode, NodeRecord}; /// Admin namespace rpc interface that gives access to several non-standard RPC methods. #[cfg_attr(not(feature = "client"), rpc(server, namespace = "admin"))] #[cfg_attr(...
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-api/src/rpc.rs
crates/rpc/rpc-api/src/rpc.rs
use alloy_rpc_types::RpcModules; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; /// RPC namespace, used to find the versions of all rpc modules #[cfg_attr(not(feature = "client"), rpc(server, namespace = "rpc"))] #[cfg_attr(feature = "client", rpc(server, client, namespace = "rpc"))] pub trait RpcApi { /// Li...
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-api/src/anvil.rs
crates/rpc/rpc-api/src/anvil.rs
use jsonrpsee::{core::RpcResult, proc_macros::rpc}; use alloy_primitives::{Address, Bytes, B256, U256}; use alloy_rpc_types_anvil::{Forking, Metadata, MineOptions, NodeInfo}; use alloy_rpc_types_eth::Block; /// Anvil rpc interface. /// https://book.getfoundry.sh/reference/anvil/#custom-methods #[cfg_attr(not(feature ...
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-api/src/txpool.rs
crates/rpc/rpc-api/src/txpool.rs
use alloy_json_rpc::RpcObject; use alloy_primitives::Address; use alloy_rpc_types_txpool::{TxpoolContent, TxpoolContentFrom, TxpoolInspect, TxpoolStatus}; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; /// Txpool rpc interface. #[cfg_attr(not(feature = "client"), rpc(server, namespace = "txpool"))] #[cfg_attr(fea...
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-api/src/otterscan.rs
crates/rpc/rpc-api/src/otterscan.rs
use alloy_eips::{eip1898::LenientBlockNumberOrTag, BlockId}; use alloy_json_rpc::RpcObject; use alloy_primitives::{Address, Bytes, TxHash, B256}; use alloy_rpc_types_trace::otterscan::{ BlockDetails, ContractCreator, InternalOperation, OtsBlockTransactions, TraceEntry, TransactionsWithReceipts, }; use jsonrpsee...
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-api/src/reth.rs
crates/rpc/rpc-api/src/reth.rs
use alloy_eips::BlockId; use alloy_primitives::{Address, U256}; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; use std::collections::HashMap; // Required for the subscription attribute below use reth_chain_state as _; /// Reth API namespace for reth-specific methods #[cfg_attr(not(feature = "client"), rpc(server...
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-api/src/net.rs
crates/rpc/rpc-api/src/net.rs
use alloy_primitives::U64; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; /// Net rpc interface. #[cfg_attr(not(feature = "client"), rpc(server, namespace = "net"))] #[cfg_attr(feature = "client", rpc(server, client, namespace = "net"))] pub trait NetApi { /// Returns the network ID. #[method(name = "vers...
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-api/src/hardhat.rs
crates/rpc/rpc-api/src/hardhat.rs
use alloy_primitives::{Address, Bytes, B256, U256}; use alloy_rpc_types_anvil::{Forking, Metadata}; use jsonrpsee::{core::RpcResult, proc_macros::rpc}; /// Hardhat rpc interface. /// https://hardhat.org/hardhat-network/docs/reference#hardhat-network-methods #[cfg_attr(not(feature = "client"), rpc(server, namespace = "...
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-convert/src/lib.rs
crates/rpc/rpc-convert/src/lib.rs
//! Reth compatibility and utils for RPC types //! //! This crate various helper functions to convert between reth primitive types and rpc types. #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "https://avatars0.githubusercontent.com/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-convert/src/block.rs
crates/rpc/rpc-convert/src/block.rs
//! Conversion traits for block responses to primitive block types. use alloy_network::Network; use std::convert::Infallible; /// Trait for converting network block responses to primitive block types. pub trait TryFromBlockResponse<N: Network> { /// The error type returned if the conversion fails. type Error:...
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-convert/src/receipt.rs
crates/rpc/rpc-convert/src/receipt.rs
//! Conversion traits for receipt responses to primitive receipt types. use alloy_network::Network; use std::convert::Infallible; /// Trait for converting network receipt responses to primitive receipt types. pub trait TryFromReceiptResponse<N: Network> { /// The error type returned if the conversion fails. t...
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-convert/src/rpc.rs
crates/rpc/rpc-convert/src/rpc.rs
use std::{fmt::Debug, future::Future}; use alloy_consensus::{EthereumTxEnvelope, SignableTransaction, TxEip4844}; use alloy_json_rpc::RpcObject; use alloy_network::{ primitives::HeaderResponse, Network, ReceiptResponse, TransactionResponse, TxSigner, }; use alloy_primitives::Signature; use alloy_rpc_types_eth::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-convert/src/transaction.rs
crates/rpc/rpc-convert/src/transaction.rs
//! Compatibility functions for rpc `Transaction` type. use crate::{ fees::{CallFees, CallFeesError}, RpcHeader, RpcReceipt, RpcTransaction, RpcTxReq, RpcTypes, }; use alloy_consensus::{ error::ValueError, transaction::Recovered, EthereumTxEnvelope, Sealable, TxEip4844, }; use alloy_network::Network; use a...
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-convert/src/fees.rs
crates/rpc/rpc-convert/src/fees.rs
use alloy_primitives::{B256, U256}; use std::cmp::min; use thiserror::Error; /// Helper type for representing the fees of a `TransactionRequest` #[derive(Debug)] pub struct CallFees { /// EIP-1559 priority fee pub max_priority_fee_per_gas: Option<U256>, /// Unified gas price setting /// /// Will be...
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-builder/src/config.rs
crates/rpc/rpc-builder/src/config.rs
use jsonrpsee::server::ServerConfigBuilder; use reth_node_core::{args::RpcServerArgs, utils::get_or_create_jwt_secret_from_path}; use reth_rpc::ValidationApiConfig; use reth_rpc_eth_types::{EthConfig, EthStateCacheConfig, GasPriceOracleConfig}; use reth_rpc_layer::{JwtError, JwtSecret}; use reth_rpc_server_types::RpcMo...
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-builder/src/lib.rs
crates/rpc/rpc-builder/src/lib.rs
//! Configure reth RPC. //! //! This crate contains several builder and config types that allow to configure the selection of //! [`RethRpcModule`] specific to transports (ws, http, ipc). //! //! The [`RpcModuleBuilder`] is the main entrypoint for configuring all reth modules. It takes //! instances of components requi...
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-builder/src/rate_limiter.rs
crates/rpc/rpc-builder/src/rate_limiter.rs
//! [`jsonrpsee`] helper layer for rate limiting certain methods. use jsonrpsee::{server::middleware::rpc::RpcServiceT, types::Request}; use std::{ future::Future, pin::Pin, sync::Arc, task::{ready, Context, Poll}, }; use tokio::sync::{OwnedSemaphorePermit, Semaphore}; use tokio_util::sync::PollSemapho...
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-builder/src/eth.rs
crates/rpc/rpc-builder/src/eth.rs
use reth_rpc::{EthFilter, EthPubSub}; use reth_rpc_eth_api::EthApiTypes; use reth_rpc_eth_types::EthConfig; use reth_tasks::TaskSpawner; /// Handlers for core, filter and pubsub `eth` namespace APIs. #[derive(Debug, Clone)] pub struct EthHandlers<EthApi: EthApiTypes> { /// Main `eth_` request handler pub 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-builder/src/middleware.rs
crates/rpc/rpc-builder/src/middleware.rs
use jsonrpsee::server::middleware::rpc::RpcService; use tower::Layer; /// A Helper alias trait for the RPC middleware supported by the server. pub trait RethRpcMiddleware: Layer< RpcService, Service: jsonrpsee::server::middleware::rpc::RpcServiceT< MethodResponse = jsonrpsee::MethodResp...
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-builder/src/error.rs
crates/rpc/rpc-builder/src/error.rs
use crate::{cors::CorsDomainError, RethRpcModule}; use reth_ipc::server::IpcServerStartError; use std::{ collections::HashSet, io::{self, ErrorKind}, net::SocketAddr, }; /// Rpc server kind. #[derive(Debug, PartialEq, Eq, Copy, Clone)] pub enum ServerKind { /// Http. Http(SocketAddr), /// Webso...
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-builder/src/cors.rs
crates/rpc/rpc-builder/src/cors.rs
use http::{HeaderValue, Method}; use tower_http::cors::{AllowOrigin, Any, CorsLayer}; /// Error thrown when parsing cors domains went wrong #[derive(Debug, thiserror::Error)] pub enum CorsDomainError { /// Represents an invalid header value for a domain #[error("{domain} is an invalid header value")] Inval...
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-builder/src/auth.rs
crates/rpc/rpc-builder/src/auth.rs
use crate::{ error::{RpcError, ServerKind}, middleware::RethRpcMiddleware, }; use http::header::AUTHORIZATION; use jsonrpsee::{ core::{client::SubscriptionClientT, RegisterMethodError}, http_client::HeaderMap, server::{AlreadyStoppedError, RpcModule}, ws_client::RpcServiceBuilder, Methods, }...
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-builder/src/metrics.rs
crates/rpc/rpc-builder/src/metrics.rs
use jsonrpsee::{ core::middleware::{Batch, Notification}, server::middleware::rpc::RpcServiceT, types::Request, MethodResponse, RpcModule, }; use reth_metrics::{ metrics::{Counter, Histogram}, Metrics, }; use std::{ collections::HashMap, future::Future, pin::Pin, sync::Arc, t...
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-builder/tests/it/serde.rs
crates/rpc/rpc-builder/tests/it/serde.rs
//! various serde test use crate::utils::launch_http; use alloy_primitives::U256; use jsonrpsee::{ core::{client::ClientT, traits::ToRpcParams}, types::Request, }; use reth_rpc_server_types::RethRpcModule; use serde_json::value::RawValue; struct RawRpcParams(Box<RawValue>); impl ToRpcParams for RawRpcParams ...
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-builder/tests/it/http.rs
crates/rpc/rpc-builder/tests/it/http.rs
#![allow(unreachable_pub)] //! Standalone http tests use crate::utils::{launch_http, launch_http_ws, launch_ws}; use alloy_eips::{eip1898::LenientBlockNumberOrTag, BlockId, BlockNumberOrTag}; use alloy_primitives::{hex_literal::hex, Address, Bytes, TxHash, B256, B64, U256, U64}; use alloy_rpc_types_eth::{ 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-builder/tests/it/middleware.rs
crates/rpc/rpc-builder/tests/it/middleware.rs
use crate::utils::{test_address, test_rpc_builder}; use alloy_rpc_types_eth::{Block, Header, Receipt, Transaction, TransactionRequest}; use jsonrpsee::{ core::middleware::{Batch, Notification}, server::middleware::rpc::RpcServiceT, types::Request, }; use reth_rpc_builder::{RpcServerConfig, TransportRpcModul...
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-builder/tests/it/auth.rs
crates/rpc/rpc-builder/tests/it/auth.rs
//! Auth server tests use crate::utils::launch_auth; use alloy_primitives::U64; use alloy_rpc_types_engine::{ ExecutionPayloadInputV2, ExecutionPayloadV1, ForkchoiceState, PayloadId, }; use jsonrpsee::core::client::{ClientT, SubscriptionClientT}; use reth_ethereum_engine_primitives::EthEngineTypes; use reth_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-builder/tests/it/utils.rs
crates/rpc/rpc-builder/tests/it/utils.rs
use alloy_rpc_types_engine::{ClientCode, ClientVersionV1}; use reth_chainspec::MAINNET; use reth_consensus::noop::NoopConsensus; use reth_engine_primitives::ConsensusEngineHandle; use reth_ethereum_engine_primitives::EthEngineTypes; use reth_ethereum_primitives::EthPrimitives; use std::net::{Ipv4Addr, SocketAddr, Socke...
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-builder/tests/it/startup.rs
crates/rpc/rpc-builder/tests/it/startup.rs
//! Startup tests use std::io; use reth_rpc_builder::{ error::{RpcError, ServerKind, WsHttpSamePortError}, RpcServerConfig, TransportRpcModuleConfig, }; use reth_rpc_server_types::RethRpcModule; use crate::utils::{ launch_http, launch_http_ws_same_port, launch_ws, test_address, test_rpc_builder, }; fn i...
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-builder/tests/it/main.rs
crates/rpc/rpc-builder/tests/it/main.rs
#![allow(missing_docs)] mod auth; mod http; mod middleware; mod serde; mod startup; pub mod utils; 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/metrics/src/lib.rs
crates/metrics/src/lib.rs
//! Collection of metrics utilities. //! //! ## Feature Flags //! //! - `common`: Common metrics utilities, such as wrappers around tokio senders and receivers. Pulls //! in `tokio`. #![doc( html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png", html_favicon_url = "ht...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/metrics/src/common/mpsc.rs
crates/metrics/src/common/mpsc.rs
//! Support for metering senders. Facilitates debugging by exposing metrics for number of messages //! sent, number of errors, etc. use crate::Metrics; use futures::Stream; use metrics::Counter; use std::{ pin::Pin, task::{ready, Context, Poll}, }; use tokio::sync::mpsc::{ self, error::{SendError, TryR...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/metrics/src/common/mod.rs
crates/metrics/src/common/mod.rs
pub mod mpsc;
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/node.rs
crates/primitives-traits/src/node.rs
use crate::{ Block, FullBlock, FullBlockBody, FullBlockHeader, FullReceipt, FullSignedTx, MaybeSerdeBincodeCompat, Receipt, }; use core::fmt; /// Configures all the primitive types of the node. /// /// This trait defines the core types used throughout the node for representing /// blockchain data. It serves as...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/serde_bincode_compat.rs
crates/primitives-traits/src/serde_bincode_compat.rs
//! Bincode compatibility support for reth primitive types. //! //! This module provides traits and implementations to work around bincode's limitations //! with optional serde fields. The bincode crate requires all fields to be present during //! serialization, which conflicts with types that have `#[serde(skip_serial...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/withdrawal.rs
crates/primitives-traits/src/withdrawal.rs
//! [EIP-4895](https://eips.ethereum.org/EIPS/eip-4895) Withdrawal types. #[cfg(test)] mod tests { use alloy_eips::eip4895::Withdrawal; use alloy_primitives::Address; use alloy_rlp::{RlpDecodable, RlpEncodable}; use proptest::proptest; use proptest_arbitrary_interop::arb; use reth_codecs::{add_...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/lib.rs
crates/primitives-traits/src/lib.rs
//! Commonly used types and traits in Reth. //! //! ## Overview //! //! This crate defines various traits and types that form the foundation of the reth stack. //! The top-level trait is [`Block`] which represents a block in the blockchain. A [`Block`] is //! composed of a [`Header`] and a [`BlockBody`]. A [`BlockBody`...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/proofs.rs
crates/primitives-traits/src/proofs.rs
//! Helper function for calculating Merkle proofs and hashes. pub use alloy_trie::root::ordered_trie_root_with_encoder; pub use alloy_consensus::proofs::calculate_receipt_root; /// Calculate a transaction root. /// /// `(rlp(index), encoded(tx))` pairs. #[doc(inline)] pub use alloy_consensus::proofs::calculate_transa...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/sync.rs
crates/primitives-traits/src/sync.rs
//! Lock synchronization primitives use once_cell as _; #[cfg(not(feature = "std"))] pub use once_cell::sync::{Lazy as LazyLock, OnceCell as OnceLock}; #[cfg(feature = "std")] pub use std::sync::{LazyLock, OnceLock};
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/log.rs
crates/primitives-traits/src/log.rs
#[cfg(test)] mod tests { use alloy_primitives::{Address, Bytes, Log as AlloyLog, B256}; use alloy_rlp::{RlpDecodable, RlpEncodable}; use proptest::proptest; use proptest_arbitrary_interop::arb; use reth_codecs::{add_arbitrary_tests, Compact}; use serde::{Deserialize, Serialize}; /// This ty...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/storage.rs
crates/primitives-traits/src/storage.rs
use alloy_primitives::{B256, U256}; use alloy_primitives::FlaggedStorage; /// Account storage entry. /// /// `key` is the subkey when used as a value in the `StorageChangeSets` table. #[derive(Debug, Default, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::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/primitives-traits/src/error.rs
crates/primitives-traits/src/error.rs
use alloc::boxed::Box; use core::ops::{Deref, DerefMut}; /// A pair of values, one of which is expected and one of which is actual. #[derive(Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash, thiserror::Error)] #[error("got {got}, expected {expected}")] pub struct GotExpected<T> { /// The actual value. ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/receipt.rs
crates/primitives-traits/src/receipt.rs
//! Receipt abstraction use crate::{InMemorySize, MaybeCompact, MaybeSerde, MaybeSerdeBincodeCompat}; use alloc::vec::Vec; use alloy_consensus::{ Eip2718EncodableReceipt, RlpDecodableReceipt, RlpEncodableReceipt, TxReceipt, Typed2718, }; use alloy_rlp::{Decodable, Encodable}; use core::fmt; /// Helper trait that ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/crypto.rs
crates/primitives-traits/src/crypto.rs
//! Crypto utilities. pub use alloy_consensus::crypto::*;
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/extended.rs
crates/primitives-traits/src/extended.rs
use crate::{ size::InMemorySize, transaction::signed::{RecoveryError, SignedTransaction}, }; use alloc::vec::Vec; use alloy_consensus::{transaction::SignerRecoverable, EthereumTxEnvelope, Transaction}; use alloy_eips::{ eip2718::{Eip2718Error, Eip2718Result, IsTyped2718}, eip2930::AccessList, eip770...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/account.rs
crates/primitives-traits/src/account.rs
use alloy_consensus::constants::KECCAK_EMPTY; use alloy_primitives::{keccak256, Bytes, B256, U256}; use alloy_trie::TrieAccount; use derive_more::Deref; use revm_bytecode::{Bytecode as RevmBytecode, BytecodeDecodeError}; use revm_state::AccountInfo; use seismic_alloy_genesis::GenesisAccount; #[cfg(any(test, feature = ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/size.rs
crates/primitives-traits/src/size.rs
use alloc::vec::Vec; use alloy_consensus::{ transaction::TxEip4844Sidecar, EthereumTxEnvelope, Header, TxEip1559, TxEip2930, TxEip4844, TxEip4844Variant, TxEip4844WithSidecar, TxEip7702, TxLegacy, TxType, }; use alloy_eips::eip4895::Withdrawals; use alloy_primitives::{Signature, TxHash, B256}; use revm_primitiv...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/transaction/signature.rs
crates/primitives-traits/src/transaction/signature.rs
//! Signature types and helpers /// Re-exported signature type pub use alloy_primitives::Signature; #[cfg(test)] mod tests { use crate::crypto::secp256k1::recover_signer; use alloy_primitives::{address, b256, Signature, U256}; use std::str::FromStr; #[test] fn test_recover_signer() { let ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/transaction/execute.rs
crates/primitives-traits/src/transaction/execute.rs
//! Abstraction of an executable transaction. use alloy_primitives::Address; /// Loads transaction into execution environment. pub trait FillTxEnv<TxEnv> { /// Fills `TxEnv` with an [`Address`] and transaction. fn fill_tx_env(&self, tx_env: &mut TxEnv, sender: Address); }
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/transaction/error.rs
crates/primitives-traits/src/transaction/error.rs
//! Various error variants that can happen when working with transactions. use crate::GotExpectedBoxed; use alloy_primitives::U256; /// Represents error variants that can happen when trying to validate a transaction. #[derive(Debug, Clone, Eq, PartialEq, thiserror::Error)] pub enum InvalidTransactionError { /// T...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/transaction/access_list.rs
crates/primitives-traits/src/transaction/access_list.rs
//! [EIP-2930](https://eips.ethereum.org/EIPS/eip-2930): Access List types #[cfg(test)] mod tests { use alloy_eips::eip2930::{AccessList, AccessListItem}; use alloy_primitives::{Address, B256}; use alloy_rlp::{RlpDecodable, RlpDecodableWrapper, RlpEncodable, RlpEncodableWrapper}; use proptest::proptes...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/transaction/mod.rs
crates/primitives-traits/src/transaction/mod.rs
//! Transaction abstraction //! //! This module provides traits for working with blockchain transactions: //! - [`Transaction`] - Basic transaction interface //! - [`signed::SignedTransaction`] - Transaction with signature and recovery methods //! - [`FullTransaction`] - Transaction with database encoding support //! /...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/transaction/signed.rs
crates/primitives-traits/src/transaction/signed.rs
//! API of a signed transaction. use crate::{InMemorySize, MaybeCompact, MaybeSerde, MaybeSerdeBincodeCompat}; use alloc::fmt; use alloy_consensus::{ transaction::{Recovered, RlpEcdsaEncodableTx, SignerRecoverable}, EthereumTxEnvelope, SignableTransaction, }; use alloy_eips::eip2718::{Decodable2718, Encodable2...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/transaction/recover.rs
crates/primitives-traits/src/transaction/recover.rs
//! Helpers for recovering signers from a set of transactions #[cfg(feature = "rayon")] pub use rayon::*; #[cfg(not(feature = "rayon"))] pub use iter::*; #[cfg(feature = "rayon")] mod rayon { use crate::{transaction::signed::RecoveryError, SignedTransaction}; use alloc::vec::Vec; use alloy_primitives::Ad...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/block/recovered.rs
crates/primitives-traits/src/block/recovered.rs
//! Recovered Block variant. use crate::{ block::{error::SealedBlockRecoveryError, SealedBlock}, transaction::signed::{RecoveryError, SignedTransaction}, Block, BlockBody, InMemorySize, SealedHeader, }; use alloc::vec::Vec; use alloy_consensus::{ transaction::{Recovered, TransactionMeta}, BlockHead...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/block/header.rs
crates/primitives-traits/src/block/header.rs
//! Block header data primitive. use crate::{InMemorySize, MaybeCompact, MaybeSerde, MaybeSerdeBincodeCompat}; use alloy_primitives::Sealable; use core::{fmt, hash::Hash}; /// Re-exported alias pub use alloy_consensus::BlockHeader as AlloyBlockHeader; /// Helper trait that unifies all behaviour required by block hea...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/block/error.rs
crates/primitives-traits/src/block/error.rs
//! Error types for the `block` module. use crate::transaction::signed::RecoveryError; /// Type alias for [`BlockRecoveryError`] with a [`SealedBlock`](crate::SealedBlock) value. pub type SealedBlockRecoveryError<B> = BlockRecoveryError<crate::SealedBlock<B>>; /// Error when recovering a block from [`SealedBlock`](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/primitives-traits/src/block/mod.rs
crates/primitives-traits/src/block/mod.rs
//! Block abstraction. //! //! This module provides the core block types and transformations: //! //! ```rust //! # use reth_primitives_traits::{Block, SealedBlock, RecoveredBlock}; //! # fn example<B: Block + 'static>(block: B) -> Result<(), Box<dyn std::error::Error>> //! # where B::Body: reth_primitives_traits::Bloc...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/block/body.rs
crates/primitives-traits/src/block/body.rs
//! Block body abstraction. use crate::{ transaction::signed::RecoveryError, BlockHeader, FullSignedTx, InMemorySize, MaybeSerde, MaybeSerdeBincodeCompat, SignedTransaction, }; use alloc::{fmt, vec::Vec}; use alloy_consensus::{Transaction, Typed2718}; use alloy_eips::{eip2718::Encodable2718, eip4895::Withdrawa...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/block/sealed.rs
crates/primitives-traits/src/block/sealed.rs
//! Sealed block types use crate::{ block::{error::BlockRecoveryError, RecoveredBlock}, transaction::signed::RecoveryError, Block, BlockBody, GotExpected, InMemorySize, SealedHeader, }; use alloc::vec::Vec; use alloy_consensus::BlockHeader; use alloy_eips::{eip1898::BlockWithParent, BlockNumHash}; use allo...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/header/test_utils.rs
crates/primitives-traits/src/header/test_utils.rs
//! Test utilities for the block header. use crate::BlockHeader; use alloy_consensus::Header; use alloy_primitives::{BlockHash, BlockNumber, B256, U256}; use proptest::{arbitrary::any, prop_compose}; use proptest_arbitrary_interop::arb; /// A helper trait for [`Header`]s that allows for mutable access to the headers ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/header/mod.rs
crates/primitives-traits/src/header/mod.rs
mod sealed; pub use sealed::{Header, SealedHeader, SealedHeaderFor}; #[cfg(any(test, feature = "test-utils", feature = "arbitrary"))] pub mod test_utils; /// Bincode-compatible header type serde implementations. #[cfg(feature = "serde-bincode-compat")] pub mod serde_bincode_compat { pub use super::sealed::serde_b...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/header/sealed.rs
crates/primitives-traits/src/header/sealed.rs
use crate::{sync::OnceLock, InMemorySize, NodePrimitives}; pub use alloy_consensus::Header; use alloy_consensus::Sealed; use alloy_eips::{eip1898::BlockWithParent, BlockNumHash}; use alloy_primitives::{keccak256, BlockHash, Sealable}; use alloy_rlp::{Decodable, Encodable}; use bytes::BufMut; use core::mem; use derive_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/primitives-traits/src/constants/gas_units.rs
crates/primitives-traits/src/constants/gas_units.rs
use alloc::string::String; use core::time::Duration; /// Represents one Kilogas, or `1_000` gas. pub const KILOGAS: u64 = 1_000; /// Represents one Megagas, or `1_000_000` gas. pub const MEGAGAS: u64 = KILOGAS * 1_000; /// Represents one Gigagas, or `1_000_000_000` gas. pub const GIGAGAS: u64 = MEGAGAS * 1_000; ///...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/primitives-traits/src/constants/mod.rs
crates/primitives-traits/src/constants/mod.rs
//! Ethereum protocol-related constants /// Gas units, for example [`GIGAGAS`]. pub mod gas_units; pub use gas_units::{GIGAGAS, KILOGAS, MEGAGAS}; /// The client version: `reth/v{major}.{minor}.{patch}` pub const RETH_CLIENT_VERSION: &str = concat!("reth/v", env!("CARGO_PKG_VERSION")); /// Minimum gas limit allowed ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/genesis-builder/src/genesis.rs
crates/genesis-builder/src/genesis.rs
use crate::{ error::{BuilderError, Result}, types::Genesis, }; use std::{fs, path::Path}; /// Load genesis JSON file pub fn load_genesis(path: &Path) -> Result<Genesis> { if !path.exists() { return Err(BuilderError::GenesisNotFound(path.to_path_buf())); } let content = fs::read_to_string(p...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/genesis-builder/src/builder.rs
crates/genesis-builder/src/builder.rs
use crate::{ artifact::ArtifactLoader, error::{BuilderError, Result}, types::{Genesis, GenesisAccount, Manifest}, }; use alloy_primitives::{hex, Address}; use std::io::{self, Write}; use tracing::{info, warn}; /// Default nonce for the genesis file pub const DEFAULT_NONCE: &str = "0x1"; /// Default balanc...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/genesis-builder/src/lib.rs
crates/genesis-builder/src/lib.rs
//! Genesis builder for constructing genesis files with contracts /// Artifact loader for fetching contract artifacts pub mod artifact; /// Genesis builder for constructing genesis files pub mod builder; /// Error types pub mod error; /// Genesis file handling pub mod genesis; /// Manifest file handling pub mod manife...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/genesis-builder/src/artifact.rs
crates/genesis-builder/src/artifact.rs
use crate::{ error::{BuilderError, Result}, types::ContractArtifact, }; use alloy_primitives::{hex, Bytes}; use serde_json::Value; use std::time::Duration; use tracing::info; /// Default timeout for loading contract artifacts from remote pub const DEFAULT_ARTIFACT_TIMEOUT: Duration = Duration::from_secs(30); ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/genesis-builder/src/manifest.rs
crates/genesis-builder/src/manifest.rs
use crate::{ error::{BuilderError, Result}, types::Manifest, }; use std::{fs, path::Path}; /// Load and parse the genesis contracts manifest from a TOML file pub fn load_manifest(path: &Path) -> Result<Manifest> { if !path.exists() { return Err(BuilderError::ManifestNotFound(path.to_path_buf())); ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false