:hasSoftFork leaf node


Label

has soft Fork

Description

Relates a protocol variant to a soft forked version of it. Soft forks make the rules of a protocol variant more strict. Blocks in the soft forked chain conform to multiple protocol versions at the same time.

Usage

DOMAINPROPERTYRANGE
:ProtocolVariant :hasSoftFork :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#> .

:hasSoftFork a owl:AsymmetricProperty,
        owl:InverseFunctionalProperty,
        owl:IrreflexiveProperty,
        owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "has soft Fork"@en ;
    :suggestedStringRepresentation "hasSoftFork" ;
    rdfs:comment "Relates a protocol variant to a soft forked version of it. Soft forks make the rules of a protocol variant more strict. Blocks in the soft forked chain conform to multiple protocol versions at the same time."@en ;
    rdfs:domain :ProtocolVariant ;
    rdfs:range :ProtocolVariant ;
    rdfs:subPropertyOf :hasFork ;
    ns:term_status "unstable" .