Skip to content

Instantly share code, notes, and snippets.

@baierjak
Created December 15, 2021 15:22
Show Gist options
  • Save baierjak/cf18da8b9958cbd585efedb59ddd4935 to your computer and use it in GitHub Desktop.
Save baierjak/cf18da8b9958cbd585efedb59ddd4935 to your computer and use it in GitHub Desktop.
import { useEthers, useEtherBalance } from '@usedapp/core';
import { formatEther } from '@ethersproject/units';
const { activateBrowserWallet, account } = useEthers();
const etherBalance = useEtherBalance(account);
<p>{parseFloat(formatEther(etherBalance)).toFixed(2)} ETH</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment