:minesFor leaf node


Label

mines for

Description

Relates a mining node to the blockchain it mines for. Mining is the process of dedicating effort (working) to bolster one series of transactions (a block) over any other potential competitor block. It is achieved thanks to a cryptographically secure proof.

Usage

DOMAINPROPERTYRANGE
:Node :minesFor :Blockchain

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

:minesFor a owl:ObjectProperty ;
    rdfs:label "mines for"@en ;
    :suggestedStringRepresentation "minesFor" ;
    rdfs:comment "Relates a mining node to the blockchain it mines for. Mining is the process of dedicating effort (working) to bolster one series of transactions (a block) over any other potential competitor block. It is achieved thanks to a cryptographically secure proof."@en ;
    rdfs:domain :Node ;
    rdfs:range :Blockchain ;
    rdfs:subPropertyOf :NetworkObjectProperty ;
    ns:term_status "unstable" .