Contract
The
Contract
type is an interface that is implemented by types such as ERC721Contract
. It surfaces fields that all Contract
share.interface Contract {
address: String!
isVerified: Boolean!
tokenStandard: TokenStandard
logs: LogConnection
token: Token
tokens: TokenConnection
attributes: [ContractAttribute]!
}
Last modified 1yr ago