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

# USDC Addresses

Below is a list of USDC contract addresses across different networks.

{(() => {
const usdcData = [
  { 
    chain: "Ethereum", 
    address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" 
  },
  { 
    chain: "Avalanche", 
    address: "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e" 
  },
  { 
    chain: "Arbitrum", 
    address: "0xaf88d065e77c8cc2239327c5edb3a432268e5831" 
  },
  { 
    chain: "Base", 
    address: "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913" 
  },
  { 
    chain: "Optimism", 
    address: "0x0b2c639c533813f4aa9d7837caf62653d097ff85" 
  },
  { 
    chain: "Polygon", 
    address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359" 
  }
];

return (
  <div className="w-full max-w-6xl mx-auto">
    <div className="overflow-x-auto rounded-lg border border-gray-200 dark:border-gray-700">
      <div className="flex w-full bg-gray-50 dark:bg-gray-900 min-w-[400px]">
        <div className="flex-1 py-4 px-3 sm:px-6 font-semibold text-gray-800 dark:text-white text-sm sm:text-base text-left">
          Chain
        </div>
        <div className="flex-1 py-4 px-3 sm:px-6 font-semibold text-gray-800 dark:text-white text-sm sm:text-base text-left">
          USDC Address
        </div>
      </div>
      
      {usdcData.map((item, index) => (
        <div
          key={index}
          className="flex w-full border-b border-gray-100 dark:border-gray-800 transition-colors duration-200 min-w-[400px]"
        >
          <div className="flex-1 py-3 sm:py-4 px-3 sm:px-6 font-medium text-gray-700 dark:text-gray-300 text-sm sm:text-base text-left break-words leading-relaxed">
            <div className="break-words hyphens-auto">
              {item.chain}
            </div>
          </div>
          <div className="flex-1 py-3 sm:py-4 px-3 sm:px-6 font-mono text-gray-600 dark:text-gray-400 text-sm sm:text-base text-left leading-relaxed">
            <div className="break-words hyphens-auto">
              <code className="bg-gray-100 dark:bg-gray-800 px-2 py-1 rounded text-xs sm:text-sm break-all whitespace-normal" style={{ wordBreak: 'break-all', overflowWrap: 'break-word' }}>
                {item.address}
              </code>
            </div>
          </div>
        </div>
      ))}
    </div>
  </div>
);
})()}
