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/seismic/rpc/src/eth/utils.rs
crates/seismic/rpc/src/eth/utils.rs
//! Utils for testing the seismic rpc api use alloy_rpc_types::TransactionRequest; use reth_primitives::Recovered; use reth_primitives_traits::SignedTransaction; use reth_rpc_eth_types::{utils::recover_raw_transaction, EthApiError, EthResult}; use seismic_alloy_consensus::{Decodable712, SeismicTxEnvelope, TypedDataReq...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/rpc/src/eth/mod.rs
crates/seismic/rpc/src/eth/mod.rs
//! Seismic-Reth `eth_` endpoint implementation. pub mod api; pub mod ext; pub mod receipt; pub mod transaction; pub mod utils; pub use receipt::SeismicReceiptConverter; mod block; mod call; mod pending_block; use crate::{ eth::transaction::{SeismicRpcTxConverter, SeismicSimTxConverter}, SeismicEthApiError,...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/rpc/src/eth/transaction.rs
crates/seismic/rpc/src/eth/transaction.rs
//! Loads and formats Seismic transaction RPC response. use super::ext::SeismicTransaction; use crate::{ eth::{SeismicNodeCore, SignableSeismicTransactionRequest}, utils::recover_typed_data_request, SeismicEthApi, SeismicEthApiError, }; use alloy_consensus::{transaction::Recovered, Transaction as _}; 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/seismic/primitives/src/alloy_compat.rs
crates/seismic/primitives/src/alloy_compat.rs
//! Common conversions from alloy types. use crate::SeismicTransactionSigned; use alloy_consensus::TxEnvelope; use alloy_network::{AnyRpcTransaction, AnyTxEnvelope}; use alloy_primitives::PrimitiveSignature; use alloy_rpc_types_eth::{ConversionError, Transaction as AlloyRpcTransaction}; use alloy_serde::WithOtherField...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/primitives/src/lib.rs
crates/seismic/primitives/src/lib.rs
//! Standalone crate for Seismic-specific Reth primitive 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/s...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/primitives/src/test_utils.rs
crates/seismic/primitives/src/test_utils.rs
//! Test utils for seismic primitives, e.g. SeismicTransactionSigned use crate::SeismicTransactionSigned; use alloy_consensus::SignableTransaction; use alloy_dyn_abi::TypedData; use alloy_eips::eip2718::Encodable2718; use alloy_network::{EthereumWallet, TransactionBuilder}; use alloy_primitives::{aliases::U96, hex_lit...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/primitives/src/receipt.rs
crates/seismic/primitives/src/receipt.rs
use alloy_consensus::{ proofs::ordered_trie_root_with_encoder, Eip2718EncodableReceipt, Eip658Value, Receipt, ReceiptWithBloom, RlpDecodableReceipt, RlpEncodableReceipt, TxReceipt, Typed2718, }; use alloy_eips::{eip2718::Eip2718Result, Decodable2718, Encodable2718}; use alloy_primitives::{Bloom, Log, B256}; use...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/primitives/src/transaction/mod.rs
crates/seismic/primitives/src/transaction/mod.rs
//! Optimism transaction types pub mod signed; pub mod tx_type;
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/primitives/src/transaction/signed.rs
crates/seismic/primitives/src/transaction/signed.rs
//! A signed Seismic transaction. use alloc::vec::Vec; use alloy_consensus::{ transaction::{RlpEcdsaDecodableTx, RlpEcdsaEncodableTx}, SignableTransaction, Signed, Transaction, TxEip1559, TxEip2930, TxEip4844, TxEip7702, TxLegacy, Typed2718, }; use alloy_eips::{ eip2718::{Decodable2718, Eip2718Error, E...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/primitives/src/transaction/tx_type.rs
crates/seismic/primitives/src/transaction/tx_type.rs
//! Seismic transaction type. pub use seismic_alloy_consensus::SeismicTxType; #[cfg(test)] mod tests { use super::*; use alloy_consensus::constants::EIP7702_TX_TYPE_ID; use reth_codecs::{txtype::*, Compact}; use rstest::rstest; #[rstest] #[case(SeismicTxType::Legacy, COMPACT_IDENTIFIER_LEGACY...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/cli/src/lib.rs
crates/seismic/cli/src/lib.rs
//! Seismic-Reth CLI implementation. #![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/seismic/cli/src/chainspec.rs
crates/seismic/cli/src/chainspec.rs
use reth_chainspec::ChainSpec; use reth_cli::chainspec::{parse_genesis, ChainSpecParser}; use reth_seismic_chainspec::{SEISMIC_DEV, SEISMIC_DEV_OLD, SEISMIC_MAINNET}; use std::sync::Arc; /// Optimism chain specification parser. #[derive(Debug, Clone, Default)] #[non_exhaustive] pub struct SeismicChainSpecParser; 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/seismic/chainspec/src/lib.rs
crates/seismic/chainspec/src/lib.rs
//! Seismic-Reth chain specs. #![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/seismic/payload/src/builder.rs
crates/seismic/payload/src/builder.rs
//! A basic Seismic payload builder implementation. use alloy_consensus::{Transaction, Typed2718}; use alloy_primitives::U256; use reth_basic_payload_builder::{ is_better_payload, BuildArguments, BuildOutcome, MissingPayloadBehaviour, PayloadBuilder, PayloadConfig, }; use reth_chainspec::{ChainSpec, ChainSpecP...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/seismic/payload/src/lib.rs
crates/seismic/payload/src/lib.rs
//! Seismic's payload builder implementation. #![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/era/src/era_file_ops.rs
crates/era/src/era_file_ops.rs
//! Represents reading and writing operations' era file use crate::{e2s_types::Version, E2sError}; use std::{ fs::File, io::{Read, Seek, Write}, path::Path, }; /// Represents era file with generic content and identifier types pub trait EraFileFormat: Sized { /// Content group type type EraGroup; ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/era/src/era_types.rs
crates/era/src/era_types.rs
//! Era types for `.era` files //! //! See also <https://github.com/eth-clients/e2store-format-specs/blob/main/formats/era.md> use crate::{ consensus_types::{CompressedBeaconState, CompressedSignedBeaconBlock}, e2s_types::{Entry, IndexEntry, SLOT_INDEX}, }; /// Era file content group /// /// Format: `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/era/src/lib.rs
crates/era/src/lib.rs
//! Era and Era1 files support for Ethereum history expiry. //! //! Era1 files use the same e2store foundation but are specialized for //! execution layer block history, following the format: //! Version | block-tuple* | other-entries* | Accumulator | `BlockIndex` //! //! Era files are special instances of `.e2s` files...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/era/src/e2s_types.rs
crates/era/src/e2s_types.rs
//! Types to build e2store files //! ie. with `.e2s` extension //! //! e2store file contains header and entry //! //! The [`Header`] is an 8-byte structure at the beginning of each record in the file //! //! An [`Entry`] is a complete record in the file, consisting of both a [`Header`] and its //! associated data use ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/era/src/e2s_file.rs
crates/era/src/e2s_file.rs
//! `E2Store` file reader //! //! See also <https://github.com/status-im/nimbus-eth2/blob/stable/docs/e2store.md> use crate::e2s_types::{E2sError, Entry, Version}; use std::io::{BufReader, BufWriter, Read, Seek, SeekFrom, Write}; /// A reader for `E2Store` files that wraps a [`BufReader`]. #[derive(Debug)] pub struc...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/era/src/era1_types.rs
crates/era/src/era1_types.rs
//! Era1 types //! //! See also <https://github.com/eth-clients/e2store-format-specs/blob/main/formats/era1.md> use crate::{ e2s_types::{Entry, IndexEntry}, era_file_ops::EraFileId, execution_types::{Accumulator, BlockTuple, MAX_BLOCKS_PER_ERA1}, }; use alloy_primitives::BlockNumber; /// `BlockIndex` reco...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/era/src/test_utils.rs
crates/era/src/test_utils.rs
//! Utilities helpers to create era data structures for testing purposes. use crate::{ consensus_types::{CompressedBeaconState, CompressedSignedBeaconBlock}, execution_types::{ BlockTuple, CompressedBody, CompressedHeader, CompressedReceipts, TotalDifficulty, }, }; use alloy_consensus::{Header, Rec...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/era/src/era1_file.rs
crates/era/src/era1_file.rs
//! Represents a complete Era1 file //! //! The structure of an Era1 file follows the specification: //! `Version | block-tuple* | other-entries* | Accumulator | BlockIndex` //! //! See also <https://github.com/eth-clients/e2store-format-specs/blob/main/formats/era1.md>. use crate::{ e2s_file::{E2StoreReader, E2St...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/era/src/execution_types.rs
crates/era/src/execution_types.rs
//! Execution layer specific types for `.era1` files //! //! Contains implementations for compressed execution layer data structures: //! - [`CompressedHeader`] - Block header //! - [`CompressedBody`] - Block body //! - [`CompressedReceipts`] - Block receipts //! - [`TotalDifficulty`] - Block total difficulty //! //! 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/era/src/consensus_types.rs
crates/era/src/consensus_types.rs
//! Consensus types for Era post-merge history files use crate::{ e2s_types::{E2sError, Entry}, DecodeCompressedSsz, }; use snap::{read::FrameDecoder, write::FrameEncoder}; use ssz::Decode; use std::io::{Read, Write}; /// `CompressedSignedBeaconBlock` record type: [0x01, 0x00] pub const COMPRESSED_SIGNED_BEAC...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/era/tests/it/genesis.rs
crates/era/tests/it/genesis.rs
//! Genesis block tests for `.era1` files. //! //! These tests verify proper decompression and decoding of genesis blocks //! from different networks. use crate::{ Era1TestDownloader, ERA1_MAINNET_FILES_NAMES, ERA1_SEPOLIA_FILES_NAMES, MAINNET, SEPOLIA, }; use alloy_consensus::{BlockBody, Header}; use reth_era::{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/era/tests/it/roundtrip.rs
crates/era/tests/it/roundtrip.rs
//! Roundtrip tests for `.era1` files. //! //! These tests verify the full lifecycle of era files by: //! - Reading files from their original source //! - Decompressing and decoding their contents //! - Re-encoding and recompressing the data //! - Writing the data back to a new file //! - Confirming that all original 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/era/tests/it/main.rs
crates/era/tests/it/main.rs
//! Root //! Includes common helpers for integration tests //! //! These tests use the `reth-era-downloader` client to download `.era1` files temporarily //! and verify that we can correctly read and decompress their data. //! //! Files are downloaded from [`MAINNET_URL`] and [`SEPOLIA_URL`]. use reqwest::{Client, Url...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/era/tests/it/dd.rs
crates/era/tests/it/dd.rs
//! Simple decoding and decompressing tests //! for mainnet era1 files use alloy_consensus::{BlockBody, Header}; use alloy_primitives::U256; use reth_era::{ e2s_types::IndexEntry, era1_file::{Era1Reader, Era1Writer}, era_file_ops::{StreamReader, StreamWriter}, execution_types::CompressedBody, }; use re...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/stats.rs
crates/trie/trie/src/stats.rs
use std::time::{Duration, Instant}; /// Trie stats. #[derive(Clone, Copy, Debug)] pub struct TrieStats { duration: Duration, branches_added: u64, leaves_added: u64, } impl TrieStats { /// Duration for root calculation. pub const fn duration(&self) -> Duration { self.duration } ///...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/lib.rs
crates/trie/trie/src/lib.rs
//! The implementation of Merkle Patricia Trie, a cryptographically //! authenticated radix trie that is used to store key-value bindings. //! <https://ethereum.org/en/developers/docs/data-structures-and-encoding/patricia-merkle-trie/> //! //! ## Feature Flags //! //! - `rayon`: uses rayon for parallel [`HashedPostStat...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/walker.rs
crates/trie/trie/src/walker.rs
use crate::{ prefix_set::PrefixSet, trie_cursor::{subnode::SubNodePosition, CursorSubNode, TrieCursor}, BranchNodeCompact, Nibbles, }; use alloy_primitives::{map::HashSet, B256}; use alloy_trie::proof::AddedRemovedKeys; use reth_storage_errors::db::DatabaseError; use tracing::{instrument, trace}; #[cfg(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/trie/trie/src/witness.rs
crates/trie/trie/src/witness.rs
use crate::{ hashed_cursor::{HashedCursor, HashedCursorFactory}, prefix_set::TriePrefixSetsMut, proof::{Proof, ProofTrieNodeProviderFactory}, trie_cursor::TrieCursorFactory, }; use alloy_rlp::EMPTY_STRING_CODE; use alloy_trie::EMPTY_ROOT_HASH; use reth_trie_common::HashedPostState; use reth_trie_sparse:...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/forward_cursor.rs
crates/trie/trie/src/forward_cursor.rs
/// The implementation of forward-only in memory cursor over the entries. /// /// The cursor operates under the assumption that the supplied collection is pre-sorted. #[derive(Debug)] pub struct ForwardInMemoryCursor<'a, K, V> { /// The reference to the pre-sorted collection of entries. entries: std::slice::Ite...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/test_utils.rs
crates/trie/trie/src/test_utils.rs
use crate::{HashBuilder, Nibbles}; use alloy_primitives::{Address, B256}; use alloy_rlp::encode_fixed_size; use reth_primitives_traits::Account; use reth_trie_common::triehash::KeccakHasher; /// Re-export of [triehash]. pub use triehash; /// Compute the state root of a given set of accounts using [`triehash::sec_trie...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/node_iter.rs
crates/trie/trie/src/node_iter.rs
use crate::{ hashed_cursor::HashedCursor, trie_cursor::TrieCursor, walker::TrieWalker, Nibbles, TrieType, }; use alloy_primitives::B256; use alloy_trie::proof::AddedRemovedKeys; use reth_storage_errors::db::DatabaseError; use tracing::{instrument, trace}; /// Represents a branch node in the trie. #[derive(Debug)] ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/verify.rs
crates/trie/trie/src/verify.rs
use crate::{ hashed_cursor::{HashedCursor, HashedCursorFactory}, progress::{IntermediateStateRootState, StateRootProgress}, trie::StateRoot, trie_cursor::{ depth_first::{self, DepthFirstTrieIterator}, noop::NoopTrieCursorFactory, TrieCursor, TrieCursorFactory, }, Nibbles,...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/progress.rs
crates/trie/trie/src/progress.rs
use crate::{ hash_builder::HashBuilder, trie_cursor::CursorSubNode, updates::{StorageTrieUpdates, TrieUpdates}, }; use alloy_primitives::B256; use reth_primitives_traits::Account; use reth_stages_types::MerkleCheckpoint; /// The progress of the state root computation. #[derive(Debug)] pub enum StateRootPro...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/mock.rs
crates/trie/trie/src/mock.rs
/// The key visit. #[derive(Debug, Clone, PartialEq, Eq)] pub struct KeyVisit<T> { /// The type of key visit. pub visit_type: KeyVisitType<T>, /// The key that was visited, if found. pub visited_key: Option<T>, } /// The type of key visit. #[derive(Debug, Clone, PartialEq, Eq)] pub enum KeyVisitType<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/trie/trie/src/metrics.rs
crates/trie/trie/src/metrics.rs
use crate::{stats::TrieStats, trie::TrieType}; use metrics::{Counter, Histogram}; use reth_metrics::Metrics; /// Wrapper for state root metrics. #[derive(Debug)] pub struct StateRootMetrics { /// State trie metrics. pub state_trie: TrieRootMetrics, /// Storage trie metrics. pub storage_trie: TrieRootMe...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/trie.rs
crates/trie/trie/src/trie.rs
use crate::{ hashed_cursor::{HashedCursor, HashedCursorFactory, HashedStorageCursor}, node_iter::{TrieElement, TrieNodeIter}, prefix_set::{PrefixSet, TriePrefixSets}, progress::{ IntermediateRootState, IntermediateStateRootState, IntermediateStorageRootState, StateRootProgress, StorageRo...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/trie_cursor/subnode.rs
crates/trie/trie/src/trie_cursor/subnode.rs
use crate::{BranchNodeCompact, Nibbles, StoredSubNode, CHILD_INDEX_RANGE}; use alloy_primitives::B256; use alloy_trie::proof::AddedRemovedKeys; /// Cursor for iterating over a subtrie. #[derive(Clone)] pub struct CursorSubNode { /// The key of the current node. pub key: Nibbles, /// The position of the cur...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/trie_cursor/noop.rs
crates/trie/trie/src/trie_cursor/noop.rs
use super::{TrieCursor, TrieCursorFactory}; use crate::{BranchNodeCompact, Nibbles}; use alloy_primitives::B256; use reth_storage_errors::db::DatabaseError; /// Noop trie cursor factory. #[derive(Clone, Default, Debug)] #[non_exhaustive] pub struct NoopTrieCursorFactory; impl TrieCursorFactory for NoopTrieCursorFacto...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/trie_cursor/mod.rs
crates/trie/trie/src/trie_cursor/mod.rs
use crate::{BranchNodeCompact, Nibbles}; use alloy_primitives::B256; use reth_storage_errors::db::DatabaseError; /// In-memory implementations of trie cursors. mod in_memory; /// Cursor for iterating over a subtrie. pub mod subnode; /// Noop trie cursor implementations. pub mod noop; /// Depth-first trie iterator. ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/trie_cursor/mock.rs
crates/trie/trie/src/trie_cursor/mock.rs
use parking_lot::{Mutex, MutexGuard}; use std::{collections::BTreeMap, sync::Arc}; use tracing::instrument; use super::{TrieCursor, TrieCursorFactory}; use crate::{ mock::{KeyVisit, KeyVisitType}, BranchNodeCompact, Nibbles, }; use alloy_primitives::{map::B256Map, B256}; use reth_storage_errors::db::DatabaseEr...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/trie_cursor/in_memory.rs
crates/trie/trie/src/trie_cursor/in_memory.rs
use super::{TrieCursor, TrieCursorFactory}; use crate::{ forward_cursor::ForwardInMemoryCursor, updates::{StorageTrieUpdatesSorted, TrieUpdatesSorted}, }; use alloy_primitives::{map::HashSet, B256}; use reth_storage_errors::db::DatabaseError; use reth_trie_common::{BranchNodeCompact, Nibbles}; /// The trie cur...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/trie_cursor/depth_first.rs
crates/trie/trie/src/trie_cursor/depth_first.rs
use super::TrieCursor; use crate::{BranchNodeCompact, Nibbles}; use reth_storage_errors::db::DatabaseError; use std::cmp::Ordering; use tracing::trace; /// Compares two Nibbles in depth-first order. /// /// In depth-first ordering: /// - Descendants come before their ancestors (children before parents) /// - Siblings ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/proof/trie_node.rs
crates/trie/trie/src/proof/trie_node.rs
use super::{Proof, StorageProof}; use crate::{hashed_cursor::HashedCursorFactory, trie_cursor::TrieCursorFactory}; use alloy_primitives::{map::HashSet, B256}; use reth_execution_errors::{SparseTrieError, SparseTrieErrorKind}; use reth_trie_common::{prefix_set::TriePrefixSetsMut, MultiProofTargets, Nibbles}; use reth_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/trie/trie/src/proof/mod.rs
crates/trie/trie/src/proof/mod.rs
use crate::{ hashed_cursor::{HashedCursorFactory, HashedStorageCursor}, node_iter::{TrieElement, TrieNodeIter}, prefix_set::{PrefixSetMut, TriePrefixSetsMut}, trie_cursor::TrieCursorFactory, walker::TrieWalker, HashBuilder, Nibbles, TRIE_ACCOUNT_RLP_MAX_SIZE, }; use alloy_primitives::{ kecca...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/hashed_cursor/noop.rs
crates/trie/trie/src/hashed_cursor/noop.rs
use super::{HashedCursor, HashedCursorFactory, HashedStorageCursor}; use alloy_primitives::B256; use reth_primitives_traits::Account; use reth_storage_errors::db::DatabaseError; use revm_state::FlaggedStorage; /// Noop hashed cursor factory. #[derive(Clone, Default, Debug)] #[non_exhaustive] pub struct NoopHashedCurso...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/hashed_cursor/mod.rs
crates/trie/trie/src/hashed_cursor/mod.rs
use alloy_primitives::B256; use reth_primitives_traits::Account; use reth_storage_errors::db::DatabaseError; use revm_state::FlaggedStorage; /// Implementation of hashed state cursor traits for the post state. mod post_state; pub use post_state::*; /// Implementation of noop hashed state cursor. pub mod noop; /// Mo...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/src/hashed_cursor/mock.rs
crates/trie/trie/src/hashed_cursor/mock.rs
use std::{collections::BTreeMap, fmt::Debug, sync::Arc}; use crate::mock::{KeyVisit, KeyVisitType}; use super::{HashedCursor, HashedCursorFactory, HashedStorageCursor}; use alloy_primitives::{map::B256Map, B256}; use parking_lot::{Mutex, MutexGuard}; use reth_primitives_traits::Account; use reth_storage_errors::db::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/trie/trie/src/hashed_cursor/post_state.rs
crates/trie/trie/src/hashed_cursor/post_state.rs
use super::{HashedCursor, HashedCursorFactory, HashedStorageCursor}; use crate::forward_cursor::ForwardInMemoryCursor; use alloy_primitives::{map::B256Set, B256}; use reth_primitives_traits::Account; use reth_storage_errors::db::DatabaseError; use reth_trie_common::{HashedAccountsSorted, HashedPostStateSorted, HashedSt...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/trie/benches/trie_root.rs
crates/trie/trie/benches/trie_root.rs
#![allow(missing_docs, unreachable_pub)] use alloy_consensus::ReceiptWithBloom; use alloy_primitives::B256; use criterion::{criterion_group, criterion_main, Criterion}; use proptest::{prelude::*, strategy::ValueTree, test_runner::TestRunner}; use proptest_arbitrary_interop::arb; use reth_ethereum_primitives::Receipt; 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/trie/trie/benches/hash_post_state.rs
crates/trie/trie/benches/hash_post_state.rs
#![allow(missing_docs, unreachable_pub)] use alloy_primitives::{keccak256, map::HashMap, Address, B256, U256}; use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion}; use proptest::{prelude::*, strategy::ValueTree, test_runner::TestRunner}; use reth_trie::{HashedPostState, HashedStorage, KeccakKeyHash...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/src/proof.rs
crates/trie/db/src/proof.rs
use crate::{DatabaseHashedCursorFactory, DatabaseTrieCursorFactory}; use alloy_primitives::{keccak256, map::HashMap, Address, B256}; use reth_db_api::transaction::DbTx; use reth_execution_errors::StateProofError; use reth_trie::{ hashed_cursor::HashedPostStateCursorFactory, proof::{Proof, StorageProof}, tri...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/src/lib.rs
crates/trie/db/src/lib.rs
//! An integration of `reth-trie` with `reth-db`. #![cfg_attr(not(test), warn(unused_crate_dependencies))] mod hashed_cursor; mod prefix_set; mod proof; mod state; mod storage; mod trie_cursor; mod witness; pub use hashed_cursor::{ DatabaseHashedAccountCursor, DatabaseHashedCursorFactory, DatabaseHashedStorageCu...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/src/hashed_cursor.rs
crates/trie/db/src/hashed_cursor.rs
use alloy_primitives::B256; use reth_db_api::{ cursor::{DbCursorRO, DbDupCursorRO}, tables, transaction::DbTx, DatabaseError, }; use reth_primitives_traits::Account; use reth_trie::hashed_cursor::{HashedCursor, HashedCursorFactory, HashedStorageCursor}; use revm_state::FlaggedStorage; /// A struct wrap...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/src/witness.rs
crates/trie/db/src/witness.rs
use crate::{DatabaseHashedCursorFactory, DatabaseTrieCursorFactory}; use alloy_primitives::{map::B256Map, Bytes}; use reth_db_api::transaction::DbTx; use reth_execution_errors::TrieWitnessError; use reth_trie::{ hashed_cursor::HashedPostStateCursorFactory, trie_cursor::InMemoryTrieCursorFactory, witness::TrieWi...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/src/state.rs
crates/trie/db/src/state.rs
use crate::{DatabaseHashedCursorFactory, DatabaseTrieCursorFactory, PrefixSetLoader}; use alloy_primitives::{ map::{AddressMap, B256Map}, Address, BlockNumber, B256, }; use reth_db_api::{ cursor::DbCursorRO, models::{AccountBeforeTx, BlockNumberAddress}, tables, transaction::DbTx, DatabaseEr...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/src/storage.rs
crates/trie/db/src/storage.rs
use crate::{DatabaseHashedCursorFactory, DatabaseTrieCursorFactory}; use alloy_primitives::{keccak256, map::hash_map, Address, BlockNumber, B256}; use reth_db_api::{ cursor::DbCursorRO, models::BlockNumberAddress, tables, transaction::DbTx, DatabaseError, }; use reth_execution_errors::StorageRootError; use reth_tri...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/src/prefix_set.rs
crates/trie/db/src/prefix_set.rs
use alloy_primitives::{ map::{HashMap, HashSet}, BlockNumber, B256, }; use core::{ marker::PhantomData, ops::{Deref, RangeInclusive}, }; use reth_db_api::{ cursor::DbCursorRO, models::{AccountBeforeTx, BlockNumberAddress}, tables, transaction::DbTx, DatabaseError, }; use reth_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/trie/db/src/trie_cursor.rs
crates/trie/db/src/trie_cursor.rs
use alloy_primitives::B256; use reth_db_api::{ cursor::{DbCursorRO, DbCursorRW, DbDupCursorRO, DbDupCursorRW}, tables, transaction::DbTx, DatabaseError, }; use reth_trie::{ trie_cursor::{TrieCursor, TrieCursorFactory}, updates::StorageTrieUpdates, BranchNodeCompact, Nibbles, StorageTrieEntry...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/tests/proof.rs
crates/trie/db/tests/proof.rs
#![allow(missing_docs)] use alloy_consensus::EMPTY_ROOT_HASH; use alloy_primitives::{address, b256, keccak256, Address, Bytes, B256, U256}; use alloy_rlp::EMPTY_STRING_CODE; use reth_chainspec::{Chain, ChainSpec, HOLESKY, MAINNET}; use reth_primitives_traits::Account; use reth_provider::test_utils::{create_test_provid...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/tests/walker.rs
crates/trie/db/tests/walker.rs
#![allow(missing_docs)] use alloy_primitives::B256; use reth_db_api::{cursor::DbCursorRW, tables, transaction::DbTxMut}; use reth_provider::test_utils::create_test_provider_factory; use reth_trie::{ prefix_set::PrefixSetMut, trie_cursor::TrieCursor, walker::TrieWalker, BranchNodeCompact, Nibbles, StorageTrieEn...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/tests/witness.rs
crates/trie/db/tests/witness.rs
#![allow(missing_docs)] use alloy_consensus::EMPTY_ROOT_HASH; use alloy_primitives::{ keccak256, map::{HashMap, HashSet}, Address, Bytes, B256, }; use alloy_rlp::EMPTY_STRING_CODE; use reth_db::{cursor::DbCursorRW, tables}; use reth_db_api::transaction::DbTxMut; use reth_primitives_traits::{Account, Storag...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/tests/fuzz_in_memory_nodes.rs
crates/trie/db/tests/fuzz_in_memory_nodes.rs
#![allow(missing_docs)] use alloy_primitives::{B256, U256}; use proptest::prelude::*; use reth_db::{ cursor::{DbCursorRO, DbCursorRW, DbDupCursorRW}, tables, transaction::DbTxMut, }; use reth_primitives_traits::{Account, StorageEntry}; use reth_provider::test_utils::create_test_provider_factory; use reth_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/trie/db/tests/post_state.rs
crates/trie/db/tests/post_state.rs
#![allow(missing_docs)] use alloy_primitives::{B256, U256}; use proptest::prelude::*; use proptest_arbitrary_interop::arb; use reth_db::{tables, test_utils::create_test_rw_db}; use reth_db_api::{database::Database, transaction::DbTxMut}; use reth_primitives_traits::{Account, StorageEntry}; use reth_trie::{ hashed_...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/db/tests/trie.rs
crates/trie/db/tests/trie.rs
#![allow(missing_docs)] use alloy_consensus::EMPTY_ROOT_HASH; use alloy_primitives::{ address, b256, hex_literal::hex, keccak256, map::HashMap, Address, B256, U256, }; use alloy_rlp::Encodable; use proptest::{prelude::ProptestConfig, proptest}; use proptest_arbitrary_interop::arb; use reth_db::{tables, test_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/trie/sparse/src/lib.rs
crates/trie/sparse/src/lib.rs
//! The implementation of sparse MPT. #![cfg_attr(not(test), warn(unused_crate_dependencies))] #![cfg_attr(not(feature = "std"), no_std)] extern crate alloc; mod state; pub use state::*; mod trie; pub use trie::*; mod traits; pub use traits::*; pub mod provider; #[cfg(feature = "metrics")] mod metrics; /// Re-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/trie/sparse/src/state.rs
crates/trie/sparse/src/state.rs
use crate::{ provider::{TrieNodeProvider, TrieNodeProviderFactory}, traits::SparseTrieInterface, RevealedSparseNode, SerialSparseTrie, SparseTrie, TrieMasks, }; use alloc::{collections::VecDeque, vec::Vec}; use alloy_primitives::{ map::{B256Map, HashMap, HashSet}, Bytes, B256, }; use alloy_rlp::{Dec...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse/src/metrics.rs
crates/trie/sparse/src/metrics.rs
//! Metrics for the sparse state trie use reth_metrics::{metrics::Histogram, Metrics}; /// Metrics for the sparse state trie #[derive(Default, Debug)] pub(crate) struct SparseStateTrieMetrics { /// Number of account nodes that were skipped during a multiproof reveal due to being redundant /// (i.e. they were ...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse/src/traits.rs
crates/trie/sparse/src/traits.rs
//! Traits for sparse trie implementations. use core::fmt::Debug; use alloc::{borrow::Cow, vec, vec::Vec}; use alloy_primitives::{ map::{HashMap, HashSet}, B256, }; use alloy_trie::{BranchNodeCompact, TrieMask}; use reth_execution_errors::SparseTrieResult; use reth_trie_common::{Nibbles, TrieNode}; use crate...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse/src/provider.rs
crates/trie/sparse/src/provider.rs
//! Traits and default implementations related to retrieval of blinded trie nodes. use alloy_primitives::{Bytes, B256}; use reth_execution_errors::SparseTrieError; use reth_trie_common::{Nibbles, TrieMask}; /// Factory for instantiating trie node providers. #[auto_impl::auto_impl(&)] pub trait TrieNodeProviderFactory...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse/src/trie.rs
crates/trie/sparse/src/trie.rs
use crate::{ provider::{RevealedNode, TrieNodeProvider}, LeafLookup, LeafLookupError, RevealedSparseNode, SparseTrieInterface, SparseTrieUpdates, TrieMasks, }; use alloc::{ borrow::Cow, boxed::Box, fmt, string::{String, ToString}, vec, vec::Vec, }; use alloy_primitives::{ hex, ke...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse/benches/update.rs
crates/trie/sparse/benches/update.rs
#![allow(missing_docs)] use alloy_primitives::{B256, U256}; use criterion::{criterion_group, criterion_main, BatchSize, BenchmarkId, Criterion}; use proptest::{prelude::*, strategy::ValueTree}; use rand::seq::IteratorRandom; use reth_trie_common::Nibbles; use reth_trie_sparse::{provider::DefaultTrieNodeProvider, Seria...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse/benches/root.rs
crates/trie/sparse/benches/root.rs
#![allow(missing_docs)] use alloy_primitives::{map::B256Map, B256, U256}; use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion}; use itertools::Itertools; use proptest::{prelude::*, strategy::ValueTree, test_runner::TestRunner}; use reth_trie::{ hashed_cursor::{noop::NoopHashedStorageCursor, Has...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse/benches/rlp_node.rs
crates/trie/sparse/benches/rlp_node.rs
#![allow(missing_docs)] use alloy_primitives::{B256, U256}; use criterion::{criterion_group, criterion_main, Criterion}; use prop::strategy::ValueTree; use proptest::{prelude::*, test_runner::TestRunner}; use rand::{seq::IteratorRandom, Rng}; use reth_testing_utils::generators; use reth_trie::Nibbles; use reth_trie_sp...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/hashed_state.rs
crates/trie/common/src/hashed_state.rs
use core::ops::Not; use crate::{ added_removed_keys::MultiAddedRemovedKeys, prefix_set::{PrefixSetMut, TriePrefixSetsMut}, KeyHasher, MultiProofTargets, Nibbles, }; use alloc::{borrow::Cow, vec::Vec}; use alloy_primitives::{ keccak256, map::{hash_map, B256Map, B256Set, HashMap, HashSet}, Addres...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/key.rs
crates/trie/common/src/key.rs
use alloy_primitives::{keccak256, B256}; /// Trait for hashing keys in state. pub trait KeyHasher: Default + Clone + Send + Sync + 'static { /// Hashes the given bytes into a 256-bit hash. fn hash_key<T: AsRef<[u8]>>(bytes: T) -> B256; } /// A key hasher that uses the Keccak-256 hash function. #[derive(Clone,...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/subnode.rs
crates/trie/common/src/subnode.rs
use super::BranchNodeCompact; use alloc::vec::Vec; /// Walker sub node for storing intermediate state root calculation state in the database. #[derive(Debug, Clone, PartialEq, Eq, Default)] pub struct StoredSubNode { /// The key of the current node. pub key: Vec<u8>, /// The index of the next child to visi...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/lib.rs
crates/trie/common/src/lib.rs
//! Commonly used types for trie usage. #![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/trie/common/src/proofs.rs
crates/trie/common/src/proofs.rs
//! Merkle trie proofs. use crate::{Nibbles, TrieAccount}; use alloc::{borrow::Cow, vec::Vec}; use alloy_consensus::constants::KECCAK_EMPTY; use alloy_primitives::{ keccak256, map::{hash_map, B256Map, B256Set, HashMap}, Address, Bytes, B256, U256, }; use alloy_rlp::{encode_fixed_size, Decodable, EMPTY_STRI...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/added_removed_keys.rs
crates/trie/common/src/added_removed_keys.rs
//! Tracking of keys having been added and removed from the tries. use crate::HashedPostState; use alloy_primitives::{map::B256Map, B256}; use alloy_trie::proof::AddedRemovedKeys; /// Tracks added and removed keys across account and storage tries. #[derive(Debug, Clone)] pub struct MultiAddedRemovedKeys { account...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/root.rs
crates/trie/common/src/root.rs
//! Common root computation functions. // Re-export for convenience. #[doc(inline)] pub use alloy_trie::root::{ state_root, state_root_ref_unhashed, state_root_unhashed, state_root_unsorted, storage_root, storage_root_unhashed, storage_root_unsorted, };
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/storage.rs
crates/trie/common/src/storage.rs
use super::{BranchNodeCompact, StoredNibblesSubKey}; /// Account storage trie node. #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)] #[cfg_attr(any(test, feature = "serde"), derive(serde::Serialize, serde::Deserialize))] pub struct StorageTrieEntry { /// The nibbles of the intermediate node pub nibbles:...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/prefix_set.rs
crates/trie/common/src/prefix_set.rs
use crate::Nibbles; use alloc::{sync::Arc, vec::Vec}; use alloy_primitives::map::{B256Map, B256Set}; /// Collection of mutable prefix sets. #[derive(Clone, Default, Debug)] pub struct TriePrefixSetsMut { /// A set of account prefixes that have changed. pub account_prefix_set: PrefixSetMut, /// A map contai...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/constants.rs
crates/trie/common/src/constants.rs
/// The maximum size of RLP encoded trie account in bytes. /// 2 (header) + 4 * 1 (field lens) + 8 (nonce) + 32 * 3 (balance, storage root, code hash) pub const TRIE_ACCOUNT_RLP_MAX_SIZE: usize = 110; #[cfg(test)] mod tests { use super::*; use crate::TrieAccount; use alloy_primitives::{B256, U256}; use...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/updates.rs
crates/trie/common/src/updates.rs
use crate::{BranchNodeCompact, HashBuilder, Nibbles}; use alloc::{ collections::{btree_map::BTreeMap, btree_set::BTreeSet}, vec::Vec, }; use alloy_primitives::{ map::{B256Map, B256Set, HashMap, HashSet}, FixedBytes, B256, }; /// The aggregation of trie updates. #[derive(PartialEq, Eq, Clone, Default, 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/trie/common/src/input.rs
crates/trie/common/src/input.rs
use crate::{prefix_set::TriePrefixSetsMut, updates::TrieUpdates, HashedPostState}; /// Inputs for trie-related computations. #[derive(Default, Debug, Clone)] pub struct TrieInput { /// The collection of cached in-memory intermediate trie nodes that /// can be reused for computation. pub nodes: TrieUpdates,...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/nibbles.rs
crates/trie/common/src/nibbles.rs
use alloc::vec::Vec; use derive_more::Deref; pub use nybbles::Nibbles; /// The representation of nibbles of the merkle trie stored in the database. #[derive(Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash, derive_more::Index)] #[cfg_attr(any(test, feature = "serde"), derive(serde::Serialize, serde::Deseria...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/account.rs
crates/trie/common/src/account.rs
/// Re-export for convenience. pub use alloy_trie::TrieAccount; #[cfg(test)] mod tests { use super::*; use crate::root::storage_root_unhashed; use alloy_consensus::constants::KECCAK_EMPTY; use alloy_genesis::GenesisAccount; use alloy_primitives::{keccak256, Bytes, B256, U256}; use std::collecti...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/src/hash_builder/state.rs
crates/trie/common/src/hash_builder/state.rs
use crate::TrieMask; use alloc::vec::Vec; use alloy_trie::{hash_builder::HashBuilderValue, nodes::RlpNode, HashBuilder}; use nybbles::Nibbles; /// The hash builder state for storing in the database. /// Check the `reth-trie` crate for more info on hash builder. #[derive(Debug, Clone, PartialEq, Eq, Default)] #[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/trie/common/src/hash_builder/mod.rs
crates/trie/common/src/hash_builder/mod.rs
//! MPT hash builder implementation. mod state; pub use state::HashBuilderState; pub use alloy_trie::hash_builder::*;
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/common/benches/prefix_set.rs
crates/trie/common/benches/prefix_set.rs
#![allow(missing_docs, unreachable_pub)] use criterion::{ criterion_group, criterion_main, measurement::WallTime, BenchmarkGroup, Criterion, }; use prop::test_runner::TestRng; use proptest::{ prelude::*, strategy::ValueTree, test_runner::{basic_result_cache, TestRunner}, }; use reth_trie_common::{ 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/trie/sparse-parallel/src/lib.rs
crates/trie/sparse-parallel/src/lib.rs
//! The implementation of parallel sparse MPT. #![cfg_attr(not(test), warn(unused_crate_dependencies))] extern crate alloc; mod trie; pub use trie::*; mod lower; use lower::*; #[cfg(feature = "metrics")] mod metrics;
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse-parallel/src/lower.rs
crates/trie/sparse-parallel/src/lower.rs
use crate::SparseSubtrie; use reth_trie_common::Nibbles; /// Tracks the state of the lower subtries. /// /// When a [`crate::ParallelSparseTrie`] is initialized/cleared then its `LowerSparseSubtrie`s are /// all blinded, meaning they have no nodes. A blinded `LowerSparseSubtrie` may hold onto a cleared /// [`SparseSub...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse-parallel/src/metrics.rs
crates/trie/sparse-parallel/src/metrics.rs
//! Metrics for the parallel sparse trie use reth_metrics::{metrics::Histogram, Metrics}; /// Metrics for the parallel sparse trie #[derive(Metrics, Clone)] #[metrics(scope = "parallel_sparse_trie")] pub(crate) struct ParallelSparseTrieMetrics { /// A histogram for the number of subtries updated when calculating h...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/sparse-parallel/src/trie.rs
crates/trie/sparse-parallel/src/trie.rs
use crate::LowerSparseSubtrie; use alloc::borrow::Cow; use alloy_primitives::{ map::{Entry, HashMap}, B256, }; use alloy_rlp::Decodable; use alloy_trie::{BranchNodeCompact, TrieMask, EMPTY_ROOT_HASH}; use reth_execution_errors::{SparseTrieErrorKind, SparseTrieResult}; use reth_trie_common::{ prefix_set::{Pr...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
true
SeismicSystems/seismic-reth
https://github.com/SeismicSystems/seismic-reth/blob/62834bd8deb86513778624a3ba33f55f4d6a1471/crates/trie/parallel/src/proof.rs
crates/trie/parallel/src/proof.rs
use crate::{ metrics::ParallelTrieMetrics, proof_task::{ProofTaskKind, ProofTaskManagerHandle, StorageProofInput}, root::ParallelStateRootError, stats::ParallelTrieTracker, StorageRootTargets, }; use alloy_primitives::{ map::{B256Map, B256Set, HashMap}, B256, }; use alloy_rlp::{BufMut, Encod...
rust
Apache-2.0
62834bd8deb86513778624a3ba33f55f4d6a1471
2026-01-04T20:20:17.218210Z
false