@NoFace Subscription keeps track of changes in realtime, so essentially if you subscribe to changes in balance you are subscribing to balance updates
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