From bfdba0b13b4afe3dc4494cf1e22678853ef044a1 Mon Sep 17 00:00:00 2001 From: salmad3 Date: Wed, 30 Oct 2024 02:45:39 -0400 Subject: [PATCH 1/2] create subdoc for providers --- pages/providers/indexers/_meta.json | 4 + pages/providers/indexers/indexers.mdx | 7 + pages/providers/indexers/the-graph.mdx | 255 +++++++++++++++++++++++++ 3 files changed, 266 insertions(+) create mode 100644 pages/providers/indexers/_meta.json create mode 100644 pages/providers/indexers/indexers.mdx create mode 100644 pages/providers/indexers/the-graph.mdx diff --git a/pages/providers/indexers/_meta.json b/pages/providers/indexers/_meta.json new file mode 100644 index 00000000..4f645dc4 --- /dev/null +++ b/pages/providers/indexers/_meta.json @@ -0,0 +1,4 @@ +{ + "indexers": "Overview", + "the-graph": "The Graph" +} diff --git a/pages/providers/indexers/indexers.mdx b/pages/providers/indexers/indexers.mdx new file mode 100644 index 00000000..975c638c --- /dev/null +++ b/pages/providers/indexers/indexers.mdx @@ -0,0 +1,7 @@ +import { AppCardsGridCategory } from "../../../components"; + +# Indexers + +Indexers collect and organize blockchain data, making it easier to query and analyze. Key indexers for Sei include: + + diff --git a/pages/providers/indexers/the-graph.mdx b/pages/providers/indexers/the-graph.mdx new file mode 100644 index 00000000..60f7ba51 --- /dev/null +++ b/pages/providers/indexers/the-graph.mdx @@ -0,0 +1,255 @@ +import {ImageWithCaption} from '../../../components'; + +import imgApiKeys from "../../../public/assets/ecosystem/resources/the-graph/api_keys.png"; +import imgCliCommands from "../../../public/assets/ecosystem/resources/the-graph/cli_commands.png"; +import imgCliSample from "../../../public/assets/ecosystem/resources/the-graph/cli_sample.png"; +import imgCreateSubgraph from "../../../public/assets/ecosystem/resources/the-graph/create_subgraph.png"; +import imgPlayground from "../../../public/assets/ecosystem/resources/the-graph/playground.png"; +import imgPublishButton from "../../../public/assets/ecosystem/resources/the-graph/publish_button.png"; +import imgPublishScreen from "../../../public/assets/ecosystem/resources/the-graph/publish_screen.png"; +import imgQueryUrl from "../../../public/assets/ecosystem/resources/the-graph/query_url.png"; + +# The Graph + +Getting historical data on a smart contract can be frustrating when you’re building a dapp. [The Graph](https://thegraph.com/) provides an easy way to query smart contract data through APIs known as subgraphs. The Graph’s infrastructure relies on a decentralized network of indexers, enabling your dapp to become truly decentralized. + +## Quick Start + +These subgraphs only take a few minutes to set up. To get started, follow these three steps: + +1. Initialize your subgraph project +2. Deploy & Publish +3. Query from your dapp + +Pricing: **All developers receive 100K free queries per month on the decentralized network**. After these free queries, you only pay based on usage at $4 for every 100K queries. + +Here’s a step by step walk through: + +## 1. Initialize your subgraph project + +### Create a subgraph on Subgraph Studio⁠ + +Go to the [Subgraph Studio](https://thegraph.com/studio/) and connect your wallet. Once your wallet is connected, you can begin by clicking “Create a Subgraph”. When entering the subgraph name, it is recommended to use Title Case: “Subgraph Name Chain Name.” + + + + + + +You will then land on your subgraph’s page. All the CLI commands you need will be visible on the right side of the page: + + + + + + + +### Install the Graph CLI⁠ + +On your local machine run the following: +``` +npm install -g @graphprotocol/graph-cli +``` +### Initialize your Subgraph⁠ + +You can copy this directly from your subgraph page to include your specific subgraph slug: +``` +graph init --studio +``` +You’ll be prompted to provide some info on your subgraph like this: + + + + + +Simply have your contract verified on the block explorer and the CLI will automatically obtain the ABI and set up your subgraph. The default settings will generate an entity for each event. + +## 2. Deploy & Publish + +### Deploy to Subgraph Studio⁠ + +First run these commands: + +```bash +$ graph codegen +$ graph build +``` + +Then run these to authenticate and deploy your subgraph. You can copy these commands directly from your subgraph’s page in Studio to include your specific deploy key and subgraph slug: + +```bash +$ graph auth --studio +$ graph deploy --studio +``` + +You will be asked for a version label. You can enter something like v0.0.1, but you’re free to choose the format. + +### Test your subgraph⁠ + +You can test your subgraph by making a sample query in the playground section. The Details tab will show you an API endpoint. You can use that endpoint to test from your dapp. + + + + + + + +### Publish Your Subgraph to The Graph’s Decentralized Network + +Once your subgraph is ready to be put into production, you can publish it to the decentralized network. On your subgraph’s page in Subgraph Studio, click on the Publish button: + + + + + + + +Before you can query your subgraph, Indexers need to begin serving queries on it. In order to streamline this process, you can curate your own subgraph using GRT. + +When publishing, you’ll see the option to curate your subgraph. As of May 2024, it is recommended that you curate your own subgraph with at least 3,000 GRT to ensure that it is indexed and available for querying as soon as possible. + + + + + + + +> **Note:** The Graph's smart contracts are all on Arbitrum One, even though your subgraph is indexing data from Ethereum, BSC or any other [supported chain](https://thegraph.com/docs/en/developing/supported-networks/). + +## 3. Query your Subgraph + +Congratulations! You can now query your subgraph on the decentralized network! + +For any subgraph on the decentralized network, you can start querying it by passing a GraphQL query into the subgraph’s query URL which can be found at the top of its Explorer page. + +Here’s an example from the [CryptoPunks Ethereum subgraph](https://thegraph.com/explorer/subgraphs/HdVdERFUe8h61vm2fDyycHgxjsde5PbB832NHgJfZNqK) by Messari: + + + + + + +The query URL for this subgraph is: +`https://gateway-arbitrum.network.thegraph.com/api/`**[api-key]**`/subgraphs/id/HdVdERFUe8h61vm2fDyycgxjsde5PbB832NHgJfZNqK` + +Now, you simply need to  fill in your own API Key to start sending GraphQL queries to this endpoint. + +### Getting your own API Key + + + + + + +In Subgraph Studio, you’ll see the “API Keys” menu at the top of the page. Here you can create API Keys. + +## Appendix + +### Sample Query + +This query shows the most expensive CryptoPunks sold. + +```graphql +{ + trades(orderBy: priceETH, orderDirection: desc) { + priceETH + tokenId + } +} + +``` + +Passing this into the query URL returns this result: + +``` +{ + "data": { + "trades": [ + { + "priceETH": "124457.067524886018255505", + "tokenId": "9998" + }, + { + "priceETH": "8000", + "tokenId": "5822" + }, +// ... +``` + + + +### Sample code + +```jsx +const axios = require('axios'); + +const graphqlQuery = `{ + trades(orderBy: priceETH, orderDirection: desc) { + priceETH + tokenId + } +}`; +const queryUrl = 'https://gateway-arbitrum.network.thegraph.com/api/[api-key]/subgraphs/id/HdVdERFUe8h61vm2fDyycHgxjsde5PbB832NHgJfZNqK' + +const graphQLRequest = { + method: 'post', + url: queryUrl, + data: { + query: graphqlQuery, + }, +}; + +// Send the GraphQL query +axios(graphQLRequest) + .then((response) => { + // Handle the response here + const data = response.data.data + console.log(data) + + }) + .catch((error) => { + // Handle any errors + console.error(error); + }); +``` + +### Additional resources: + +- To explore all the ways you can optimize & customize your subgraph for a better performance, read more about [creating a subgraph here](https://thegraph.com/docs/en/developing/creating-a-subgraph/). +- For more information about querying data from your subgraph, read more [here](https://thegraph.com/docs/en/querying/querying-the-graph/). \ No newline at end of file From 264d647d4f80d6f7350a4ed6c39daba7b9e1cc4f Mon Sep 17 00:00:00 2001 From: salmad3 Date: Wed, 30 Oct 2024 02:51:37 -0400 Subject: [PATCH 2/2] create subdoc for providers --- pages/_meta.json | 4 + pages/build/_meta.json | 1 - .../build/dev-ecosystem-providers/_meta.json | 12 - .../indexers/_meta.json | 4 - .../indexers/indexers.mdx | 7 - .../indexers/the-graph.mdx | 255 ------------------ pages/providers/_meta.json | 21 ++ .../bridges.mdx | 6 +- .../centralized-exchanges.mdx | 6 +- .../ecosystem-map.mdx | 2 +- .../explorers.mdx | 0 .../faucets.mdx | 0 .../nfts.mdx | 4 +- .../oracles.mdx | 4 +- .../rpc-providers.mdx | 4 +- .../wallets.mdx | 4 +- 16 files changed, 40 insertions(+), 294 deletions(-) delete mode 100644 pages/build/dev-ecosystem-providers/_meta.json delete mode 100644 pages/build/dev-ecosystem-providers/indexers/_meta.json delete mode 100644 pages/build/dev-ecosystem-providers/indexers/indexers.mdx delete mode 100644 pages/build/dev-ecosystem-providers/indexers/the-graph.mdx create mode 100644 pages/providers/_meta.json rename pages/{build/dev-ecosystem-providers => providers}/bridges.mdx (69%) rename pages/{build/dev-ecosystem-providers => providers}/centralized-exchanges.mdx (60%) rename pages/{build/dev-ecosystem-providers => providers}/ecosystem-map.mdx (93%) rename pages/{build/dev-ecosystem-providers => providers}/explorers.mdx (100%) rename pages/{build/dev-ecosystem-providers => providers}/faucets.mdx (100%) rename pages/{build/dev-ecosystem-providers => providers}/nfts.mdx (58%) rename pages/{build/dev-ecosystem-providers => providers}/oracles.mdx (64%) rename pages/{build/dev-ecosystem-providers => providers}/rpc-providers.mdx (68%) rename pages/{build/dev-ecosystem-providers => providers}/wallets.mdx (97%) diff --git a/pages/_meta.json b/pages/_meta.json index f636afec..17e705ff 100644 --- a/pages/_meta.json +++ b/pages/_meta.json @@ -41,5 +41,9 @@ "reference": { "title": "Reference", "type": "page" + }, + "providers": { + "title": "Providers", + "type": "page" } } diff --git a/pages/build/_meta.json b/pages/build/_meta.json index 977a3aa1..532a80d2 100644 --- a/pages/build/_meta.json +++ b/pages/build/_meta.json @@ -40,7 +40,6 @@ "type": "separator", "title": "Ecosystem" }, - "dev-ecosystem-providers": "Providers", "resources-tools-and-resources": "Tools", "resources-resources": "Resources" } diff --git a/pages/build/dev-ecosystem-providers/_meta.json b/pages/build/dev-ecosystem-providers/_meta.json deleted file mode 100644 index 05044ac3..00000000 --- a/pages/build/dev-ecosystem-providers/_meta.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "wallets": "Wallets", - "explorers": "Block Explorers", - "rpc-providers": "RPC Providers", - "indexers": "Indexers", - "centralized-exchanges": "Centralized Exchanges", - "faucets": "Faucets", - "oracles": "Oracles", - "bridges": "Bridges", - "nfts": "NFTs", - "ecosystem-map": "Ecosystem Map" -} diff --git a/pages/build/dev-ecosystem-providers/indexers/_meta.json b/pages/build/dev-ecosystem-providers/indexers/_meta.json deleted file mode 100644 index 4f645dc4..00000000 --- a/pages/build/dev-ecosystem-providers/indexers/_meta.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "indexers": "Overview", - "the-graph": "The Graph" -} diff --git a/pages/build/dev-ecosystem-providers/indexers/indexers.mdx b/pages/build/dev-ecosystem-providers/indexers/indexers.mdx deleted file mode 100644 index 6675949c..00000000 --- a/pages/build/dev-ecosystem-providers/indexers/indexers.mdx +++ /dev/null @@ -1,7 +0,0 @@ -import { AppCardsGridCategory } from "../../../../components"; - -# Indexers - -Indexers collect and organize blockchain data, making it easier to query and analyze. Key indexers for Sei include: - - diff --git a/pages/build/dev-ecosystem-providers/indexers/the-graph.mdx b/pages/build/dev-ecosystem-providers/indexers/the-graph.mdx deleted file mode 100644 index a352d0d7..00000000 --- a/pages/build/dev-ecosystem-providers/indexers/the-graph.mdx +++ /dev/null @@ -1,255 +0,0 @@ -import {ImageWithCaption} from '../../../../components'; - -import imgApiKeys from "../../../../public/assets/ecosystem/resources/the-graph/api_keys.png"; -import imgCliCommands from "../../../../public/assets/ecosystem/resources/the-graph/cli_commands.png"; -import imgCliSample from "../../../../public/assets/ecosystem/resources/the-graph/cli_sample.png"; -import imgCreateSubgraph from "../../../../public/assets/ecosystem/resources/the-graph/create_subgraph.png"; -import imgPlayground from "../../../../public/assets/ecosystem/resources/the-graph/playground.png"; -import imgPublishButton from "../../../../public/assets/ecosystem/resources/the-graph/publish_button.png"; -import imgPublishScreen from "../../../../public/assets/ecosystem/resources/the-graph/publish_screen.png"; -import imgQueryUrl from "../../../../public/assets/ecosystem/resources/the-graph/query_url.png"; - -# The Graph - -Getting historical data on a smart contract can be frustrating when you’re building a dapp. [The Graph](https://thegraph.com/) provides an easy way to query smart contract data through APIs known as subgraphs. The Graph’s infrastructure relies on a decentralized network of indexers, enabling your dapp to become truly decentralized. - -## Quick Start - -These subgraphs only take a few minutes to set up. To get started, follow these three steps: - -1. Initialize your subgraph project -2. Deploy & Publish -3. Query from your dapp - -Pricing: **All developers receive 100K free queries per month on the decentralized network**. After these free queries, you only pay based on usage at $4 for every 100K queries. - -Here’s a step by step walk through: - -## 1. Initialize your subgraph project - -### Create a subgraph on Subgraph Studio⁠ - -Go to the [Subgraph Studio](https://thegraph.com/studio/) and connect your wallet. Once your wallet is connected, you can begin by clicking “Create a Subgraph”. When entering the subgraph name, it is recommended to use Title Case: “Subgraph Name Chain Name.” - - - - - - -You will then land on your subgraph’s page. All the CLI commands you need will be visible on the right side of the page: - - - - - - - -### Install the Graph CLI⁠ - -On your local machine run the following: -``` -npm install -g @graphprotocol/graph-cli -``` -### Initialize your Subgraph⁠ - -You can copy this directly from your subgraph page to include your specific subgraph slug: -``` -graph init --studio -``` -You’ll be prompted to provide some info on your subgraph like this: - - - - - -Simply have your contract verified on the block explorer and the CLI will automatically obtain the ABI and set up your subgraph. The default settings will generate an entity for each event. - -## 2. Deploy & Publish - -### Deploy to Subgraph Studio⁠ - -First run these commands: - -```bash -$ graph codegen -$ graph build -``` - -Then run these to authenticate and deploy your subgraph. You can copy these commands directly from your subgraph’s page in Studio to include your specific deploy key and subgraph slug: - -```bash -$ graph auth --studio -$ graph deploy --studio -``` - -You will be asked for a version label. You can enter something like v0.0.1, but you’re free to choose the format. - -### Test your subgraph⁠ - -You can test your subgraph by making a sample query in the playground section. The Details tab will show you an API endpoint. You can use that endpoint to test from your dapp. - - - - - - - -### Publish Your Subgraph to The Graph’s Decentralized Network - -Once your subgraph is ready to be put into production, you can publish it to the decentralized network. On your subgraph’s page in Subgraph Studio, click on the Publish button: - - - - - - - -Before you can query your subgraph, Indexers need to begin serving queries on it. In order to streamline this process, you can curate your own subgraph using GRT. - -When publishing, you’ll see the option to curate your subgraph. As of May 2024, it is recommended that you curate your own subgraph with at least 3,000 GRT to ensure that it is indexed and available for querying as soon as possible. - - - - - - - -> **Note:** The Graph's smart contracts are all on Arbitrum One, even though your subgraph is indexing data from Ethereum, BSC or any other [supported chain](https://thegraph.com/docs/en/developing/supported-networks/). - -## 3. Query your Subgraph - -Congratulations! You can now query your subgraph on the decentralized network! - -For any subgraph on the decentralized network, you can start querying it by passing a GraphQL query into the subgraph’s query URL which can be found at the top of its Explorer page. - -Here’s an example from the [CryptoPunks Ethereum subgraph](https://thegraph.com/explorer/subgraphs/HdVdERFUe8h61vm2fDyycHgxjsde5PbB832NHgJfZNqK) by Messari: - - - - - - -The query URL for this subgraph is: -`https://gateway-arbitrum.network.thegraph.com/api/`**[api-key]**`/subgraphs/id/HdVdERFUe8h61vm2fDyycgxjsde5PbB832NHgJfZNqK` - -Now, you simply need to  fill in your own API Key to start sending GraphQL queries to this endpoint. - -### Getting your own API Key - - - - - - -In Subgraph Studio, you’ll see the “API Keys” menu at the top of the page. Here you can create API Keys. - -## Appendix - -### Sample Query - -This query shows the most expensive CryptoPunks sold. - -```graphql -{ - trades(orderBy: priceETH, orderDirection: desc) { - priceETH - tokenId - } -} - -``` - -Passing this into the query URL returns this result: - -``` -{ - "data": { - "trades": [ - { - "priceETH": "124457.067524886018255505", - "tokenId": "9998" - }, - { - "priceETH": "8000", - "tokenId": "5822" - }, -// ... -``` - - - -### Sample code - -```jsx -const axios = require('axios'); - -const graphqlQuery = `{ - trades(orderBy: priceETH, orderDirection: desc) { - priceETH - tokenId - } -}`; -const queryUrl = 'https://gateway-arbitrum.network.thegraph.com/api/[api-key]/subgraphs/id/HdVdERFUe8h61vm2fDyycHgxjsde5PbB832NHgJfZNqK' - -const graphQLRequest = { - method: 'post', - url: queryUrl, - data: { - query: graphqlQuery, - }, -}; - -// Send the GraphQL query -axios(graphQLRequest) - .then((response) => { - // Handle the response here - const data = response.data.data - console.log(data) - - }) - .catch((error) => { - // Handle any errors - console.error(error); - }); -``` - -### Additional resources: - -- To explore all the ways you can optimize & customize your subgraph for a better performance, read more about [creating a subgraph here](https://thegraph.com/docs/en/developing/creating-a-subgraph/). -- For more information about querying data from your subgraph, read more [here](https://thegraph.com/docs/en/querying/querying-the-graph/). \ No newline at end of file diff --git a/pages/providers/_meta.json b/pages/providers/_meta.json new file mode 100644 index 00000000..92b0b725 --- /dev/null +++ b/pages/providers/_meta.json @@ -0,0 +1,21 @@ +{ + "ecosystem-map": "Ecosystem Map", + "-- Accessing Sei": { + "type": "separator", + "title": "User Access & Assets" + }, + "wallets": "Wallets", + "faucets": "Faucets", + "centralized-exchanges": "Centralized Exchanges", + "bridges": "Bridges", + "nfts": "NFTs", + + "-- Network Tools & Services": { + "type": "separator", + "title": "Network Tools & Services" + }, + "rpc-providers": "RPC Providers", + "explorers": "Explorers", + "indexers": "Indexers", + "oracles": "Oracles" +} diff --git a/pages/build/dev-ecosystem-providers/bridges.mdx b/pages/providers/bridges.mdx similarity index 69% rename from pages/build/dev-ecosystem-providers/bridges.mdx rename to pages/providers/bridges.mdx index 2d38ef6e..2c20bf7f 100644 --- a/pages/build/dev-ecosystem-providers/bridges.mdx +++ b/pages/providers/bridges.mdx @@ -1,6 +1,6 @@ -import { AppCardsGrid } from "../../../components"; -import { AppCardsGridCategory } from "../../../components"; -import { Tag } from "../../../data/appData"; +import { AppCardsGrid } from "../../components"; +import { AppCardsGridCategory } from "../../components"; +import { Tag } from "../../data/appData"; # Bridges diff --git a/pages/build/dev-ecosystem-providers/centralized-exchanges.mdx b/pages/providers/centralized-exchanges.mdx similarity index 60% rename from pages/build/dev-ecosystem-providers/centralized-exchanges.mdx rename to pages/providers/centralized-exchanges.mdx index 88456f75..a8b5f900 100644 --- a/pages/build/dev-ecosystem-providers/centralized-exchanges.mdx +++ b/pages/providers/centralized-exchanges.mdx @@ -1,7 +1,7 @@ -import { AppCardsGrid } from "../../../components"; -import { AppCardsGridCategory } from "../../../components"; +import { AppCardsGrid } from "../../components"; +import { AppCardsGridCategory } from "../../components"; -import { Tag } from "../../../data/appData"; +import { Tag } from "../../data/appData"; # Centralized Exchanges diff --git a/pages/build/dev-ecosystem-providers/ecosystem-map.mdx b/pages/providers/ecosystem-map.mdx similarity index 93% rename from pages/build/dev-ecosystem-providers/ecosystem-map.mdx rename to pages/providers/ecosystem-map.mdx index 413da4cb..5e1ba2bc 100644 --- a/pages/build/dev-ecosystem-providers/ecosystem-map.mdx +++ b/pages/providers/ecosystem-map.mdx @@ -1,4 +1,4 @@ -import { EcosystemMap, EcosystemDynamicSection } from "../../../components"; +import { EcosystemMap, EcosystemDynamicSection } from "../../components"; import { Cards, Card } from 'nextra/components' import { Wrench, TextCursorInput } from "lucide-react"; diff --git a/pages/build/dev-ecosystem-providers/explorers.mdx b/pages/providers/explorers.mdx similarity index 100% rename from pages/build/dev-ecosystem-providers/explorers.mdx rename to pages/providers/explorers.mdx diff --git a/pages/build/dev-ecosystem-providers/faucets.mdx b/pages/providers/faucets.mdx similarity index 100% rename from pages/build/dev-ecosystem-providers/faucets.mdx rename to pages/providers/faucets.mdx diff --git a/pages/build/dev-ecosystem-providers/nfts.mdx b/pages/providers/nfts.mdx similarity index 58% rename from pages/build/dev-ecosystem-providers/nfts.mdx rename to pages/providers/nfts.mdx index 2dd3041c..54f5f6fa 100644 --- a/pages/build/dev-ecosystem-providers/nfts.mdx +++ b/pages/providers/nfts.mdx @@ -1,5 +1,5 @@ -import { AppCardsGridCategory } from "../../../components"; -import { Tag } from "../../../data/appData"; +import { AppCardsGridCategory } from "../../components"; +import { Tag } from "../../data/appData"; # NFT’s diff --git a/pages/build/dev-ecosystem-providers/oracles.mdx b/pages/providers/oracles.mdx similarity index 64% rename from pages/build/dev-ecosystem-providers/oracles.mdx rename to pages/providers/oracles.mdx index 6229aa48..a9245c41 100644 --- a/pages/build/dev-ecosystem-providers/oracles.mdx +++ b/pages/providers/oracles.mdx @@ -1,5 +1,5 @@ -import { AppCardsGridCategory } from "../../../components"; -import { Tag } from "../../../data/appData"; +import { AppCardsGridCategory } from "../../components"; +import { Tag } from "../../data/appData"; # Oracles diff --git a/pages/build/dev-ecosystem-providers/rpc-providers.mdx b/pages/providers/rpc-providers.mdx similarity index 68% rename from pages/build/dev-ecosystem-providers/rpc-providers.mdx rename to pages/providers/rpc-providers.mdx index 88dd73a4..0cd1ebb8 100644 --- a/pages/build/dev-ecosystem-providers/rpc-providers.mdx +++ b/pages/providers/rpc-providers.mdx @@ -1,5 +1,5 @@ -import { AppCardsGridCategory } from "../../../components"; -import { Tag } from "../../../data/appData"; +import { AppCardsGridCategory } from "../../components"; +import { Tag } from "../../data/appData"; # RPC Providers diff --git a/pages/build/dev-ecosystem-providers/wallets.mdx b/pages/providers/wallets.mdx similarity index 97% rename from pages/build/dev-ecosystem-providers/wallets.mdx rename to pages/providers/wallets.mdx index 2c78254f..cd8afb53 100644 --- a/pages/build/dev-ecosystem-providers/wallets.mdx +++ b/pages/providers/wallets.mdx @@ -1,5 +1,5 @@ -import { EcosystemDynamicSection } from "../../../components"; -import { AppCardsGridCategory } from "../../../components"; +import { EcosystemDynamicSection } from "../../components"; +import { AppCardsGridCategory } from "../../components"; Wallets are essential for managing assets and interacting with the Sei blockchain. There are various types of wallets available, each offering different features and levels of security.