:hasHardFork leaf node


Label

has hard Fork

Description

Relates a protocol variant to a hard forked version of it. Hard forks expand the rule set of a protocol variant or change it incompatibly. Users who want to be on the hard forked chain have to update their clients.

Usage

DOMAINPROPERTYRANGE
:ProtocolVariant :hasHardFork :ProtocolVariant

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

:hasHardFork a owl:AsymmetricProperty,
        owl:InverseFunctionalProperty,
        owl:IrreflexiveProperty,
        owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "has hard Fork"@en ;
    :suggestedStringRepresentation "hasSoftFork" ;
    rdfs:comment "Relates a protocol variant to a hard forked version of it. Hard forks expand the rule set of a protocol variant or change it incompatibly. Users who want to be on the hard forked chain have to update their clients."@en ;
    rdfs:domain :ProtocolVariant ;
    rdfs:range :ProtocolVariant ;
    rdfs:subPropertyOf :hasFork ;
    ns:term_status "unstable" .