Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 493 Bytes

File metadata and controls

18 lines (14 loc) · 493 Bytes

Backend Architecture

Data Flow Overview

flowchart TD
    A[Stellar Horizon API] --> B[RPC Indexer]
    B --> C[PostgreSQL Database]
    C --> D[Express API]
    D --> E[Dashboard UI]
Loading

Explanation

  1. The RPC Indexer fetches vesting-related data from the Stellar Horizon API.
  2. The RPC Indexer processes and stores the data in the PostgreSQL database.
  3. The Express API reads data from the PostgreSQL database.
  4. The Dashboard UI consumes data from the Express API.