From 219ea9672dadc8a4e0f5061f01f568e07098473a Mon Sep 17 00:00:00 2001 From: bgodlin <37313677+bgodlin@users.noreply.github.com> Date: Wed, 22 Nov 2023 16:37:13 +0000 Subject: [PATCH 1/5] SubQuery Featured --- docs/.vuepress/config.js | 1 + docs/developers/indexers.md | 25 +++++++++++++++++++++++++ docs/developers/querying.md | 4 ++++ 3 files changed, 30 insertions(+) create mode 100644 docs/developers/indexers.md diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 6d6c2a6..8989dad 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -266,6 +266,7 @@ module.exports = { "/developers/ethereum-contracts", "/developers/querying", "/developers/price-feeder", + "/developers/indexers", ], }, { diff --git a/docs/developers/indexers.md b/docs/developers/indexers.md new file mode 100644 index 0000000..00934f5 --- /dev/null +++ b/docs/developers/indexers.md @@ -0,0 +1,25 @@ +# Indexers + +In the context of blockchain and dApps, indexers go beyond traditional databases, facilitating streamlined access to on-chain data. This includes transaction histories, smart contract states, and event logs. In the dynamic and decentralised world of blockchain, indexers contribute to the efficiency of data queries, supporting real-time updates and ensuring the seamless functionality of diverse applications and platforms. + +There are several indexer solutions available, each offering different levels of decentralisation, ease of development, and performance for you to consider. These solutions serve as intermediaries to assist in indexing the Umee network. + +## 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 way. SubQuery supports 100+ ecosystems including Umee, Cosmos, Ethereum, Polygon, Polkadot, Algorand, NEAR, and Avalanche. + +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, multi-chain block scanners, or projects that index IBC transactions across zones. + +Other advantages include superior performance with multiple RPC endpoint configurations, multi-worker capabilities and a configurable caching architecture. To find out more, visit our [documentation](https://academy.subquery.network/). + +**Useful resources**: +- SubQuery Docs: [SubQuery Academy (Documentation)](https://academy.subquery.network/) +- Intro Quick Start Guide: [1. Create a New Project](https://academy.subquery.network/quickstart/quickstart.html) +- [Umee Starter Project](https://github.com/subquery/cosmos-subql-starter/tree/main/Umee/umee-starter) + +### Running and Hosting your Umee SubQuery APIs + +SubQuery is open-source, meaning you have the freedom to run it in the following three ways: +- Locally on your own computer (or a cloud provider of your choosing), [view the instructions on how to run SubQuery Locally](https://academy.subquery.network/run_publish/run.html). +- You can publish it to SubQuery's enterprise-level [Managed Service](https://managedservice.subquery.network/), where we'll host your SubQuery project in production ready services for mission critical data with zero-downtime blue/green deployments. There even is a generous free tier. [Find out how](https://academy.subquery.network/run_publish/publish.html). +- You can publish it to the decentralised [SubQuery Network](https://subquery.network/network), the most open, performant, reliable, and scalable data service for dApp developers. The SubQuery Network indexes and services data to the global community in an incentivised and verifiable way and supports Umee from launch. \ No newline at end of file diff --git a/docs/developers/querying.md b/docs/developers/querying.md index a4c135b..f06afc7 100644 --- a/docs/developers/querying.md +++ b/docs/developers/querying.md @@ -96,3 +96,7 @@ $ grpcurl -d '{"address": "umee17lu4h5nh28ctv9y6ldt0apqz7dxm8arvttx5xc"}' --plai } } ``` + +## Indexers + +Indexers, in a broad context, play a fundamental role in organising and optimising data retrieval within various systems. These tools act as navigational aids, allowing efficient access to specific information by creating structured indexes. In the realm of databases and information management, indexers enhance query performance by creating a roadmap to swiftly locate data entries. Read more [here](./indexers.md). \ No newline at end of file From 8a2267fd5202be4023c1c58f2eba39c22616751a Mon Sep 17 00:00:00 2001 From: bgodlin <37313677+bgodlin@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:46:29 +0100 Subject: [PATCH 2/5] Update indexers.md --- docs/developers/indexers.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/developers/indexers.md b/docs/developers/indexers.md index 00934f5..53a6ad4 100644 --- a/docs/developers/indexers.md +++ b/docs/developers/indexers.md @@ -2,11 +2,11 @@ In the context of blockchain and dApps, indexers go beyond traditional databases, facilitating streamlined access to on-chain data. This includes transaction histories, smart contract states, and event logs. In the dynamic and decentralised world of blockchain, indexers contribute to the efficiency of data queries, supporting real-time updates and ensuring the seamless functionality of diverse applications and platforms. -There are several indexer solutions available, each offering different levels of decentralisation, ease of development, and performance for you to consider. These solutions serve as intermediaries to assist in indexing the Umee network. +There are several indexer solutions available, each offering different levels of decentralisation, ease of development, and performance for you to consider. These solutions serve as intermediaries to assist in indexing the UmeeX network. ## 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 way. SubQuery supports 100+ ecosystems including Umee, Cosmos, Ethereum, Polygon, Polkadot, Algorand, NEAR, and Avalanche. +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 way. SubQuery supports 100+ ecosystems including UmeeX, Cosmos, Ethereum, Polygon, Polkadot, Algorand, NEAR, and Avalanche. 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, multi-chain block scanners, or projects that index IBC transactions across zones. @@ -15,11 +15,11 @@ Other advantages include superior performance with multiple RPC endpoint configu **Useful resources**: - SubQuery Docs: [SubQuery Academy (Documentation)](https://academy.subquery.network/) - Intro Quick Start Guide: [1. Create a New Project](https://academy.subquery.network/quickstart/quickstart.html) -- [Umee Starter Project](https://github.com/subquery/cosmos-subql-starter/tree/main/Umee/umee-starter) +- [UmeeX Starter Project](https://github.com/subquery/cosmos-subql-starter/tree/main/UmeeX/umeex-starter) -### Running and Hosting your Umee SubQuery APIs +### Running and Hosting your UmeeX SubQuery APIs SubQuery is open-source, meaning you have the freedom to run it in the following three ways: - Locally on your own computer (or a cloud provider of your choosing), [view the instructions on how to run SubQuery Locally](https://academy.subquery.network/run_publish/run.html). - You can publish it to SubQuery's enterprise-level [Managed Service](https://managedservice.subquery.network/), where we'll host your SubQuery project in production ready services for mission critical data with zero-downtime blue/green deployments. There even is a generous free tier. [Find out how](https://academy.subquery.network/run_publish/publish.html). -- You can publish it to the decentralised [SubQuery Network](https://subquery.network/network), the most open, performant, reliable, and scalable data service for dApp developers. The SubQuery Network indexes and services data to the global community in an incentivised and verifiable way and supports Umee from launch. \ No newline at end of file +- You can publish it to the decentralised [SubQuery Network](https://subquery.network/network), the most open, performant, reliable, and scalable data service for dApp developers. The SubQuery Network indexes and services data to the global community in an incentivised and verifiable way and supports UmeeX from launch. From 706358b5e60a2e91ed61145e5da49d9b41cebfb0 Mon Sep 17 00:00:00 2001 From: bgodlin <37313677+bgodlin@users.noreply.github.com> Date: Mon, 8 Jan 2024 16:51:10 +0100 Subject: [PATCH 3/5] Update indexers.md --- docs/developers/indexers.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/developers/indexers.md b/docs/developers/indexers.md index 53a6ad4..9f44f80 100644 --- a/docs/developers/indexers.md +++ b/docs/developers/indexers.md @@ -16,6 +16,7 @@ Other advantages include superior performance with multiple RPC endpoint configu - SubQuery Docs: [SubQuery Academy (Documentation)](https://academy.subquery.network/) - Intro Quick Start Guide: [1. Create a New Project](https://academy.subquery.network/quickstart/quickstart.html) - [UmeeX Starter Project](https://github.com/subquery/cosmos-subql-starter/tree/main/UmeeX/umeex-starter) +- For technical questions and support reach out to us start@subquery.network ### Running and Hosting your UmeeX SubQuery APIs From b41d28d2c36558217264beb511bf82047baab5d9 Mon Sep 17 00:00:00 2001 From: bgodlin <37313677+bgodlin@users.noreply.github.com> Date: Sun, 14 Jan 2024 17:42:27 +0100 Subject: [PATCH 4/5] Apply suggestions from code review Co-authored-by: Robert Zaremba --- docs/developers/indexers.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/developers/indexers.md b/docs/developers/indexers.md index 9f44f80..47aad0c 100644 --- a/docs/developers/indexers.md +++ b/docs/developers/indexers.md @@ -2,11 +2,11 @@ In the context of blockchain and dApps, indexers go beyond traditional databases, facilitating streamlined access to on-chain data. This includes transaction histories, smart contract states, and event logs. In the dynamic and decentralised world of blockchain, indexers contribute to the efficiency of data queries, supporting real-time updates and ensuring the seamless functionality of diverse applications and platforms. -There are several indexer solutions available, each offering different levels of decentralisation, ease of development, and performance for you to consider. These solutions serve as intermediaries to assist in indexing the UmeeX network. +There are several indexer solutions available, each offering different levels of decentralisation, ease of development, and performance for you to consider. These solutions serve as intermediaries to assist in indexing the UX network. ## 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 way. SubQuery supports 100+ ecosystems including UmeeX, Cosmos, Ethereum, Polygon, Polkadot, Algorand, NEAR, and Avalanche. +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 way. SubQuery supports 100+ ecosystems including UX, Cosmos, Ethereum, Polygon, Polkadot, Algorand, NEAR, and Avalanche. 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, multi-chain block scanners, or projects that index IBC transactions across zones. @@ -15,12 +15,12 @@ Other advantages include superior performance with multiple RPC endpoint configu **Useful resources**: - SubQuery Docs: [SubQuery Academy (Documentation)](https://academy.subquery.network/) - Intro Quick Start Guide: [1. Create a New Project](https://academy.subquery.network/quickstart/quickstart.html) -- [UmeeX Starter Project](https://github.com/subquery/cosmos-subql-starter/tree/main/UmeeX/umeex-starter) +- [UX Indexer Starter Project](https://github.com/subquery/cosmos-subql-starter/tree/main/ux/ux-starter) - For technical questions and support reach out to us start@subquery.network -### Running and Hosting your UmeeX SubQuery APIs +### Running and Hosting your UX SubQuery APIs SubQuery is open-source, meaning you have the freedom to run it in the following three ways: - Locally on your own computer (or a cloud provider of your choosing), [view the instructions on how to run SubQuery Locally](https://academy.subquery.network/run_publish/run.html). - You can publish it to SubQuery's enterprise-level [Managed Service](https://managedservice.subquery.network/), where we'll host your SubQuery project in production ready services for mission critical data with zero-downtime blue/green deployments. There even is a generous free tier. [Find out how](https://academy.subquery.network/run_publish/publish.html). -- You can publish it to the decentralised [SubQuery Network](https://subquery.network/network), the most open, performant, reliable, and scalable data service for dApp developers. The SubQuery Network indexes and services data to the global community in an incentivised and verifiable way and supports UmeeX from launch. +- You can publish it to the decentralised [SubQuery Network](https://subquery.network/network), the most open, performant, reliable, and scalable data service for dApp developers. The SubQuery Network indexes and services data to the global community in an incentivised and verifiable way and supports UX from launch. From 91a943d7b840460fad6e08e217d404f3c23837da Mon Sep 17 00:00:00 2001 From: Robert Zaremba Date: Fri, 19 Jan 2024 18:58:23 +0100 Subject: [PATCH 5/5] Update docs/developers/querying.md --- docs/developers/querying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers/querying.md b/docs/developers/querying.md index f06afc7..2a32586 100644 --- a/docs/developers/querying.md +++ b/docs/developers/querying.md @@ -99,4 +99,4 @@ $ grpcurl -d '{"address": "umee17lu4h5nh28ctv9y6ldt0apqz7dxm8arvttx5xc"}' --plai ## Indexers -Indexers, in a broad context, play a fundamental role in organising and optimising data retrieval within various systems. These tools act as navigational aids, allowing efficient access to specific information by creating structured indexes. In the realm of databases and information management, indexers enhance query performance by creating a roadmap to swiftly locate data entries. Read more [here](./indexers.md). \ No newline at end of file +Indexers, in a broad context, play a fundamental role in organising and optimising data retrieval within various systems. These tools act as navigational aids, allowing efficient access to specific information by creating structured indexes. In the realm of databases and information management, indexers enhance query performance by creating a roadmap to swiftly locate data entries. [Read more](./indexers.md). \ No newline at end of file