Skip to content

Indexer for account abstraction related blockchain events

Notifications You must be signed in to change notification settings

StartaleLabs/scs-aa-indexer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blockchain AA Event Indexer (Rust)

A modular, scalable, and extensible indexing service that listens to any events on Ethereum & L2 chains like Sonieum and Minato. This should also allow for future expansion to other blockchain events. The indexer listens to AA related events as now.

🔍 How Our Indexer Works:

Alloy's RPC Client & Provider:

We use alloy-rpc-client and alloy-provider to connect to the blockchain. It sends JSON-RPC requests directly to the blockchain nodes (like Alchemy, Infura, or self-hosted RPCs).

Filtering Events:

We manually define event signatures and contract addresses in config.toml.

Using Filter::new(), we specify the:

Contract address to listen for events. Event signatures (topics). From and to block range (polling the latest N blocks).

Polling Mechanism:

The indexer repeatedly queries eth_getLogs every polling_blocks * block_time seconds. It fetches logs within the specified block range. This is a direct approach rather than indexing the full blockchain state like The Graph.

Processing & Decoding Logs:

When logs are received, they are: Decoded using alloy_sol_types::SolEvent and forwarded to storage options.

1️⃣ High-Level Architecture Overview

🔹 Components Overview

Indexer Core - Handles blockchain event streaming and processing. Storage Layer - Stores indexed data (Redis or Message queue like Kafka/NATS/RabbitMQ). Configuration Layer - Manages environment variables and chain-specific configurations.

2️⃣ Core Components & Their Roles

🟢 (1) Blockchain Event Listener

Uses Alloy (ethers-rs alternative) to listen for Paymaster contract events. Can connect to multiple RPC endpoints for redundancy. Processes logs and filters relevant events. Supports Sonieum, Minato, and other L2 chains. Example Flow:

Subscribe to NewBlockHeaders. Retrieve logs for Paymaster/EP contract or any other contract events. Decode logs and send them to the processing queue.

🟡 (2) Event Processing Pipeline

Normalizes data from different chains. Validates and transforms event data. Pushes to storage layer (Redis, or Message Queue). Key Features:

Supports batch processing for high throughput.

🔵 (3) Storage Layer

The indexed data needs to be stored efficiently. We will support multiple backends:

Redis - Fast lookups and caching. Kafka/NATS - Streaming for real-time processing.

⚙️ (4) Configuration & Chain Management

Uses .env and config.toml to manage RPC URLs, contracts, events and storage settings. Supports multiple chains with different contract addresses as well as different event signatures.

3️⃣ Architecture

Screenshot 2025-03-02 at 9 26 01 PM

4️⃣ Run Indexer Locally

  • Create .env file similar to .env.examples
  • Start services Redis and Kafka locally. Can use docker image or brew service start
  • Optionally: Update/Add all contracts, event signatures and chain configuration required in config/config.toml file.
  • Run in terminal: RUST_LOG=debug cargo run

About

Indexer for account abstraction related blockchain events

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages