Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 640 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 640 Bytes

Arbitrum Billing Balance Subgraph

Overview

This subgraph is designed to associate billing balances with each subgraph deployed on the Arbitrum network. It aims to provide clear, accessible data regarding billing transactions and balances for users and developers interacting with subgraphs within the Arbitrum ecosystem.

Features

  • Balance Tracking: Tracks and updates the billing balance associated with each subgraph.

Usage

Query the subgraph using the generated GraphQL endpoint. Example query:

{
  subgraphs {
    id
    billingBalance
    transactions {
      id
      amount
      timestamp
    }
  }
}