:uncleBeneficiaryReward leaf node


Label

Uncle beneficiary reward

Description

The reward the beneficiary of an uncle receives if a block includes it. The reward amount depends how far up the Uncle is in the blockchain (the number of the block in which it is included minus the uncle's number). An uncle reward is only paid if the distance is smaller than 8. For a distance of 1 the reward is 7/8 of the block reward, for a distance of 7 the reward is 1/8 of the block reward.

Usage

DOMAINPROPERTYRANGE
:Uncle :uncleBeneficiaryReward 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#> .

:uncleBeneficiaryReward a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Uncle beneficiary reward"@en ;
    :suggestedStringRepresentation "uncleBenficiaryReward" ;
    rdfs:comment "The reward the beneficiary of an uncle receives if a block includes it. The reward amount depends how far up the Uncle is in the blockchain (the number of the block in which it is included minus the uncle's number). An uncle reward is only paid if the distance is smaller than 8. For a distance of 1 the reward is 7/8 of the block reward, for a distance of 7 the reward is 1/8 of the block reward."@en ;
    rdfs:domain :Uncle ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :BlockDataProperty ;
    ns:term_status "unstable" .