Skip to main content

Architecture

Ingest SDK Structure

Ingest SDK is organized into three main components:

  1. Ledger Backends: Used to stream ledgers from the Stellar network. https://github.com/stellar/go/tree/master/ingest/ledgerbackend
  2. Ledger Readers : Iterators to extract individual changes or transactions from a ledger. https://github.com/stellar/go/tree/master/ingest
  3. Ledger Processors : Functions to process individual changes or transactions and extract meaningful data such as accounts, offers, claimable balance, etc. They are used in conjunction with Ledger Readers to interpret and transform ledger data.