TokenBalance
Balance of the DAO for any kind of token. Each entity implementing this interface can be queried as TokenBalance.
interface TokenBalance {
dao: Dao!
id: ID!
lastUpdated: BigInt!
}
Fields
TokenBalance.dao
● Dao!
non-null object
The DAO that holds the Tokens
TokenBalance.id
● ID!
non-null scalar
The concatenation of DAO Smart contract address and Token Smart Contract address. Joined by '_'.
TokenBalance.lastUpdated
● BigInt!
non-null scalar
The block timestamp of the last update (transfer) for this token balance.
Member Of
Dao
object
Implemented By
ERC1155Balance
object ● ERC20Balance
object ● ERC721Balance
object ● NativeBalance
object