Contract
The Contract
interface provides base details that should be available for all EVM contracts.
interface Contract {
contractAddress: ContractAddressEVM!
name: String!
contract_creation_time: String!
block_number: Int!
block_hash: String!
bytecode: String!
}
Fields
contractAddress
(ContractAddressEVM
)
name
(String
)
contract_creation_time
(String
)
The date the contract was deployed
block_number
(Int
)
The block number in which the contract was deployed
block_hash
(String
)
The block hash in which the contract was deployed
bytecode
(String
)
The bytecode of the contract