What problem does it solve? Reading Stellar blockchain state requires choosing between two API paradigms (Stellar RPC and Horizon), each with different endpoints, history limits, and capabilities, which makes it hard to pick the right method for balances, transactions, events, or historical queries. ## Core Features & Use Cases - Stellar RPC Methods: Covers getLatestLedger, getLedgerEntries, getEvents, simulateTransaction, sendTransaction, and transaction polling with TypeScript examples using @stellar/stellar-sdk. - Horizon REST API: Documents account loading, balances, transactions, operations, payments, effects, pagination, and Server-Sent Events streaming for legacy workflows. - Historical Data & Migration: Explains the 7-day RPC history limit, Hubble BigQuery datasets, Galexie pipelines, the Stellar data lake, third-party indexers, and Horizon-to-RPC migration patterns. - Use Case: When building an analytics dashboard that needs both live contract events and multi-year payment history, use this Skill to combine RPC getEvents for recent data with Hubble or Galexie for deep history. ## Quick Start Ask the assistant to fetch an account's recent transactions and contract events from Stellar testnet using the RPC and Horizon patterns in this skill.