import Align from "@tolbel/align";const align = new Align({ apiKey: process.env.ALIGN_API_KEY!, environment: "sandbox",});// Use Alchemy for Ethereumalign.blockchain.providers.setCustomRpc( "ethereum", "https://eth-mainnet.g.alchemy.com/v2/YOUR-API-KEY");// Use Infura for Polygonalign.blockchain.providers.setCustomRpc( "polygon", "https://polygon-mainnet.infura.io/v3/YOUR-PROJECT-ID");// Now getProvider uses the custom URLsconst provider = align.blockchain.providers.getProvider("ethereum");