dear support
Iām trying to get the current price of ETH to perform calculations.
I know I can get the current price of Matic like this:
const options = {
address: "0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0",
chain: "eth"
};
const price = await Moralis.Web3API.token.getTokenPrice(options);
How can I do the same for the ETH coin? What is the address to query?
Thanks!