:blockGasLimit leaf node


Label

Block gas limit

Description

A scalar value equal to the current limit of gas expenditure per block. Its purpose is to keep block propagation and processing time low, thereby allowing for a sufficiently decentralized network. Miners have the option to increase or decrease it every block by a certain factor.

Usage

DOMAINPROPERTYRANGE
:Block :blockGasLimit 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#> .

:blockGasLimit a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Block gas limit"@en ;
    :suggestedStringRepresentation "blockGasLimit" ;
    rdfs:comment "A scalar value equal to the current limit of gas expenditure per block.  Its purpose is to keep block propagation and processing time low, thereby allowing for a sufficiently decentralized network. Miners have the option to increase or decrease it every block by a certain factor."@en ;
    rdfs:domain :Block ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :BlockDataProperty ;
    ns:term_status "unstable" .