> ## Documentation Index
> Fetch the complete documentation index at: https://docs.starkfi.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Supported chains

export const chains = [{
  key: "ethereum",
  name: "Ethereum",
  chainId: 1,
  chainType: "EVM",
  logo: "https://cryptologos.cc/logos/ethereum-eth-logo.png"
}, {
  key: "polygon",
  name: "Polygon",
  chainId: 137,
  chainType: "EVM",
  logo: "https://cryptologos.cc/logos/polygon-matic-logo.png"
}, {
  key: "arbitrum",
  name: "Arbitrum",
  chainId: 42161,
  chainType: "EVM",
  logo: "https://cryptologos.cc/logos/arbitrum-arb-logo.png"
}, {
  key: "base",
  name: "Base",
  chainId: 8453,
  chainType: "EVM",
  logo: "https://strapi.mewapi.io/uploads/large_Base_Symbol_Blue_ee3f3fb0a5.png"
}, {
  key: "solana",
  name: "Solana",
  chainId: 1151111081099710,
  chainType: "SVM",
  logo: "https://starknode-assets.s3.us-east-1.amazonaws.com/network-logos-circulares/solana-logo-circular.png"
}];

export const SupportedChains = () => {
  const sorted = [...chains].sort((a, b) => a.chainId - b.chainId);
  return <table className="w-full text-sm">
      <thead>
        <tr>
          <th className="text-left">
            <strong>Logo</strong>
          </th>
          <th className="text-left">
            <strong>Key</strong>
          </th>
          <th className="text-left">
            <strong>Name</strong>
          </th>
          <th className="text-left">
            <strong>Chain ID</strong>
          </th>
          <th className="text-left">
            <strong>Chain type</strong>
          </th>
        </tr>
      </thead>
      <tbody>
        {sorted.map(chain => <tr key={chain.key}>
            <td>
              <img src={chain.logo} alt={chain.name} className="h-4 w-4 rounded-full not-prose" />
            </td>
            <td>
              <code>{chain.key}</code>
            </td>
            <td>
              <strong>{chain.name}</strong>
            </td>
            <td>
              <code>{chain.chainId}</code>
            </td>
            <td>
              <strong>{chain.chainType}</strong>
            </td>
          </tr>)}
      </tbody>
    </table>;
};

<SupportedChains />
