ERC721
The ERC721
type conforms to the standard described in https://ethereum.org/en/developers/docs/standards/tokens/erc-721/.
Added fields include symbol, decimals.
type ERC721 implements Contract {
contractAddress: ContractAddressEVM!
name: String!
contract_creation_time: String!
block_number: Int!
block_hash: String!
bytecode: String!
symbol: String!
}
Fields
contractAddress
(ContractAddressEVM
)
name
(String
)
contract_creation_time
(String
)
block_number
(Int
)
block_hash
(String
)
bytecode
(String
)
symbol
(String
)
Interfaces
Contract
The Contract
interface provides base details that should be available for all EVM contracts.