From ae694c846cf74e0fc7043dec7a174a7f7805b1f0 Mon Sep 17 00:00:00 2001 From: moose-code Date: Wed, 3 Sep 2025 17:55:22 +0100 Subject: [PATCH] add showcase --- docs/HyperIndex/supported-networks/damon.md | 63 +++++++++++++++++++ .../supported-networks/lightlink.md | 63 +++++++++++++++++++ docs/HyperIndex/supported-networks/sei.md | 63 +++++++++++++++++++ .../HyperRPC/hyperrpc-supported-networks.md | 3 + .../HyperSync/hypersync-supported-networks.md | 3 + docusaurus.config.js | 5 ++ docusaurus.config.llm.js | 5 ++ src/pages/showcase.mdx | 20 ++++++ supported-networks.json | 2 +- 9 files changed, 226 insertions(+), 1 deletion(-) create mode 100644 docs/HyperIndex/supported-networks/damon.md create mode 100644 docs/HyperIndex/supported-networks/lightlink.md create mode 100644 docs/HyperIndex/supported-networks/sei.md create mode 100644 src/pages/showcase.mdx diff --git a/docs/HyperIndex/supported-networks/damon.md b/docs/HyperIndex/supported-networks/damon.md new file mode 100644 index 00000000..a9db899b --- /dev/null +++ b/docs/HyperIndex/supported-networks/damon.md @@ -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! + +--- diff --git a/docs/HyperIndex/supported-networks/lightlink.md b/docs/HyperIndex/supported-networks/lightlink.md new file mode 100644 index 00000000..994aa303 --- /dev/null +++ b/docs/HyperIndex/supported-networks/lightlink.md @@ -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! + +--- diff --git a/docs/HyperIndex/supported-networks/sei.md b/docs/HyperIndex/supported-networks/sei.md new file mode 100644 index 00000000..0399111e --- /dev/null +++ b/docs/HyperIndex/supported-networks/sei.md @@ -0,0 +1,63 @@ +--- +id: sei +title: Sei +sidebar_label: Sei +slug: /sei +--- + +# 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! + +--- diff --git a/docs/HyperSync/HyperRPC/hyperrpc-supported-networks.md b/docs/HyperSync/HyperRPC/hyperrpc-supported-networks.md index e4a5b22b..6ef0dcdd 100644 --- a/docs/HyperSync/HyperRPC/hyperrpc-supported-networks.md +++ b/docs/HyperSync/HyperRPC/hyperrpc-supported-networks.md @@ -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 | | @@ -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 | | @@ -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 | | diff --git a/docs/HyperSync/hypersync-supported-networks.md b/docs/HyperSync/hypersync-supported-networks.md index ee4d8d8f..3d4df9f0 100644 --- a/docs/HyperSync/hypersync-supported-networks.md +++ b/docs/HyperSync/hypersync-supported-networks.md @@ -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 | 🪨 | | @@ -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 | 🪨 | | @@ -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 | 🪨 | | diff --git a/docusaurus.config.js b/docusaurus.config.js index 19808b5d..b0bd49fc 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -323,6 +323,11 @@ const config = { label: "HyperSync Docs", position: "left", }, + { + to: "showcase", + label: "Showcase", + position: "left", + }, { to: "blog", label: "Blog", diff --git a/docusaurus.config.llm.js b/docusaurus.config.llm.js index 7947adb2..d33ec34d 100644 --- a/docusaurus.config.llm.js +++ b/docusaurus.config.llm.js @@ -69,6 +69,11 @@ const config = { label: "HyperSync Docs", position: "left", }, + { + to: "showcase", + label: "Showcase", + position: "left", + }, { href: "https://github.com/enviodev", label: "GitHub", diff --git a/src/pages/showcase.mdx b/src/pages/showcase.mdx new file mode 100644 index 00000000..f35bb8aa --- /dev/null +++ b/src/pages/showcase.mdx @@ -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). diff --git a/supported-networks.json b/supported-networks.json index 2922923d..3fc37ebc 100644 --- a/supported-networks.json +++ b/supported-networks.json @@ -2,4 +2,4 @@ "supported-networks/any-evm-with-rpc", "supported-networks/local-anvil", "supported-networks/local-hardhat", - "supported-networks/0g-newton-testnet","supported-networks/abstract","supported-networks/aleph-zero-evm","supported-networks/altlayer-op-demo-testnet","supported-networks/ancient8","supported-networks/arbitrum","supported-networks/arbitrum-blueberry","supported-networks/arbitrum-nova","supported-networks/arbitrum-sepolia","supported-networks/artela-testnet","supported-networks/arthera-mainnet","supported-networks/asset-chain-mainnet","supported-networks/astar-zkevm","supported-networks/astar-zkyoto","supported-networks/aurora","supported-networks/aurora-turbo","supported-networks/avalanche","supported-networks/b2-hub-testnet","supported-networks/b3","supported-networks/b3-sepolia-testnet","supported-networks/base","supported-networks/base-sepolia","supported-networks/beam","supported-networks/berachain","supported-networks/berachain-artio-testnet","supported-networks/berachain-bartio","supported-networks/bevm-mainnet","supported-networks/bevm-testnet","supported-networks/bitfinity-mainnet","supported-networks/bitfinity-testnet","supported-networks/bitgert-mainnet","supported-networks/bitlayer","supported-networks/blast","supported-networks/blast-sepolia","supported-networks/bob-mainnet","supported-networks/boba","supported-networks/boba-bnb-mainnet","supported-networks/botanix-testnet","supported-networks/bsc","supported-networks/bsc-testnet","supported-networks/canto","supported-networks/canto-testnet","supported-networks/celo","supported-networks/celo-alfajores-testnet","supported-networks/chainweb-testnet-20","supported-networks/chainweb-testnet-21","supported-networks/chiliz","supported-networks/chiliz-testnet-spicy","supported-networks/citrea-devnet","supported-networks/citrea-testnet","supported-networks/core","supported-networks/creator-testnet","supported-networks/cronos-zkevm","supported-networks/cronos-zkevm-testnet","supported-networks/crossfi-mainnet","supported-networks/crossfi-mainnet","supported-networks/crossfi-testnet","supported-networks/curtis","supported-networks/cyber","supported-networks/degen-chain","supported-networks/dfk-chain","supported-networks/dogechain-mainnet","supported-networks/dogechain-testnet","supported-networks/dos-chain","supported-networks/energy-web","supported-networks/eos","supported-networks/eth","supported-networks/etherlink-testnet","supported-networks/exosama","supported-networks/fantom","supported-networks/fantom-testnet","supported-networks/flare","supported-networks/flare-songbird","supported-networks/flow","supported-networks/flow-testnet","supported-networks/fraxtal","supported-networks/fuel-mainnet","supported-networks/fuel-testnet","supported-networks/fuji","supported-networks/galadriel-devnet","supported-networks/gnosis","supported-networks/gnosis-chiado","supported-networks/gravity-alpha-mainnet","supported-networks/harmony-shard-0","supported-networks/heco-chain","supported-networks/holesky","supported-networks/hyperliquid","supported-networks/immutable-zkevm","supported-networks/immutable-zkevm-testnet","supported-networks/ink","supported-networks/iotex-network","supported-networks/japan-open-chain","supported-networks/kaia","supported-networks/kakarot-starknet-sepolia","supported-networks/kroma","supported-networks/layeredge-testnet","supported-networks/lightlink-pegasus-testnet","supported-networks/lightlink-phoenix","supported-networks/linea","supported-networks/lisk","supported-networks/lukso","supported-networks/lukso-testnet","supported-networks/manta","supported-networks/manta-pacific-sepolia","supported-networks/mantle","supported-networks/megaeth-testnet","supported-networks/merlin","supported-networks/metall2","supported-networks/meter-mainnet","supported-networks/meter-testnet","supported-networks/mev-commit","supported-networks/mint-mainnet","supported-networks/mode","supported-networks/monad-testnet","supported-networks/moonbase-alpha","supported-networks/moonbeam","supported-networks/morph","supported-networks/nautilus","supported-networks/neo-x-testnet","supported-networks/nibiru-testnet","supported-networks/now-chaint","supported-networks/oasis-emerald","supported-networks/oasis-sapphire","supported-networks/onigiri-subnet","supported-networks/onigiri-test-subnet","supported-networks/ontology-mainnet","supported-networks/ontology-testnet","supported-networks/op-celestia-raspberry","supported-networks/opbnb","supported-networks/optimism","supported-networks/optimism-sepolia","supported-networks/optopia","supported-networks/peaq","supported-networks/plume","supported-networks/polygon","supported-networks/polygon-amoy","supported-networks/polygon-zkevm","supported-networks/polygon-zkevm-cardona-testnet","supported-networks/public-goods-network","supported-networks/pulsechain","supported-networks/puppynet-shibarium","supported-networks/ronin","supported-networks/rootstock","supported-networks/saakuru","supported-networks/satoshivm","supported-networks/scroll","supported-networks/scroll-sepolia","supported-networks/sepolia","supported-networks/shibarium","supported-networks/shimmer-evm","supported-networks/skale-europa","supported-networks/soneium","supported-networks/sonic","supported-networks/sophon","supported-networks/sophon-testnet","supported-networks/stratovm-testnet","supported-networks/superseed","supported-networks/superseed-sepolia-testnet","supported-networks/swell","supported-networks/taiko","supported-networks/tangle","supported-networks/tanssi-demo","supported-networks/taraxa","supported-networks/telos-evm-mainnet","supported-networks/telos-evm-testnet","supported-networks/torus-mainnet","supported-networks/torus-testnet","supported-networks/unichain","supported-networks/unichain-sepolia","supported-networks/unicorn-ultra-nebulas-testnet","supported-networks/velas-mainnet","supported-networks/viction","supported-networks/worldchain","supported-networks/x-layer-mainnet","supported-networks/x-layer-testnet","supported-networks/xdc","supported-networks/xdc-testnet","supported-networks/zeta","supported-networks/zeta-testnet","supported-networks/zircuit","supported-networks/zklink-nova-mainnet","supported-networks/zksync","supported-networks/zksync-sepolia-testnet","supported-networks/zora","supported-networks/zora-sepolia"]} \ No newline at end of file + "supported-networks/0g-newton-testnet","supported-networks/abstract","supported-networks/aleph-zero-evm","supported-networks/altlayer-op-demo-testnet","supported-networks/ancient8","supported-networks/arbitrum","supported-networks/arbitrum-blueberry","supported-networks/arbitrum-nova","supported-networks/arbitrum-sepolia","supported-networks/artela-testnet","supported-networks/arthera-mainnet","supported-networks/asset-chain-mainnet","supported-networks/astar-zkevm","supported-networks/astar-zkyoto","supported-networks/aurora","supported-networks/aurora-turbo","supported-networks/avalanche","supported-networks/b2-hub-testnet","supported-networks/b3","supported-networks/b3-sepolia-testnet","supported-networks/base","supported-networks/base-sepolia","supported-networks/beam","supported-networks/berachain","supported-networks/berachain-artio-testnet","supported-networks/berachain-bartio","supported-networks/bevm-mainnet","supported-networks/bevm-testnet","supported-networks/bitfinity-mainnet","supported-networks/bitfinity-testnet","supported-networks/bitgert-mainnet","supported-networks/bitlayer","supported-networks/blast","supported-networks/blast-sepolia","supported-networks/bob-mainnet","supported-networks/boba","supported-networks/boba-bnb-mainnet","supported-networks/botanix-testnet","supported-networks/bsc","supported-networks/bsc-testnet","supported-networks/canto","supported-networks/canto-testnet","supported-networks/celo","supported-networks/celo-alfajores-testnet","supported-networks/chainweb-testnet-20","supported-networks/chainweb-testnet-21","supported-networks/chiliz","supported-networks/chiliz-testnet-spicy","supported-networks/citrea-devnet","supported-networks/citrea-testnet","supported-networks/core","supported-networks/creator-testnet","supported-networks/cronos-zkevm","supported-networks/cronos-zkevm-testnet","supported-networks/crossfi-mainnet","supported-networks/crossfi-mainnet","supported-networks/crossfi-testnet","supported-networks/curtis","supported-networks/cyber","supported-networks/damon","supported-networks/degen-chain","supported-networks/dfk-chain","supported-networks/dogechain-mainnet","supported-networks/dogechain-testnet","supported-networks/dos-chain","supported-networks/energy-web","supported-networks/eos","supported-networks/eth","supported-networks/etherlink-testnet","supported-networks/exosama","supported-networks/fantom","supported-networks/fantom-testnet","supported-networks/flare","supported-networks/flare-songbird","supported-networks/flow","supported-networks/flow-testnet","supported-networks/fraxtal","supported-networks/fuel-mainnet","supported-networks/fuel-testnet","supported-networks/fuji","supported-networks/galadriel-devnet","supported-networks/gnosis","supported-networks/gnosis-chiado","supported-networks/gravity-alpha-mainnet","supported-networks/harmony-shard-0","supported-networks/heco-chain","supported-networks/holesky","supported-networks/hyperliquid","supported-networks/immutable-zkevm","supported-networks/immutable-zkevm-testnet","supported-networks/ink","supported-networks/iotex-network","supported-networks/japan-open-chain","supported-networks/kaia","supported-networks/kakarot-starknet-sepolia","supported-networks/kroma","supported-networks/layeredge-testnet","supported-networks/lightlink","supported-networks/lightlink-pegasus-testnet","supported-networks/linea","supported-networks/lisk","supported-networks/lukso","supported-networks/lukso-testnet","supported-networks/manta","supported-networks/manta-pacific-sepolia","supported-networks/mantle","supported-networks/megaeth-testnet","supported-networks/merlin","supported-networks/metall2","supported-networks/meter-mainnet","supported-networks/meter-testnet","supported-networks/mev-commit","supported-networks/mint-mainnet","supported-networks/mode","supported-networks/monad-testnet","supported-networks/moonbase-alpha","supported-networks/moonbeam","supported-networks/morph","supported-networks/nautilus","supported-networks/neo-x-testnet","supported-networks/nibiru-testnet","supported-networks/now-chaint","supported-networks/oasis-emerald","supported-networks/oasis-sapphire","supported-networks/onigiri-subnet","supported-networks/onigiri-test-subnet","supported-networks/ontology-mainnet","supported-networks/ontology-testnet","supported-networks/op-celestia-raspberry","supported-networks/opbnb","supported-networks/optimism","supported-networks/optimism-sepolia","supported-networks/optopia","supported-networks/peaq","supported-networks/plume","supported-networks/polygon","supported-networks/polygon-amoy","supported-networks/polygon-zkevm","supported-networks/polygon-zkevm-cardona-testnet","supported-networks/public-goods-network","supported-networks/pulsechain","supported-networks/puppynet-shibarium","supported-networks/ronin","supported-networks/rootstock","supported-networks/saakuru","supported-networks/satoshivm","supported-networks/scroll","supported-networks/scroll-sepolia","supported-networks/sei","supported-networks/sepolia","supported-networks/shibarium","supported-networks/shimmer-evm","supported-networks/skale-europa","supported-networks/soneium","supported-networks/sonic","supported-networks/sophon","supported-networks/sophon-testnet","supported-networks/stratovm-testnet","supported-networks/superseed","supported-networks/superseed-sepolia-testnet","supported-networks/swell","supported-networks/taiko","supported-networks/tangle","supported-networks/tanssi-demo","supported-networks/taraxa","supported-networks/telos-evm-mainnet","supported-networks/telos-evm-testnet","supported-networks/torus-mainnet","supported-networks/torus-testnet","supported-networks/unichain","supported-networks/unichain-sepolia","supported-networks/unicorn-ultra-nebulas-testnet","supported-networks/velas-mainnet","supported-networks/viction","supported-networks/worldchain","supported-networks/x-layer-mainnet","supported-networks/x-layer-testnet","supported-networks/xdc","supported-networks/xdc-testnet","supported-networks/zeta","supported-networks/zeta-testnet","supported-networks/zircuit","supported-networks/zklink-nova-mainnet","supported-networks/zksync","supported-networks/zksync-sepolia-testnet","supported-networks/zora","supported-networks/zora-sepolia"]} \ No newline at end of file