Proxima
  • 🎉Introduction
    • Welcome to Proxima
  • 🌊Streams
    • Overview
    • Quick start
    • Using streams
    • Our streams
      • Block headers
      • New tokens/collections
      • DEX events
      • Exchange rates
      • Private streams
        • Mangrove
        • All ERC20 events
        • All ERC721 events
        • Raw Uniswap events
      • Smart contract's events
    • Understanding streams
    • Architecture
  • 💾Data APIs
    • APIs
      • Fungible tokens
      • Decentralized exchanges
      • Account balances
  • 🚧Maru
    • Introduction
    • Programming Model
    • How Maru works
      • Architecture
      • Dataflow
      • Economics
      • Domain Specific Language
      • Arrangements
      • Open Problems
    • Background Knowledge
      • Multiset Hashes
      • Plonky2
    • Use Cases
      • Lifting Expensive Computation Off-Chain
      • Social Graph Database
      • Indexer
Powered by GitBook
On this page
  • Why streams?
  • Usage scenarios
  1. Streams

Overview

Streams provide a low-latency, high-throughput way to gain valuable data insights. With Proxima, you can put blockchain data to use by consuming streams and operating on them in your own hosted solution. This means no more relying on 3rd party stream operators to populate your database, train your bots, or manage your wallet.

Why streams?

The data in the form of streams allows you to:

  • Get the latest blockchain updates as soon as possible

  • Subscribe to a particular kind of events and get notified when they happen

  • Process on-chain events in the order they occurred and not care about sequential inconsistencies

Usage scenarios

  • Subscribe to live updates coming from the network in real-time.

  • Consume all historical events from the beginning.

  • Start consuming from a given timestamp or from the point you stopped last time.

  • Coming soon: subscribe to multiple streams simultaneously and process events in the order they happened on the chain gracefully handling reorgs.

PreviousWelcome to ProximaNextQuick start

Last updated 2 years ago

🌊