Skip to content

Commit eb3b2fa

Browse files
authored
Fix spelling and grammar (#660)
* Spellcheck docs/unused/example-reNFT.md * Spellcheck blog/2023-08-31-navigating-challenges-in-blockchain-indexing.md * Spellcheck blog/2023-08-31-navigating-challenges-in-blockchain-indexing.md * Spellcheck blog/2025-01-21-what-is-a-blockchain-indexer.md * Spellcheck blog/2025-01-21-what-is-a-blockchain-indexer.md * Spellcheck blog/2025-01-21-what-is-a-blockchain-indexer.md * Spellcheck blog/2023-10-26-envio-community-update-3.md * Spellcheck blog/2024-07-18-data-indexing-on-fuel.md * Spellcheck blog/2024-03-01-envio-community-update-7.md * Spellcheck blog/2024-01-17-envio-empowers-jarvis-network.md
1 parent 6fe21f2 commit eb3b2fa

7 files changed

+10
-10
lines changed

blog/2023-08-31-navigating-challenges-in-blockchain-indexing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ Teams that deploy their dApps to multiple chains necessarily desire a quick and
2828

2929
### Development hurdles
3030

31-
Developing and hosting your own indexing infrastructure can be a monumental task, requiring specialised skills which takes up significant development resources. Blockchain developers require cost-effective infrastructure tools that abstract away the complexities of managing hosted infrastructure and automate much of the set up process to simplify the overall development lifecycle.
31+
Developing and hosting your own indexing infrastructure can be a monumental task, requiring specialized skills which take up significant development resources. Blockchain developers require cost-effective infrastructure tools that abstract away the complexities of managing hosted infrastructure and automate much of the set up process to simplify the overall development lifecycle.
3232

3333
### Troubleshooting
3434

3535
When indexing goes wrong, and it can, identifying and resolving issues swiftly is a must. Troubleshooting can be time-consuming with poor error logging and slow sync speeds.
3636

3737
**Users don’t see runtime errors, they see bad apps.**
3838

39-
This can lead to users involuntary churning toward competitor products. Some indexing solutions offer integrated testing frameworks to increase confidence before deployment.
39+
This can lead to users involuntarily churning toward competitor products. Some indexing solutions offer integrated testing frameworks to increase confidence before deployment.
4040

4141
## Exploring Envio as an indexing solution
4242

blog/2023-10-26-envio-community-update-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ We’re thrilled to announce that we have released a new version of Envio, [v0.0
6161
- Reduced default batch sizes.
6262
- Added dynamic contracts to allow loading from all events.
6363
- Improved ERC20 templates with approval entity.
64-
- Handleed dynamic contracts in raw events worker.
64+
- Handled dynamic contracts in raw events worker.
6565
- Fixed raw events resync.
6666
- Implemented hooks for stop worker.
6767
- Fixed deferred breaking on an empty array.

blog/2024-01-17-envio-empowers-jarvis-network.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ In this specific case, Jarvis Network's decision to use the TimescaleDB extensio
4747

4848
While Jarvis Network took charge of self-hosting, Envio offers a reliable hosted service that simplifies the deployment and maintenance process of managing infrastructure.
4949

50-
Once configured, Envio’s hosted service streamlines deployment, by which are only required to push their latest indexer version to their GitHub repository to auto-deploy their indexer to the hosted service. Developers can easily manage and configure their indexers through the Envio Deployments GitHub app.
50+
Once configured, Envio’s hosted service streamlines deployment, as users are only required to push their latest indexer version to their GitHub repository to auto-deploy their indexer to the hosted service. Developers can easily manage and configure their indexers through the Envio Deployments GitHub app.
5151

5252
Envio offers the easiest way to deploy and host your indexer, handling the entire infrastructure and eliminating worries about complex infrastructure setup and management. This approach allows developers to focus on their dApp's core functionality while ensuring their indexer guarantees performance with production-grade infrastructure.
5353

blog/2024-03-01-envio-community-update-7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Join us for a masterclass in integrating blockchain data into AI to enhance your
4242

4343
🗓️Date: 18th Mar, 6 weeks
4444

45-
ℹ️ Appy here: [https://encode.club/ai-bootcamp](https://encode.club/ai-bootcamp)
45+
ℹ️ Apply here: [https://encode.club/ai-bootcamp](https://encode.club/ai-bootcamp)
4646

4747
**Solidity Bootcamp:**
4848

blog/2024-07-18-data-indexing-on-fuel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Fuel application teams also have the option of hosting their indexer and custom
5858
## Data Indexer Use Cases on Fuel using Envio
5959

6060
- [Data Indexer](https://github.com/compolabs/spark-envio-indexer) for [Spark](https://sprk.fi/), a DeFi super app with perpetual contracts, an orderbook. and as well as lending & borrowing features.
61-
- [Data Indexer](https://github.com/enviodev/fuel-thunder-exchange/tree/main) for [Thunder](https://thundernft.market/), a NFT Marketplace, allowing multiple purchases of NFTs in a single transaction thanks to parallen execution by Fuel.
61+
- [Data Indexer](https://github.com/enviodev/fuel-thunder-exchange/tree/main) for [Thunder](https://thundernft.market/), an NFT marketplace, allowing multiple purchases of NFTs in a single transaction thanks to parallel execution by Fuel.
6262

6363
## Getting Support
6464

blog/2025-01-21-what-is-a-blockchain-indexer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Blockchain data is inherently scattered and sequential. For instance, fetching t
2828

2929
Without an indexer, you must handle data processing logic within your app—adding technical debt and slowing down development. Indexers remove this burden, allowing you to concentrate on providing better user experiences.
3030

31-
##### **3. Responsiveness Apps**
31+
##### **3. Responsive Apps**
3232

3333
Indexers are optimized for low-latency queries, enabling access to real-time access and historical data. Whether your app requires real-time updates or rapid insights from past data, indexers are built to handle these demands efficiently.
3434

@@ -50,13 +50,13 @@ A typical blockchain indexer setup includes the following components:
5050

5151
- **[config.yaml](https://docs.envio.dev/docs/HyperIndex/configuration-file):** Defines the scope of indexing—including blockchain networks, smart contract addresses, start blocks, events, and more.
5252

53-
- **[schema.graphl](https://docs.envio.dev/docs/HyperIndex/schema):** The GraphQL schema file (e.g., schema.graphql) defines the structure of your data and how it's stored. Based on this schema, a custom GraphQL API is autogenerated, enabling efficient queries for the indexed data.
53+
- **[schema.graphql](https://docs.envio.dev/docs/HyperIndex/schema):** The GraphQL schema file (e.g., schema.graphql) defines the structure of your data and how it's stored. Based on this schema, a custom GraphQL API is autogenerated, enabling efficient queries for the indexed data.
5454

5555
- **[Event handlers](https://docs.envio.dev/docs/HyperIndex/event-handlers)**: Detects specific on-chain events and updates the indexed data accordingly, ensuring accurate and up-to-date information.
5656

5757
## How Does Indexing Work?
5858

59-
At its core, the indexing process begins with the indexer connecting to a network/s and monitoring new blocks as they are added to the chain. The indexer then extracts specific event data,, and organizes it in a structured database.
59+
At its core, the indexing process begins with the indexer connecting to a network/s and monitoring new blocks as they are added to the chain. The indexer then extracts specific event data and organizes it in a structured database.
6060

6161
Instead of forcing you to comb through each block manually, the indexer uses predefined configurations to filter and store the data most relevant to your needs. This structured data can then be queried efficiently using GraphQL APIs.
6262

docs/unused/example-reNFT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ slug: /example-reNFT
99

1010
This [repo](https://github.com/enviodev/reNFT-index) contains an example Envio indexer built using TypeScript for the [reNFT contract](https://polygonscan.com/address/0x4e52B73Aa28b7FF84d88eA3A90C0668f46043450) deployed on Polygon.
1111

12-
All of the events from the reNFT contract are indexed as entities and the `EventsSummary` entity is defined to track number of each event that the indexer has indexed.
12+
All of the events from the reNFT contract are indexed as entities and the `EventsSummary` entity is defined to track the number of each event that the indexer has indexed.
1313

1414
The indexer has been built using v0.0.21 of Envio.
1515

0 commit comments

Comments
 (0)