Insight expands chain support

Insight expands chain support

We're excited to announce that thirdweb Insight has expanded its blockchain data querying capabilities yet again with support for seven new chains:

What This Means For Developers
With these additions, you can now use all of Insight's powerful features across these new chains:

  • Query on-chain events with the Events Blueprint
  • Track transactions with the Transactions Blueprint
  • Monitor token balances (ERC-20, ERC-721, ERC-1155) with the Tokens Blueprint

For example, to query latest events on Vanar

const getLatestVanarEvents = async () => {
 try {
   const response = await fetch('https://2040.insight.thirdweb.com/v1/<client-id>/events?sort_by=block_number&sort_order=desc');
   const latestEvents = await response.json();
   return latestEvents;
 } catch (error) {
   console.error('Error:', error);
 }
};

Replace <client-id> with your thirdweb client ID

View All Supported Chains
For a complete list of supported chains and their respective chain IDs, check the thirdweb chainlist.