Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move data indexers to Data Availability section #541

Closed
wants to merge 4 commits into from
Closed
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
26 changes: 0 additions & 26 deletions docs/tools/developer-tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,32 +57,6 @@ Install Soroban CLI as explained in [Setup](../smart-contracts/getting-started/s

Auto-generated comprehensive reference documentation is available [here](https://github.com/stellar/soroban-cli/blob/main/docs/soroban-cli-full-docs.md).

## Data Indexers

To power your applications, a range of data services will be available from data indexers with query interfaces. These indexers will allow you to easily store and retrieve decoded ledger data, contract event emissions, and more. You can focus more energy on making your project successful, and waste less time figuring out precisely how to get the important data from the network.

### [SubQuery](https://subquery.network/)

An open-source data indexer that supports both Stellar and Soroban. SubQuery allows users to build a custom API for their dapp or smart contract and provides clean indexed data to any service. You can index ledgers, transactions, operations, and effects from Stellar and transactions and events from Soroban into your own Postgres database. Read the quick start guide here.

### [Mercury](https://mercurydata.app/)

A network indexing service that provides a toolkit to help get you started working with Stellar network data.

### [BlockEden](https://blockeden.xyz/stellar-soroban/)

An all-in-one Soroban RPC, indexer GraphQL API, and data analytics web portal.

### [Goldsky](https://goldsky.com/)

Mirror and indexer coming soon.

### [Ankr](https://www.ankr.com/)

Also offers RPC and Horizon instances.

### [Zettablock](https://www.zettablock.com/)

## GUIs

### [Laboratory](https://laboratory.stellar.org/#?network=test)
Expand Down
4 changes: 4 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,10 @@ const config = {
to: "/network/horizon",
label: "Horizon",
},
{
to: "/network/data-indexers",
label: "Data Indexers",
},
{
type: 'html',
value: '<hr><small>Platforms</small>',
Expand Down
8 changes: 8 additions & 0 deletions network/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ This is the best platform to see current state of the Stellar network.

[Learn more about Soroban RPC here!](./soroban-rpc/README.mdx)

## Data indexers

There is a range of data indexer services available with query interfaces.
These indexers allow you to easily store and retrieve decoded ledger data, contract event emissions, and more.
You can focus more energy on making your project successful, and waste less time figuring out precisely how to get the important data from the network.

[View available data indexers here!](./data-indexers/README.mdx)

## Anchor Platform

The Anchor Platform is a set of tools and APIs that enable developers and
Expand Down
28 changes: 28 additions & 0 deletions network/data-indexers/README.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: Ecosystem Data Indexer Providers
sidebar_position: 70
---

To power your applications, a range of data services will be available from data indexers with query interfaces. These indexers will allow you to easily store and retrieve decoded ledger data, contract event emissions, and more. You can focus more energy on making your project successful, and waste less time figuring out precisely how to get the important data from the network.

## [SubQuery](https://subquery.network/)

An open-source data indexer that supports both Stellar and Soroban. SubQuery allows users to build a custom API for their dapp or smart contract and provides clean indexed data to any service. You can index ledgers, transactions, operations, and effects from Stellar and transactions and events from Soroban into your own Postgres database. Read the quick start guide here.

## [Mercury](https://mercurydata.app/)

A network indexing service that provides a toolkit to help get you started working with Stellar network data.

## [BlockEden](https://blockeden.xyz/stellar-soroban/)

An all-in-one Soroban RPC, indexer GraphQL API, and data analytics web portal.

## [Goldsky](https://goldsky.com/)

Mirror and indexer coming soon.

## [Ankr](https://www.ankr.com/)

Also offers RPC and Horizon instances.

## [Zettablock](https://www.zettablock.com/)
13 changes: 13 additions & 0 deletions sidebarsNetwork.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@ const sidebars = {
collapsible: false,
},
],
data_indexers: [
{
type: 'category',
label: 'Data Indexers',
items: [
{
type: "autogenerated",
dirName: "data-indexers",
},
],
collapsible: false,
},
],
anchor_platform: [
{
type: 'category',
Expand Down
Loading