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
| Field | Type | Description |
|---|---|---|
type | AssetType! non-null enum | The type of asset. |
contract | Contract! non-null object | An object representing the properties of the contract that issued the asset. |
account | String! non-null scalar | The blockchain address that owns this balance. |
value | UInt256 scalar | The quantity of the asset held by the account. |
token | Token object | An object representing the properties of the asset. |
Returned By
balance query
Member Of
BalanceList object