Balance Updates
/blockchain-v2/{asset}/balance-updates
Balance updates represent the change in the balance of an account. If the change is greater-or-equal to 0, it is considered a credit. Otherwise, it is considered a debit. In certain circumstances, there can be 0-valued balance updates (used to represent 0 fee transactions, for example, which were frequent in Bitcoin's early history).
The Balance Updates endpoint returns a list of accounts, which have the following fields:
block_hash
Hash of block containing the transaction affecting the balance
height
Height of the block containing the transaction affecting the balance
consensus_time
Consensus timestamp; always increases monotonically
chain_sequence_number
Global sequence number or ordering of this update relative to all other updates recorded on the ledger up until this point
account
Account receiving a balance change
account_creation_height
Block height at account creation
change
Balance change after this update
previous_balance
Balance of the account prior to the application of this update
new_balance
Balance of the account after this update
Order of this update inside the transaction that contains it
previous_n_debits
Number of times this account has been debited prior to this update
previous_n_credits
Number of times this account has been credited prior to this update
transaction_hash
Hash of the transaction containing the balance update
previous_debit_height
Block height of the last debit from this account (null if no prior debit)
previous_credit_height
Block height of the last credit from this account (null if no prior credit)
previous_chain_sequence_number
The positioning of the last transaction that took place for this account relative to all other transactions that have taken place on this chain
denomination
The denomination of the balance update. Only present for assets that support multiple denominations, and only when the denomination differs from the asset's default. See Multi-Denomination Assets.
Multi-Denomination Assets
Certain Atlas assets track activity across many independent sub-tokens rather than a single fixed denomination. For these assets, the denomination field in each balance update identifies the specific sub-token the update applies to. The sub-token is identified by its contract address.
When denomination is absent from a balance update, the update's denomination is the asset's default (its symbol, e.g. btc).
Morpho Vault Assets
Morpho Vault assets (MORPHO_VAULTS_ETH, MORPHO_VAULTS_BASE, MORPHO_VAULTS_ARB, MORPHO_VAULTS_AVAXC, MORPHO_VAULTS_OP) aggregate ERC-4626 vault token activity across all MetaMorpho vaults deployed on the respective chain. Each vault is an independent ERC-20 token with its own contract address and decimal precision.
For these assets:
The
denominationfield contains the vault's contract address as a lowercase 40-character hex string (no0xprefix).The
change,new_balance, andprevious_balancevalues are expressed in the vault's own share token units (scaled by that vault's decimals).Balances across different denominations are not directly comparable because each vault's share token represents a different underlying asset.
Example: The steakUSDC vault on Ethereum (0xBEEF01735c132Ada46AA9aA4c54623cAA92A64CB) appears as denomination beef01735c132ada46aa9aa4c54623caa92a64cb in balance updates for MORPHO_VAULTS_ETH.
Filtering by Denomination
The balance updates endpoint accepts a denominations query parameter (a comma-separated list of denomination values) to return only balance updates for specific sub-tokens:
For example, to retrieve only balance updates for the steakUSDC vault on Ethereum:
Last updated

