diff --git a/docs/tools/developer-tools.mdx b/docs/tools/developer-tools.mdx index 22f211ba1..42fb0fa76 100644 --- a/docs/tools/developer-tools.mdx +++ b/docs/tools/developer-tools.mdx @@ -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) diff --git a/docusaurus.config.js b/docusaurus.config.js index 36f2b24da..e341c07ff 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -212,6 +212,10 @@ const config = { to: "/network/horizon", label: "Horizon", }, + { + to: "/network/data-indexers", + label: "Data Indexers", + }, { type: 'html', value: '
Platforms', diff --git a/network/README.mdx b/network/README.mdx index d00e8943e..0625e755e 100644 --- a/network/README.mdx +++ b/network/README.mdx @@ -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 diff --git a/network/data-indexers/README.mdx b/network/data-indexers/README.mdx new file mode 100644 index 000000000..4325d13ec --- /dev/null +++ b/network/data-indexers/README.mdx @@ -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/) diff --git a/sidebarsNetwork.js b/sidebarsNetwork.js index 7fb4b1b18..9925b0ada 100644 --- a/sidebarsNetwork.js +++ b/sidebarsNetwork.js @@ -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',