Architecture
Ingest SDK Structure
Ingest SDK is organized into three main components:
- Ledger Backends: Used to stream ledgers from the Stellar network.
https://github.com/stellar/go/tree/master/ingest/ledgerbackend
- Ledger Readers : Iterators to extract individual changes or transactions from a ledger.
https://github.com/stellar/go/tree/master/ingest
- 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.