:msgCallDepth leaf node


Label

Message call depth

Description

A scalar value equal to the depth of the contract message. A contract message is represented as a call in the Ethereum EVM. This value represents the number of CALL or CREATE opcodes being executed at the time of the message execution.

Usage

DOMAINPROPERTYRANGE
:Tx :msgCallDepth xsd:integer

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#> .

:msgCallDepth a owl:DatatypeProperty ;
    rdfs:label "Message call depth"@en ;
    :suggestedStringRepresentation "msgCallDepth" ;
    rdfs:comment "A scalar value equal to the depth of the contract message. A contract message is represented as a call in the Ethereum EVM. This value represents the number of CALL or CREATE opcodes being executed at the time of the message execution."@en ;
    rdfs:domain :Tx ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :MessageDataProperty ;
    ns:term_status "unstable" .