Skip to main content

Balance

The Balance object represents an account's balance of a specific asset.

Schema Definition

type Balance {
type: AssetType!
contract: Contract!
account: String!
value: UInt256
token: Token
}

Fields

FieldTypeDescription
typeAssetType! non-null enumThe type of asset.
contractContract! non-null objectAn object representing the properties of the contract that issued the asset.
accountString! non-null scalarThe blockchain address that owns this balance.
valueUInt256 scalarThe quantity of the asset held by the account.
tokenToken objectAn object representing the properties of the asset.

Returned By

balance query

Member Of

BalanceList object