🚀 We’re excited to announce our $35m Series A led by Tiger Global: Press Release, Coindesk, Bloomberg, Business Insider & RefreshMiami!

Contents

eth_getBalance RPC method

Parameters:

  1. Address - The address to check for balance.
  2. Quantity or Tag - (optional) Integer block number, or the string 'latest', 'earliest' or 'pending', see the default block parameter.

Returns:

  1. Result - Integer value of current balance in wei encoded as a hexadecimal.

Code Examples:

const ethers = require("ethers");
(async () => {
const provider = new ethers.providers.JsonRpcProvider("http://sample-endpoint-name.network.quiknode.pro/token-goes-here/");
const balance = await provider.getBalance(
"0x8D97689C9818892B700e27F316cc3E41e17fBeb9",
"latest"
);
console.log(balance);
})();
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Ready to try QuickNode? Start your 7-day free trial