# Streaming v2 Balance of Address

**URL:** https://community.bitquery.io/t/streaming-v2-balance-of-address/1693
**Category:** GraphQL API
**Tags:** support, open
**Created:** [September 27, 2023, 5:41pm UTC](https://community.bitquery.io/t/streaming-v2-balance-of-address/1693 "2023-09-27T17:41:54Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![NoFace](https://avatars.discourse-cdn.com/v4/letter/n/41988e/32.png) [@NoFace](https://community.bitquery.io/u/NoFace)
#### Post date: [September 27, 2023, 5:41pm UTC](https://community.bitquery.io/t/streaming-v2-balance-of-address/1693/1 "2023-09-27T17:41:54Z")

</div>

I’m unable to get the balance of an address in streaming mode, it only gives me the changes to the balance, not the total, the same in query mode gives me the total…

```auto
 {
                              EVM(dataset: combined, network: eth) {
                                  BalanceUpdates(
                                  where: {BalanceUpdate: {Address: {is: "${pairAddress}"}}}
                                  orderBy: {descendingByField: "balance"}
                                  ) {
                                  Currency {
                                      Name
                                  }
                                  balance: sum(of: BalanceUpdate_Amount)
                                  BalanceUpdate {
                                      Address
                                  }
                                  }
                              }
                          }

```

---

<div class="post-metadata">

### Author: ![Divya](https://avatars.discourse-cdn.com/v4/letter/d/13edae/32.png) [@Divya](https://community.bitquery.io/u/Divya)
#### Post date: [September 28, 2023, 1:15pm UTC](https://community.bitquery.io/t/streaming-v2-balance-of-address/1693/2 "2023-09-28T13:15:39Z")

</div>

@NoFace Subscription keeps track of changes in realtime, so essentially if you subscribe to changes in balance you are subscribing to balance updates

```auto
subscription {
  EVM(network: eth) {
    BalanceUpdates(
      where: {BalanceUpdate: {Address: {is: "0xd3d2e2692501a5c9ca623199d38826e513033a17"}}}
      orderBy: {descendingByField: "balance"}
    ) {
      Currency {
        Name
      }
      BalanceUpdate {
        Address
        Amount
      }
    }
  }
}

```

If you want latest balance, a regular EVM query will do

> **[balance of a wallet](https://ide.bitquery.io/balance-of-a-wallet_1)**
>
> Bitquery is analytical engine for blockchains
