sof 0.17.1

Solana Observer Framework for low-latency shred ingestion and plugin-driven transaction observation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod attempt_cache;
mod dispatch;
mod process;

pub(super) use super::*;
pub(super) use attempt_cache::{
    DatasetAttemptKey, DatasetAttemptStatus, RecentDatasetAttemptCache,
};
pub(super) use dispatch::{
    DatasetDispatchQueue, DatasetProcessOutcome, DatasetWorkerConfig, DatasetWorkerShared,
    dispatch_completed_dataset, spawn_dataset_workers,
};
pub(super) use process::{
    DatasetProcessContext, DatasetWorkerScratch, EntryStreamPrefixAdvance, EntryStreamPrefixCursor,
    classify_tx_kind, process_completed_dataset_inline_transactions,
};