const ethers = require("ethers"); async function getBalance() { const provider = new ethers.providers .JsonRpcProvider("https://rpc.boterdrop.web.id"); const balance = await provider.getBalance("vitalik.eth"); console.log(`Balance: ${ethers.utils.formatEther(balance)} ETH`); } getBalance();