:hasBilateralFork leaf node


Label

has bilateral Fork

Description

Relates a protocol variant to a bilaterally forked version of it. In contrast to a hard fork, a bilateral fork may expand some rules and make others more strict. While in a hard fork rules are expanded only and all pre-fork blocks also comply to the new rules, after a bilateral hard fork, pre-fork some blocks may not be compliant to new protocol.

Usage

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

:hasBilateralFork a owl:AsymmetricProperty,
        owl:InverseFunctionalProperty,
        owl:IrreflexiveProperty,
        owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "has bilateral Fork"@en ;
    :suggestedStringRepresentation "hasBilateralFork" ;
    rdfs:comment "Relates a protocol variant to a bilaterally forked version of it. In contrast to a hard fork, a bilateral fork may expand some rules and make others more strict. While in a hard fork rules are expanded only and all pre-fork blocks also comply to the new rules, after a bilateral hard fork, pre-fork some blocks may not be compliant to new protocol."@en ;
    rdfs:domain :ProtocolVariant ;
    rdfs:range :ProtocolVariant ;
    rdfs:subPropertyOf :hasFork ;
    ns:term_status "unstable" .