-
Notifications
You must be signed in to change notification settings - Fork 13
add showcase #702
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
add showcase #702
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| --- | ||
| id: damon | ||
| title: Damon | ||
| sidebar_label: Damon | ||
| slug: /damon | ||
| --- | ||
|
|
||
| # 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! | ||
|
|
||
| --- | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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! | ||
|
|
||
| --- |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,63 @@ | ||||||
| --- | ||||||
| id: sei | ||||||
| title: Sei | ||||||
| sidebar_label: Sei | ||||||
| slug: /sei | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 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
Suggested change
🤖 Prompt for AI Agents |
||||||
| --- | ||||||
|
|
||||||
| # 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! | ||||||
|
|
||||||
| --- | ||||||
| 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). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix slug to keep the page under HyperIndex docs routing.
Avoid absolute slug to prevent routing outside /docs/HyperIndex.
Apply:
📝 Committable suggestion
🤖 Prompt for AI Agents