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

Protocol addresses in tabs #249

Merged
merged 2 commits into from
Feb 14, 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
3 changes: 0 additions & 3 deletions docs/reference/contracts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,3 @@ For a list of RPC endpoints, refer to the [API endpoints page](/reference/api).
:::

<ContractAddresses />

Source:
https://github.com/zeta-chain/protocol-contracts/blob/main/data/addresses.json
175 changes: 87 additions & 88 deletions src/components/ContractAddresses/ContractAddresses.tsx
Original file line number Diff line number Diff line change
@@ -1,105 +1,104 @@
import React, { useState, useEffect, ReactNode } from "react";
import React, { useState, useEffect } from "react";

interface DataObject {
[key: string]: string;
}

interface NestedObject {
[key: string]: DataObject;
}

interface FetchedData {
[key: string]: NestedObject;
}

const edgeCases: { [key: string]: string } = {
ccm: "CCM",
zevm: "zEVM",
bsc: "BSC",
};

const addressesURL =
"https://raw.githubusercontent.com/zeta-chain/protocol-contracts/main/data/addresses.json";

const DataFetch: React.FC = () => {
const [data, setData] = useState<FetchedData | null>(null);
const ContractAddresses = () => {
const [activeTab, setActiveTab] = useState("testnet");
const [isLoading, setIsLoading] = useState(true);
const [groupedData, setGroupedData] = useState({ testnet: {}, mainnet: {} });
const testnetUrl =
"https://raw.githubusercontent.com/zeta-chain/protocol-contracts/feat/addresses/data/addresses.testnet.json";
const mainnetUrl =
fadeev marked this conversation as resolved.
Show resolved Hide resolved
"https://raw.githubusercontent.com/zeta-chain/protocol-contracts/feat/addresses/data/addresses.mainnet.json";

useEffect(() => {
fetch(addressesURL)
.then((response) => response.json())
.then((jsonData) => setData(jsonData as FetchedData))
.catch((error) => console.error("Error:", error));
}, []);
const fetchAndGroupAddresses = async () => {
setIsLoading(true);
const responses = await Promise.all([
fetch(testnetUrl),
fetch(mainnetUrl),
]);
const [testnetData, mainnetData] = await Promise.all(
responses.map((res) => res.json())
);

if (!data) {
return <div>Loading...</div>;
}
const groupByChainId = (data) =>
data.reduce((acc, item) => {
(acc[item.chain_name] = acc[item.chain_name] || []).push(item);
return acc;
}, {});

const formatTitle = (title: string) => {
const handleEdgeCases = (word: string) => {
const upper = word.charAt(0).toUpperCase() + word.slice(1);
const edgeCase = edgeCases[word.toLowerCase()];
return edgeCase ? edgeCase : upper;
};
return title.replace(/_/g, " ").split(" ").map(handleEdgeCases).join(" ");
};
const sortGroupedData = (groupedData) => {
Object.keys(groupedData).forEach((chainName) => {
groupedData[chainName].sort((a, b) => a.type.localeCompare(b.type));
});
return groupedData;
};

const renderTable = (
blockchainData: NestedObject[],
title: string
): ReactNode => {
const allEntries = blockchainData.reduce((acc, tableData) => {
const validEntries = Object.entries(tableData).filter(
([key, value]) => value && value.trim() !== ""
);
return [...acc, ...validEntries];
}, [] as [string, string][]);
setGroupedData({
testnet: sortGroupedData(groupByChainId(testnetData)),
mainnet: sortGroupedData(groupByChainId(mainnetData)),
});
setIsLoading(false);
};

if (allEntries.length === 0) {
return null;
}
fetchAndGroupAddresses();
}, []);

return (
<div key={title}>
<h2>{formatTitle(title)}</h2>
<table>
<thead>
<tr>
<th>Label</th>
<th>Contract address</th>
</tr>
</thead>
<tbody>
{allEntries.map(([key, value], index) => (
<tr key={index}>
<td>{key}</td>
<td>{value}</td>
</tr>
))}
</tbody>
</table>
</div>
);
};
const source = activeTab === "testnet" ? testnetUrl : mainnetUrl;

// Generate a mapping of blockchain to all its categories' data
const blockchainMapping: { [key: string]: NestedObject[] } = {};
Object.values(data).forEach((nestedObject) => {
Object.entries(nestedObject).forEach(([blockchain, blockchainData]) => {
if (!blockchainMapping[blockchain]) {
blockchainMapping[blockchain] = [];
}
blockchainMapping[blockchain].push(blockchainData);
});
});
const activeStyle = { fontWeight: "bold", textDecoration: "underline" };
const inactiveStyle = { fontWeight: "normal", textDecoration: "none" };

return (
<div>
{Object.entries(blockchainMapping).map(([blockchain, blockchainData]) =>
renderTable(blockchainData, blockchain)
<div style={{ marginBottom: "1rem", display: "flex", gap: "1rem" }}>
<button
style={activeTab === "testnet" ? activeStyle : inactiveStyle}
onClick={() => setActiveTab("testnet")}
>
Testnet
</button>
<button
style={activeTab === "mainnet" ? activeStyle : inactiveStyle}
onClick={() => setActiveTab("mainnet")}
>
Mainnet Beta
</button>
</div>
{isLoading ? (
<p>Loading...</p>
) : (
Object.entries(groupedData[activeTab]).map(([chainName, contracts]) => (
<div key={chainName}>
<h3>{chainName}</h3>
<table>
<thead>
<tr>
<th>Type</th>
<th>Symbol</th>
<th>Address</th>
</tr>
</thead>
<tbody>
{contracts.map((contract, index) => (
<tr key={index}>
<td>{contract.type}</td>
<td>{contract.symbol}</td>
<td>{contract.address}</td>
</tr>
))}
</tbody>
</table>
</div>
))
)}
<p>
Source:&nbsp;
<a href={source} target="_blank" rel="noopener noreferrer">
{source}
</a>
</p>
</div>
);
};

export default DataFetch;
export default ContractAddresses;
Loading