:msgGasUsed leaf node


Label

Msg gas used

Description

The amount of gas that was used for processing a single message, regardless of which type of message it may be.

Usage

DOMAINPROPERTYRANGE
:Msg :msgGasUsed 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#> .

:msgGasUsed a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Msg gas used"@en ;
    :suggestedStringRepresentation "msgGasUsed" ;
    rdfs:comment "The amount of gas that was used for processing a single message, regardless of which type of message it may be."@en ;
    rdfs:domain :Msg ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :MessageDataProperty ;
    owl:propertyDisjointWith :txGasUsed ;
    ns:term_status "unstable" .