Skip to content
Merged
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
63 changes: 63 additions & 0 deletions docs/HyperIndex/supported-networks/damon.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
id: damon
title: Damon
sidebar_label: Damon
slug: /damon
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix slug to keep the page under HyperIndex docs routing.

Avoid absolute slug to prevent routing outside /docs/HyperIndex.

Apply:

-slug: /damon
+slug: supported-networks/damon
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
slug: /damon
slug: supported-networks/damon
🤖 Prompt for AI Agents
In docs/HyperIndex/supported-networks/damon.md around line 5 the frontmatter
uses an absolute slug " /damon" which places the page outside the HyperIndex
docs routing; change the slug to a relative value (e.g., "damon" or
"supported-networks/damon") or remove the leading slash so the page remains
under /docs/HyperIndex routing.

---

# Damon

## Indexing Damon Data with Envio

| **Field** | **Value** |
|-------------------------------|----------------------------------------------------------------------------------------------------|
| **Damon Chain ID** | 341 |
| **HyperSync URL Endpoint** | [https://damon.hypersync.xyz](https://damon.hypersync.xyz) or [https://341.hypersync.xyz](https://341.hypersync.xyz) |
| **HyperRPC URL Endpoint** | [https://damon.rpc.hypersync.xyz](https://damon.rpc.hypersync.xyz) or [https://341.rpc.hypersync.xyz](https://341.rpc.hypersync.xyz) |

---

### Tier

GOLD 🏅

### Overview

Envio is a modular hyper-performant data indexing solution for Damon, enabling applications and developers to efficiently index and aggregate real-time and historical blockchain data. Envio offers three primary solutions for indexing and accessing large amounts of data: [HyperIndex](/docs/HyperIndex/overview) (a customizable indexing framework), [HyperSync](/docs/HyperSync/overview) (a real-time indexed data layer), and [HyperRPC](/docs/HyperSync/overview-hyperrpc) (extremely fast read-only RPC).

HyperSync accelerates the synchronization of historical data on Damon, enabling what usually takes hours to sync millions of events to be completed in under a minute—up to 1000x faster than traditional RPC methods.

Designed to optimize the user experience, Envio offers automatic code generation, flexible language support, multi-chain data aggregation, and a reliable, cost-effective hosted service.

To get started, see our documentation or follow our quickstart [guide](/docs/HyperIndex/contract-import).

---

### Defining Network Configurations

```yaml
name: IndexerName # Specify indexer name
description: Indexer Description # Include indexer description
networks:
- id: 341 # Damon
start_block: START_BLOCK_NUMBER # Specify the starting block
contracts:
- name: ContractName
address:
- "0xYourContractAddress1"
- "0xYourContractAddress2"
handler: ./src/EventHandlers.ts
events:
- event: Event # Specify event
- event: Event
```

With these steps completed, your application will be set to efficiently index Damon data using Envio’s blockchain indexer.

For more information on how to set up your config, define a schema, and write event handlers, refer to the guides section in our [documentation](/docs/HyperIndex/configuration-file).

### Support

Can’t find what you’re looking for or need support? Reach out to us on [Discord](https://discord.com/invite/Q9qt8gZ2fX); we’re always happy to help!

---
63 changes: 63 additions & 0 deletions docs/HyperIndex/supported-networks/lightlink.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure we want to show lightlink or sei yet, I know it's not related to this pr but will show in the docs after this

Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
id: lightlink
title: Lightlink
sidebar_label: Lightlink
slug: /lightlink
---

# Lightlink

## Indexing Lightlink Data with Envio

| **Field** | **Value** |
|-------------------------------|----------------------------------------------------------------------------------------------------|
| **Lightlink Chain ID** | 1890 |
| **HyperSync URL Endpoint** | [https://lightlink.hypersync.xyz](https://lightlink.hypersync.xyz) or [https://1890.hypersync.xyz](https://1890.hypersync.xyz) |
| **HyperRPC URL Endpoint** | [https://lightlink.rpc.hypersync.xyz](https://lightlink.rpc.hypersync.xyz) or [https://1890.rpc.hypersync.xyz](https://1890.rpc.hypersync.xyz) |

---

### Tier

STONE 🪨

### Overview

Envio is a modular hyper-performant data indexing solution for Lightlink, enabling applications and developers to efficiently index and aggregate real-time and historical blockchain data. Envio offers three primary solutions for indexing and accessing large amounts of data: [HyperIndex](/docs/HyperIndex/overview) (a customizable indexing framework), [HyperSync](/docs/HyperSync/overview) (a real-time indexed data layer), and [HyperRPC](/docs/HyperSync/overview-hyperrpc) (extremely fast read-only RPC).

HyperSync accelerates the synchronization of historical data on Lightlink, enabling what usually takes hours to sync millions of events to be completed in under a minute—up to 1000x faster than traditional RPC methods.

Designed to optimize the user experience, Envio offers automatic code generation, flexible language support, multi-chain data aggregation, and a reliable, cost-effective hosted service.

To get started, see our documentation or follow our quickstart [guide](/docs/HyperIndex/contract-import).

---

### Defining Network Configurations

```yaml
name: IndexerName # Specify indexer name
description: Indexer Description # Include indexer description
networks:
- id: 1890 # Lightlink
start_block: START_BLOCK_NUMBER # Specify the starting block
contracts:
- name: ContractName
address:
- "0xYourContractAddress1"
- "0xYourContractAddress2"
handler: ./src/EventHandlers.ts
events:
- event: Event # Specify event
- event: Event
```

With these steps completed, your application will be set to efficiently index Lightlink data using Envio’s blockchain indexer.

For more information on how to set up your config, define a schema, and write event handlers, refer to the guides section in our [documentation](/docs/HyperIndex/configuration-file).

### Support

Can’t find what you’re looking for or need support? Reach out to us on [Discord](https://discord.com/invite/Q9qt8gZ2fX); we’re always happy to help!

---
63 changes: 63 additions & 0 deletions docs/HyperIndex/supported-networks/sei.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
id: sei
title: Sei
sidebar_label: Sei
slug: /sei
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix slug to keep the page under HyperIndex docs routing.

Absolute slug sends this doc to /sei (outside /docs/HyperIndex). Use a relative slug so sidebars, breadcrumbs, and SEO remain consistent.

Apply:

-slug: /sei
+slug: supported-networks/sei
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
slug: /sei
slug: supported-networks/sei
🤖 Prompt for AI Agents
In docs/HyperIndex/supported-networks/sei.md around line 5 the frontmatter uses
an absolute slug "slug: /sei" which routes the page outside the HyperIndex docs;
change it to a relative slug (for example "slug: sei") so the page stays under
the HyperIndex docs routing and preserves sidebars, breadcrumbs, and SEO.

---

# Sei

## Indexing Sei Data with Envio

| **Field** | **Value** |
|-------------------------------|----------------------------------------------------------------------------------------------------|
| **Sei Chain ID** | 1329 |
| **HyperSync URL Endpoint** | [https://sei.hypersync.xyz](https://sei.hypersync.xyz) or [https://1329.hypersync.xyz](https://1329.hypersync.xyz) |
| **HyperRPC URL Endpoint** | [https://sei.rpc.hypersync.xyz](https://sei.rpc.hypersync.xyz) or [https://1329.rpc.hypersync.xyz](https://1329.rpc.hypersync.xyz) |

---

### Tier

STONE 🪨

### Overview

Envio is a modular hyper-performant data indexing solution for Sei, enabling applications and developers to efficiently index and aggregate real-time and historical blockchain data. Envio offers three primary solutions for indexing and accessing large amounts of data: [HyperIndex](/docs/HyperIndex/overview) (a customizable indexing framework), [HyperSync](/docs/HyperSync/overview) (a real-time indexed data layer), and [HyperRPC](/docs/HyperSync/overview-hyperrpc) (extremely fast read-only RPC).

HyperSync accelerates the synchronization of historical data on Sei, enabling what usually takes hours to sync millions of events to be completed in under a minute—up to 1000x faster than traditional RPC methods.

Designed to optimize the user experience, Envio offers automatic code generation, flexible language support, multi-chain data aggregation, and a reliable, cost-effective hosted service.

To get started, see our documentation or follow our quickstart [guide](/docs/HyperIndex/contract-import).

---

### Defining Network Configurations

```yaml
name: IndexerName # Specify indexer name
description: Indexer Description # Include indexer description
networks:
- id: 1329 # Sei
start_block: START_BLOCK_NUMBER # Specify the starting block
contracts:
- name: ContractName
address:
- "0xYourContractAddress1"
- "0xYourContractAddress2"
handler: ./src/EventHandlers.ts
events:
- event: Event # Specify event
- event: Event
```

With these steps completed, your application will be set to efficiently index Sei data using Envio’s blockchain indexer.

For more information on how to set up your config, define a schema, and write event handlers, refer to the guides section in our [documentation](/docs/HyperIndex/configuration-file).

### Support

Can’t find what you’re looking for or need support? Reach out to us on [Discord](https://discord.com/invite/Q9qt8gZ2fX); we’re always happy to help!

---
3 changes: 3 additions & 0 deletions docs/HyperSync/HyperRPC/hyperrpc-supported-networks.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Here is a table of the currently supported networks on HyperRPC and their respec
| Citrea Testnet | 5115 | https://citrea-testnet.rpc.hypersync.xyz or https://5115.rpc.hypersync.xyz | |
| Curtis | 33111 | https://curtis.rpc.hypersync.xyz or https://33111.rpc.hypersync.xyz | |
| Cyber | 7560 | https://cyber.rpc.hypersync.xyz or https://7560.rpc.hypersync.xyz | |
| Damon | 341 | https://damon.rpc.hypersync.xyz or https://341.rpc.hypersync.xyz | |
| Eth Traces | 1 | https://eth-traces.rpc.hypersync.xyz or https://1-traces.rpc.hypersync.xyz | |
| Ethereum Mainnet | 1 | https://eth.rpc.hypersync.xyz or https://1.rpc.hypersync.xyz | |
| Fantom | 250 | https://fantom.rpc.hypersync.xyz or https://250.rpc.hypersync.xyz | |
Expand All @@ -60,6 +61,7 @@ Here is a table of the currently supported networks on HyperRPC and their respec
| Hyperliquid | 999 | https://hyperliquid.rpc.hypersync.xyz or https://999.rpc.hypersync.xyz | |
| Ink | 57073 | https://ink.rpc.hypersync.xyz or https://57073.rpc.hypersync.xyz | |
| Kroma | 255 | https://kroma.rpc.hypersync.xyz or https://255.rpc.hypersync.xyz | |
| Lightlink | 1890 | https://lightlink.rpc.hypersync.xyz or https://1890.rpc.hypersync.xyz | |
| Linea | 59144 | https://linea.rpc.hypersync.xyz or https://59144.rpc.hypersync.xyz | |
| Lisk | 1135 | https://lisk.rpc.hypersync.xyz or https://1135.rpc.hypersync.xyz | |
| Lukso | 42 | https://lukso.rpc.hypersync.xyz or https://42.rpc.hypersync.xyz | |
Expand All @@ -85,6 +87,7 @@ Here is a table of the currently supported networks on HyperRPC and their respec
| Rootstock | 30 | https://rootstock.rpc.hypersync.xyz or https://30.rpc.hypersync.xyz | |
| Saakuru | 7225878 | https://saakuru.rpc.hypersync.xyz or https://7225878.rpc.hypersync.xyz | |
| Scroll | 534352 | https://scroll.rpc.hypersync.xyz or https://534352.rpc.hypersync.xyz | |
| Sei | 1329 | https://sei.rpc.hypersync.xyz or https://1329.rpc.hypersync.xyz | |
| Sepolia | 11155111 | https://sepolia.rpc.hypersync.xyz or https://11155111.rpc.hypersync.xyz | |
| Shimmer Evm | 148 | https://shimmer-evm.rpc.hypersync.xyz or https://148.rpc.hypersync.xyz | |
| Soneium | 1868 | https://soneium.rpc.hypersync.xyz or https://1868.rpc.hypersync.xyz | |
Expand Down
3 changes: 3 additions & 0 deletions docs/HyperSync/hypersync-supported-networks.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ If you are a network operator or user and would like improved service support or
| Citrea Testnet | 5115 | https://citrea-testnet.hypersync.xyz or https://5115.hypersync.xyz | 🪨 | |
| Curtis | 33111 | https://curtis.hypersync.xyz or https://33111.hypersync.xyz | 🪨 | |
| Cyber | 7560 | https://cyber.hypersync.xyz or https://7560.hypersync.xyz | 🪨 | |
| Damon | 341 | https://damon.hypersync.xyz or https://341.hypersync.xyz | 🏅 | |
| Eth Traces | 1 | https://eth-traces.hypersync.xyz or https://1-traces.hypersync.xyz | 🏅 | |
| Ethereum Mainnet | 1 | https://eth.hypersync.xyz or https://1.hypersync.xyz | 🏅 | |
| Fantom | 250 | https://fantom.hypersync.xyz or https://250.hypersync.xyz | 🪨 | |
Expand All @@ -68,6 +69,7 @@ If you are a network operator or user and would like improved service support or
| Hyperliquid | 999 | https://hyperliquid.hypersync.xyz or https://999.hypersync.xyz | 🪨 | |
| Ink | 57073 | https://ink.hypersync.xyz or https://57073.hypersync.xyz | 🪨 | |
| Kroma | 255 | https://kroma.hypersync.xyz or https://255.hypersync.xyz | 🪨 | |
| Lightlink | 1890 | https://lightlink.hypersync.xyz or https://1890.hypersync.xyz | 🪨 | |
| Linea | 59144 | https://linea.hypersync.xyz or https://59144.hypersync.xyz | 🥉 | |
| Lisk | 1135 | https://lisk.hypersync.xyz or https://1135.hypersync.xyz | 🪨 | |
| Lukso | 42 | https://lukso.hypersync.xyz or https://42.hypersync.xyz | 🪨 | |
Expand All @@ -93,6 +95,7 @@ If you are a network operator or user and would like improved service support or
| Rootstock | 30 | https://rootstock.hypersync.xyz or https://30.hypersync.xyz | 🪨 | |
| Saakuru | 7225878 | https://saakuru.hypersync.xyz or https://7225878.hypersync.xyz | 🪨 | |
| Scroll | 534352 | https://scroll.hypersync.xyz or https://534352.hypersync.xyz | 🪨 | |
| Sei | 1329 | https://sei.hypersync.xyz or https://1329.hypersync.xyz | 🪨 | |
| Sepolia | 11155111 | https://sepolia.hypersync.xyz or https://11155111.hypersync.xyz | 🎒 | |
| Shimmer Evm | 148 | https://shimmer-evm.hypersync.xyz or https://148.hypersync.xyz | 🪨 | |
| Soneium | 1868 | https://soneium.hypersync.xyz or https://1868.hypersync.xyz | 🪨 | |
Expand Down
5 changes: 5 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,11 @@ const config = {
label: "HyperSync Docs",
position: "left",
},
{
to: "showcase",
label: "Showcase",
position: "left",
},
{
to: "blog",
label: "Blog",
Expand Down
5 changes: 5 additions & 0 deletions docusaurus.config.llm.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ const config = {
label: "HyperSync Docs",
position: "left",
},
{
to: "showcase",
label: "Showcase",
position: "left",
},
{
href: "https://github.com/enviodev",
label: "GitHub",
Expand Down
20 changes: 20 additions & 0 deletions src/pages/showcase.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: Showcase
description: A non-exhaustive list of cool things built with HyperIndex and HyperSync.
---

# Showcase

A non-exhaustive showcase of some fun and interesting tools and projects built with HyperIndex and HyperSync in hackathons and events.

- [v4.xyz](https://v4.xyz)
- [oraclewars.xyz](https://oraclewars.xyz)
- [thebannedlist.xyz](https://thebannedlist.xyz)
- [liqo.xyz](https://liqo.xyz)
- [CryptoKitties Genome Visualiser](https://crypto-kitties-genome-visualiser.vercel.app/)
- [LogTUI](https://www.npmjs.com/package/logtui)
- [chaindensity.xyz](https://chaindensity.xyz)
- [snubb](https://www.npmjs.com/package/snubb)
- [chainpulse](https://www.npmjs.com/package/chainpulse)

Want to be featured? Reach out on [Discord](https://discord.gg/Q9qt8gZ2fX).
Loading