-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #237 from MoralisWeb3/supported-chains-page
Supported chains page
- Loading branch information
Showing
44 changed files
with
730 additions
and
316 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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,76 @@ | ||
--- | ||
title: "Supported Chains" | ||
slug: "/supported-chains" | ||
sidebar_position: 1 | ||
hide_sidebar: true | ||
hide_table_of_contents: true | ||
--- | ||
|
||
import { EVMChainData, EVMStreamChainData, EVMAuthChainData } from '@site/src/components/SupportedChains'; | ||
import { SolanaChainData, SolanaStreamChainData, SolanaAuthChainData } from '@site/src/components/SupportedChains'; | ||
import { AptosChainData, AptosStreamsChainData, AptosAuthChainData } from '@site/src/components/SupportedChains'; | ||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
import styles from '@site/src/components/SupportedChains/tabsStyles.module.css'; | ||
|
||
# Supported Chains Overview | ||
|
||
<Tabs groupId="list" queryString> | ||
<TabItem value="evm" label="EVM" attributes={{className: styles.parentTab}}> | ||
|
||
<Tabs groupId="api"> | ||
<TabItem value="web3" label="Web3 Data API" attributes={{className: styles.childTab}} default> | ||
|
||
<EVMChainData /> | ||
</TabItem> | ||
|
||
<TabItem value="streams" label="Streams API" attributes={{className: styles.childTab}}> | ||
<EVMStreamChainData/> | ||
</TabItem> | ||
|
||
<TabItem value="auth" label="Auth API" attributes={{className: styles.childTab}}> | ||
<EVMAuthChainData/> | ||
</TabItem> | ||
</Tabs> | ||
|
||
</TabItem> | ||
|
||
<TabItem value="solana" label="Solana" attributes={{className: styles.parentTab}}> | ||
|
||
<Tabs groupId="api"> | ||
<TabItem value="web3" label="Web3 Data API" attributes={{className: styles.childTab}} default> | ||
|
||
<SolanaChainData /> | ||
</TabItem> | ||
|
||
<TabItem value="streams" label="Streams API" attributes={{className: styles.childTab}}> | ||
<SolanaStreamChainData/> | ||
</TabItem> | ||
|
||
<TabItem value="auth" label="Auth API" attributes={{className: styles.childTab}}> | ||
<SolanaAuthChainData/> | ||
</TabItem> | ||
</Tabs> | ||
|
||
</TabItem> | ||
|
||
<TabItem value="aptos" label="Aptos" attributes={{className: styles.parentTab}}> | ||
|
||
<Tabs groupId="api"> | ||
<TabItem value="web3" label="Web3 Data API" attributes={{className: styles.childTab}} default> | ||
|
||
<AptosChainData /> | ||
</TabItem> | ||
|
||
<TabItem value="streams" label="Streams API" attributes={{className: styles.childTab}}> | ||
<AptosStreamsChainData/> | ||
</TabItem> | ||
|
||
<TabItem value="auth" label="Auth API" attributes={{className: styles.childTab}}> | ||
<AptosAuthChainData/> | ||
</TabItem> | ||
</Tabs> | ||
|
||
</TabItem> | ||
</Tabs> | ||
|
This file contains 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 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,23 @@ | ||
import React from "react"; | ||
import Table from "../../Utils/index"; | ||
|
||
const AptosAuthChainData = () => { | ||
const headers = ["Name", "AptosNetwork", "Type"] as const; | ||
|
||
const data: Record<(typeof headers)[number], string>[] = [ | ||
{ | ||
Name: "Aptos Mainnet", | ||
AptosNetwork: "https://mainnet-aptos-api.moralis.io", | ||
Type: "Mainnet", | ||
}, | ||
{ | ||
Name: "Aptos Testnet", | ||
AptosNetwork: "https://testnet-aptos-api.moralis.io", | ||
Type: "Testnet", | ||
}, | ||
]; | ||
|
||
return <Table headers={headers} data={data} />; | ||
}; | ||
|
||
export default AptosAuthChainData; |
Oops, something went wrong.
4f49244
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.
Successfully deployed to the following URLs:
docs – ./
docs.moralis.io
docs-git-main-moralis-web3.vercel.app
docs-gold-iota.vercel.app
docs-moralis-web3.vercel.app