Skip to main content

Get the Current Balance of the Connected Account

This recipe shows how to fetch and display the ETH balance of the currently connected account.

Here is the full code, which we will be implementing in the guide below:
src/lib/components/ConnectedAddressBalance.svelte
<script lang="ts">
import { createAccount } from "@byteatatime/wagmi-svelte";
import { Address, Balance } from "$lib/components/scaffold-eth";

const { address: connectedAddress } = $derived.by(createAccount());
</script>

<div class="bg-base-300 p-6 rounded-lg max-w-md mx-auto mt-6">
<h2 class="text-2xl font-bold mb-4">Your Ethereum Balance</h2>

<div class="text-sm font-semibold mb-2">
Address: <Address address={connectedAddress} />
</div>

<div class="text-sm font-semibold mb-2">
Balance: <Balance address={connectedAddress} />
</div>
</div>

Implementation guideโ€‹

Step 1: Create a new Componentโ€‹

Begin by creating a new component in src/lib/componentscomponents, which is where all the components are stored:

src/lib/components/ConnectedAddressBalance.svelte
<div>
<h2>Your Ethereum Balance</h2>
</div>

Step 2: Retrieve the Connected Accountโ€‹

Use the createAccount rune to fetch the Ethereum address of the currently connected account. This rune will return an object with the address property:

src/lib/components/ConnectedAddressBalance.svelte
<script lang="ts">
import { createAccount } from "@byteatatime/wagmi-svelte";

const { address: connectedAddress } = $derived.by(createAccount());
</script>

<div>
<h2>Your Ethereum Balance</h2>
</div>

Step 3: Display the Dataโ€‹

Scaffold-ETH-Svelte provides two great components to display data:

  • Address to display an address (and ENS, if they have one) along with a utility icon to copy the address.
  • Balance to display the ETH balance of an account.

You can import these components from $lib/components/scaffold-eth, which is where all the built-in components are stored:

src/lib/components/ConnectedAddressBalance.svelte
<script lang="ts">
import { createAccount } from "@byteatatime/wagmi-svelte";
import { Address, Balance } from "$lib/components/scaffold-eth";

const { address: connectedAddress } = $derived.by(createAccount());
</script>

<div>
<h2>Your Ethereum Balance</h2>

Address: <Address address={connectedAddress} />
Balance: <Balance address={connectedAddress} />
</div>

Step 4: Apply Stylesโ€‹

This isn't Scaffold-ETH-Svelte specific, but you can add some styles to make your component look nice:

src/lib/components/ConnectedAddressBalance.svelte
<script lang="ts">
import { createAccount } from "@byteatatime/wagmi-svelte";
import { Address, Balance } from "$lib/components/scaffold-eth";

const { address: connectedAddress } = $derived.by(createAccount());
</script>

<div class="bg-base-300 p-6 rounded-lg max-w-md mx-auto mt-6">
<h2 class="text-2xl font-bold mb-4">Your Ethereum Balance</h2>

<div class="text-sm font-semibold mb-2">
Address: <Address address={connectedAddress} />
</div>

<div class="text-sm font-semibold mb-2">
Balance: <Balance address={connectedAddress} />
</div>
</div>

And tada! You now have a component that displays the Ethereum balance of the connected account. See how painless that was? ๐Ÿš€