:cumulativeGasUsed leaf node


Label

cumulative gas used

Description

The cumulative gas used in the block containing the transaction as of immediately after the transaction has happened.

Usage

DOMAINPROPERTYRANGE
:Tx :cumulativeGasUsed 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#> .

:cumulativeGasUsed a owl:DatatypeProperty ;
    rdfs:label "cumulative gas used"@en ;
    :suggestedStringRepresentation "cumulativeGasUsed" ;
    rdfs:comment "The cumulative gas used in the block containing the transaction as of immediately after the transaction has happened."@en ;
    rdfs:domain :Tx ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :MessageDataProperty ;
    ns:term_status "unstable" .