Skip to content

Conversation

DalaviMoreshwar
Copy link

Available Balance on the Wallet

Wrote a code for fetching available balance from the MetaMask wallet.
The available balance will get fetched when user get's connect to the wallet, and when user sends any ETH transactions then balance will automatically get update the UI.

Following code returns the balance available on current account.

 const balance = await ethereum
      .request({ method: "eth_getBalance", params: [address, "latest"] })
      .then((bal) => ethers.utils.formatEther(bal));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant