Skip to content
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

feat: sub-docs for providers #163

Merged
merged 2 commits into from
Oct 30, 2024
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
4 changes: 4 additions & 0 deletions pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,9 @@
"reference": {
"title": "Reference",
"type": "page"
},
"providers": {
"title": "Providers",
"type": "page"
}
}
1 change: 0 additions & 1 deletion pages/build/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
"type": "separator",
"title": "Ecosystem"
},
"dev-ecosystem-providers": "Providers",
"resources-tools-and-resources": "Tools",
"resources-resources": "Resources"
}
12 changes: 0 additions & 12 deletions pages/build/dev-ecosystem-providers/_meta.json

This file was deleted.

21 changes: 21 additions & 0 deletions pages/providers/_meta.json
Original file line number Diff line number Diff line change
@@ -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"
}
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AppCardsGridCategory } from "../../../../components";
import { AppCardsGridCategory } from "../../../components";

# Indexers

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
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";
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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AppCardsGridCategory } from "../../../components";
import { Tag } from "../../../data/appData";
import { AppCardsGridCategory } from "../../components";
import { Tag } from "../../data/appData";

# NFT’s

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AppCardsGridCategory } from "../../../components";
import { Tag } from "../../../data/appData";
import { AppCardsGridCategory } from "../../components";
import { Tag } from "../../data/appData";

# Oracles

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AppCardsGridCategory } from "../../../components";
import { Tag } from "../../../data/appData";
import { AppCardsGridCategory } from "../../components";
import { Tag } from "../../data/appData";

# RPC Providers

Expand Down
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
Loading