Convert token amount to USD using Chainlink price feed
Viem public client
Network identifier
Amount in token's smallest unit
Token symbol (ETH, LINK, etc.)
Token decimals
Amount in USD
// Convert 1 ETH to USDconst usd = await tokenToUsd(client, 'eip155:8453', parseEther('1'), 'ETH', 18);console.log(`1 ETH = $${usd}`); Copy
// Convert 1 ETH to USDconst usd = await tokenToUsd(client, 'eip155:8453', parseEther('1'), 'ETH', 18);console.log(`1 ETH = $${usd}`);
Convert token amount to USD using Chainlink price feed