ERC721Balance
The NFT balances of the DAO. Including all Token IDs held by the DAO per ERC721 Token Smart Contract.
type ERC721Balance implements TokenBalance {
dao: Dao!
id: ID!
lastUpdated: BigInt!
token: ERC721Contract!
tokenIds: [BigInt!]!
}
Fields
ERC721Balance.dao
● Dao!
non-null object
The DAO that holds tokens from a ERC721 Token Smart Contract.
ERC721Balance.id
● ID!
non-null scalar
The concatenation of DAO Smart Contract address and ERC721 Token Smart Contract address. Joined by '_'.
ERC721Balance.lastUpdated
● BigInt!
non-null scalar
The block timestamp of the last update (transfer) for this token balance.
ERC721Balance.token
● ERC721Contract!
non-null object
The ERC721 Token Smart Contract instance.
ERC721Balance.tokenIds
● [BigInt!]!
non-null scalar
The NFTs from one ERC721 Contract held by the DAO.
Interfaces
TokenBalance
interface
Balance of the DAO for any kind of token. Each entity implementing this interface can be queried as TokenBalance.