Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Showing wallet balance on the card (UI). #63

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

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
1 participant