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