:includesUncle leaf node


Label

includes Uncle

Description

Relates a block to another block by including it as an uncle. Block B can be an uncle of block A if it is the direct child of the k'th generation ancestor of block B, where 2<=k<=7 but not a direct ancestor of block A. Uncles are blocks found by a miner, when a different miner has already found another block for the corresponding place in the blockchain. They are also known as “stale blocks”.

Usage

DOMAINPROPERTYRANGE
:Block :includesUncle :Uncle

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

:includesUncle a owl:ObjectProperty ;
    rdfs:label "includes Uncle"@en ;
    :suggestedStringRepresentation "includesUncle" ;
    rdfs:comment "Relates a block to another block by including it as an uncle. Block B can be an uncle of block A if it is the direct child of the k'th generation ancestor of block B, where 2<=k<=7 but not a direct ancestor of block A. Uncles are blocks found by a miner, when a different miner has already found another block for the corresponding place in the blockchain. They are also known as “stale blocks”."@en ;
    rdfs:domain :Block ;
    rdfs:range :Uncle ;
    rdfs:subPropertyOf :BlockObjectProperty ;
    ns:term_status "unstable" .