:accountCodeHash leaf node


Label

Account code hash

Description

The immutable Keccak-256 hash of the EVM code of an account.

Usage

DOMAINPROPERTYRANGE
:ContractAccount :accountCodeHash xsd:hexBinary

Implementation

@prefix : <http://ethon.consensys.net/> .
@prefix ns: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:accountCodeHash a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Account code hash"@en ;
    :suggestedStringRepresentation "accountCodeHash" ;
    rdfs:comment "The immutable Keccak-256 hash of the EVM code of an account."@en ;
    rdfs:domain :ContractAccount ;
    rdfs:range xsd:hexBinary ;
    rdfs:subPropertyOf :AccountDataProperty ;
    ns:term_status "unstable" .