Skip to content

Commit

Permalink
updated networks (#56)
Browse files Browse the repository at this point in the history
* updated networks

* updates
  • Loading branch information
moskalyk authored Apr 12, 2024
1 parent d633e9a commit 1db23b7
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 579 deletions.
2 changes: 1 addition & 1 deletion docs/components/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const TableCell = ({ content, imgSrc }: any) => {
return (
<td>
<div className="cell-content">
{imgSrc && <img src={imgSrc} alt="" className="cell-image" />}
{imgSrc && <img src={imgSrc} alt="" className="cell-image network-logo" />}
<span className="cell-text">{content}</span>
</div>
</td>
Expand Down
64 changes: 53 additions & 11 deletions docs/pages/solutions/technical-references/chain-support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ Sequence Relayer and all Sequence SDKs, however if you have a chain not in this
chainHandle: 'polygon-zkevm',
indexerEndpoint: 'https://polygon-zkevm-indexer.sequence.app'
},
{
networkImage: '/img/networks/3776.png',
network: 'Astar zkEVM',
chainHandle: 'astar-zkevm',
indexerEndpoint: 'https://astar-zkevm-indexer.sequence.app'
},
{
networkImage: '/img/networks/8453.png',
network: 'Base',
Expand All @@ -57,6 +63,12 @@ Sequence Relayer and all Sequence SDKs, however if you have a chain not in this
chainHandle: 'optimism',
indexerEndpoint: 'https://optimism-indexer.sequence.app'
},
{
networkImage: '/img/networks/660279.png',
network: 'XAI',
chainHandle: 'xai',
indexerEndpoint: 'https://xai-indexer.sequence.app'
},
{
networkImage: '/img/networks/43114.png',
network: 'Avalanche',
Expand All @@ -80,7 +92,7 @@ Sequence Relayer and all Sequence SDKs, however if you have a chain not in this
network: 'Gnosis',
chainHandle: 'gnosis',
indexerEndpoint: 'https://gnosis-indexer.sequence.app'
},
}

]} />

Expand All @@ -89,35 +101,65 @@ Sequence Relayer and all Sequence SDKs, however if you have a chain not in this
<Table
columns={["Network", "Chain Handle", "Indexer Endpoint"]}
rows={[
{
networkImage: "/img/networks/1.png",
network: "Ethereum Sepolia",
chainHandle: "sepolia",
indexerEndpoint: "https://sepolia-indexer.sequence.app",
},
{
networkImage: "/img/networks/42161.png",
network: "Arbitrum Sepolia",
chainHandle: "arbitrum-sepolia",
indexerEndpoint: "https://arbitrum-sepolia-indexer.sequence.app",
},
{
networkImage: "/img/networks/137.png",
network: "Polygon Amoy",
chainHandle: "amoy",
indexerEndpoint: "https://amoy-indexer.sequence.app",
},
{
networkImage: '/img/networks/3776.png',
network: 'Astar zkEVM',
chainHandle: 'astar-zkyoto',
indexerEndpoint: 'https://astar-zkyoto-indexer.sequence.app'
},
{
networkImage: "/img/networks/8453.png",
network: "Base Sepolia",
chainHandle: "base-sepolia",
indexerEndpoint: "https://base-sepolia-indexer.sequence.app",
},
{
networkImage: "/img/networks/10.png",
network: "Optimism Sepolia",
chainHandle: "optimism-sepolia",
indexerEndpoint: "https://optimism-indexer.sequence.app",
networkImage: "/img/networks/43114.png",
network: "Avalanche Testnet",
chainHandle: "avalanche-testnet",
indexerEndpoint: "https://avalanche-testnet-indexer.sequence.app",
},
{
networkImage: '/img/networks/19011.png',
network: 'Homeverse Testnet',
chainHandle: 'homeverse-testnet',
indexerEndpoint: 'https://homeverse-testnet-indexer.sequence.app'
},
{
networkImage: "/img/networks/56.png",
network: "BSC Testnet",
chainHandle: "bsc-testnet",
indexerEndpoint: "https://bsc-testnet-indexer.sequence.app",
},
{
networkImage: "/img/networks/11155111.png",
network: "Ethereum Sepolia",
chainHandle: "sepolia",
indexerEndpoint: "https://sepolia-indexer.sequence.app",
},
{
networkImage: "/img/networks/10.png",
network: "Optimism Sepolia",
chainHandle: "optimism-sepolia",
indexerEndpoint: "https://optimism-sepolia-indexer.sequence.app",
},
{
networkImage: '/img/networks/660279.png',
network: 'XAI Sepolia',
chainHandle: 'xai-sepolia',
indexerEndpoint: 'https://xai-sepolia-indexer.sequence.app'
}
]}
/>
3 changes: 3 additions & 0 deletions docs/public/img/networks/11155111.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions docs/public/img/networks/3776.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions docs/public/img/networks/660279.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions docs/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -344,3 +344,7 @@ td {
border: none;
display: none;
}

.network-logo {
border-radius: 15px;
}
Loading

0 comments on commit 1db23b7

Please sign in to comment.