Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/developers/tools/indexers/overview.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: Overview
description: A collection of Ronin Data Indexers.
---

import DocCardList from '@theme/DocCardList';
import {findSidebarItem} from '@site/src/sidebarUtils';

Blockchain data indexers are specialized systems that efficiently collect, organize, and serve data from blockchains so it can be easily queried and used by decentralized applications (dApps), developers, and analysts. Blockchains are inherently hard to query directly because they store data in a sequential, low-level format that's optimized for integrity, not for speed or flexibility of access.

<DocCardList items={[
findSidebarItem('/developers/tools/indexers/subquery'),
]} />
31 changes: 31 additions & 0 deletions docs/developers/tools/indexers/subquery.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: SubQuery Data Indexing SDK
description: Learn how to use SubQuery Data Indexer
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';


# SubQuery

SubQuery is a leading blockchain data indexer that provides developers with fast, flexible, universal, open source and decentralised APIs for web3 projects. SubQuery SDK allows developers to get rich indexed data and build intuitive and immersive decentralised applications in a faster and more efficient.

Another one of SubQuery's competitive advantages is the ability to aggregate data not only within a chain but across multiple blockchains all within a single project. This allows the creation of feature-rich dashboard analytics and multi-chain block scanners. Other advantages include superior performance with multiple RPC endpoint configurations, multi-worker capabilities and a configurable caching architecture.

## Useful resources:

- SubQuery Docs: [SubQuery Academy (Documentation)](https://subquery.network/doc/)
- Intro Quick Start Guide: [1. Create a New Project](https://subquery.network/doc/quickstart/quickstart.html)
- [Ronin Mainnet Starter Project](https://github.com/subquery/ethereum-subql-starter/tree/main/Ronin/ronin-starter)
- [Ronin Testnet Starter Project](https://github.com/subquery/ethereum-subql-starter/tree/main/Ronin/ronin-testnet-starter)

For technical questions and support reach out to us `[email protected]`

## Running and Hosting your Ronin SubQuery APIs

SubQuery is open-source and designed to be easy to run, meaning you have the freedom to run it a variety of ways:

- [Locally on your own computer or on your cloud provider of choice.](https://subquery.network/doc/indexer/run_publish/introduction.html#locally-run-it-yourself)
- [By publishing it to the decentralised SubQuery Network](https://subquery.network/doc/indexer/run_publish/introduction.html#publish-to-the-subquery-network), the most open, performant, reliable, and scalable data service for dApp developers.
- [Leveraging a centralised hosting partner in the SubQuery community](https://subquery.network/doc/indexer/run_publish/introduction.html#other-hosting-providers-in-the-subquery-community), like OnFinality or Traceye.
12 changes: 12 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,18 @@ const sidebars = {
items:[
"developers/tools/node-providers",
"developers/tools/api-providers",
{
type: "category",
label: "Data Indexers",
link: {
type: "generated-index",
description: "Blockchain data indexers are specialized systems that efficiently collect, organize, and serve data from blockchains so it can be easily queried and used by decentralized applications (dApps), developers, and analysts. Blockchains are inherently hard to query directly because they store data in a sequential, low-level format that's optimized for integrity, not for speed or flexibility of access.",
slug: "/indexers",
},
items: [
"developers/tools/indexers/subquery",
]
},
{
type: "category",
label: "Oracles",
Expand Down