-
Notifications
You must be signed in to change notification settings - Fork 13
star announcement banner #574
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
docs/HyperIndex/supported-networks/chiliz-testnet-spicy.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| --- | ||
| id: chiliz-testnet-spicy | ||
| title: Chiliz Testnet Spicy | ||
| sidebar_label: Chiliz Testnet Spicy | ||
| slug: /chiliz-testnet-spicy | ||
| --- | ||
|
|
||
| # Chiliz Testnet Spicy | ||
|
|
||
| ## Indexing Chiliz Testnet Spicy Data with Envio via RPC | ||
|
|
||
| :::warning | ||
| RPC as a source is not as fast as HyperSync. It is important in production to source RPC data from reliable sources. We recommend our partners at [drpc.org](https://drpc.org). Below, we have provided a set of free endpoints sourced from chainlist.org. **We don't recommend using these in production** as they may be rate limited. We recommend [tweaking the RPC config](./rpc-sync) to accommodate potential rate limiting. | ||
| ::: | ||
|
|
||
| We suggest getting the latest from [chainlist.org](https://chainlist.org). | ||
|
|
||
| ### Overview | ||
|
|
||
| Envio supports Chiliz Testnet Spicy through an RPC-based indexing approach. This method allows you to ingest blockchain data via an RPC endpoint by setting the RPC configuration. | ||
|
|
||
| --- | ||
|
|
||
| ### Defining Network Configurations | ||
|
|
||
| To use Chiliz Testnet Spicy, define the RPC configuration in your network configuration file as follows: | ||
|
|
||
| :::info | ||
| You may need to adjust more parameters of the [rpc configuration](./rpc-sync) to support the specific rpc provider. | ||
| ::: | ||
|
|
||
| ```yaml | ||
| name: IndexerName # Specify indexer name | ||
| description: Indexer Description # Include indexer description | ||
| networks: | ||
| - id: 88882 # Chiliz Testnet Spicy | ||
| rpc_config: | ||
| url: https://spicy-rpc.chiliz.com | ||
| 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 | ||
| ``` | ||
|
|
||
| Want HyperSync for Chiliz Testnet Spicy? Request network support here [Discord](https://discord.gg/fztEvj79m3)! |
52 changes: 52 additions & 0 deletions
52
docs/HyperIndex/supported-networks/lightlink-pegasus-testnet.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| --- | ||
| id: lightlink-pegasus-testnet | ||
| title: Lightlink Pegasus Testnet | ||
| sidebar_label: Lightlink Pegasus Testnet | ||
| slug: /lightlink-pegasus-testnet | ||
| --- | ||
|
|
||
| # Lightlink Pegasus Testnet | ||
|
|
||
| ## Indexing Lightlink Pegasus Testnet Data with Envio via RPC | ||
|
|
||
| :::warning | ||
| RPC as a source is not as fast as HyperSync. It is important in production to source RPC data from reliable sources. We recommend our partners at [drpc.org](https://drpc.org). Below, we have provided a set of free endpoints sourced from chainlist.org. **We don't recommend using these in production** as they may be rate limited. We recommend [tweaking the RPC config](./rpc-sync) to accommodate potential rate limiting. | ||
| ::: | ||
|
|
||
| We suggest getting the latest from [chainlist.org](https://chainlist.org). | ||
|
|
||
| ### Overview | ||
|
|
||
| Envio supports Lightlink Pegasus Testnet through an RPC-based indexing approach. This method allows you to ingest blockchain data via an RPC endpoint by setting the RPC configuration. | ||
|
|
||
| --- | ||
|
|
||
| ### Defining Network Configurations | ||
|
|
||
| To use Lightlink Pegasus Testnet, define the RPC configuration in your network configuration file as follows: | ||
|
|
||
| :::info | ||
| You may need to adjust more parameters of the [rpc configuration](./rpc-sync) to support the specific rpc provider. | ||
| ::: | ||
|
|
||
| ```yaml | ||
| name: IndexerName # Specify indexer name | ||
| description: Indexer Description # Include indexer description | ||
| networks: | ||
| - id: 1891 # Lightlink Pegasus Testnet | ||
| rpc_config: | ||
| url: https://replicator.pegasus.lightlink.io/rpc/v1 | ||
| # url: https://endpoints.omniatech.io/v1/lightlink/pegasus/public # alternative | ||
| 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 | ||
| ``` | ||
|
|
||
| Want HyperSync for Lightlink Pegasus Testnet? Request network support here [Discord](https://discord.gg/fztEvj79m3)! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| --- | ||
| id: lightlink-phoenix | ||
| title: Lightlink Phoenix | ||
| sidebar_label: Lightlink Phoenix | ||
| slug: /lightlink-phoenix | ||
| --- | ||
|
|
||
| # Lightlink Phoenix | ||
|
|
||
| ## Indexing Lightlink Phoenix Data with Envio via RPC | ||
|
|
||
| :::warning | ||
| RPC as a source is not as fast as HyperSync. It is important in production to source RPC data from reliable sources. We recommend our partners at [drpc.org](https://drpc.org). Below, we have provided a set of free endpoints sourced from chainlist.org. **We don't recommend using these in production** as they may be rate limited. We recommend [tweaking the RPC config](./rpc-sync) to accommodate potential rate limiting. | ||
| ::: | ||
|
|
||
| We suggest getting the latest from [chainlist.org](https://chainlist.org). | ||
|
|
||
| ### Overview | ||
|
|
||
| Envio supports Lightlink Phoenix through an RPC-based indexing approach. This method allows you to ingest blockchain data via an RPC endpoint by setting the RPC configuration. | ||
|
|
||
| --- | ||
|
|
||
| ### Defining Network Configurations | ||
|
|
||
| To use Lightlink Phoenix, define the RPC configuration in your network configuration file as follows: | ||
|
|
||
| :::info | ||
| You may need to adjust more parameters of the [rpc configuration](./rpc-sync) to support the specific rpc provider. | ||
| ::: | ||
|
|
||
| ```yaml | ||
| name: IndexerName # Specify indexer name | ||
| description: Indexer Description # Include indexer description | ||
| networks: | ||
| - id: 1890 # Lightlink Phoenix | ||
| rpc_config: | ||
| url: https://replicator.phoenix.lightlink.io/rpc/v1 | ||
| # url: https://endpoints.omniatech.io/v1/lightlink/phoenix/public # alternative | ||
| 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 | ||
| ``` | ||
|
|
||
| Want HyperSync for Lightlink Phoenix? Request network support here [Discord](https://discord.gg/fztEvj79m3)! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ slug: /merlin | |
|
|
||
| ### Tier | ||
|
|
||
| SILVER 🥈 | ||
| EXPERIMENTAL 🧪 | ||
|
|
||
| ### Overview | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ slug: /mev-commit | |
|
|
||
| ### Tier | ||
|
|
||
| BRONZE 🥉 | ||
| EXPERIMENTAL 🧪 | ||
|
|
||
| ### Overview | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ slug: /mode | |
|
|
||
| ### Tier | ||
|
|
||
| SILVER 🥈 | ||
| EXPERIMENTAL 🧪 | ||
|
|
||
| ### Overview | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ slug: /moonbase-alpha | |
|
|
||
| ### Tier | ||
|
|
||
| BRONZE 🥉 | ||
| EXPERIMENTAL 🧪 | ||
|
|
||
| ### Overview | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@Jordy-Baby this is the only real change :)