blockchain:ProofOfStake leaf node


URI

http://www.mobr.ai/ontologies/blockchain#ProofOfStake

Label

Proof of Stake

Description

A consensus mechanism where block production rights are proportional to staked tokens in the system.

Superclasses (1)

Instances (1)

Usage

Instances of blockchain:ProofOfStake can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class blockchain:ConsensusProtocol
blockchain:isActiveProtocol owl:DatatypeProperty Indicates whether a consensus protocol is currently active. xsd:boolean
blockchain:usesSelectionRule owl:ObjectProperty Relates a consensus protocol to its chain selection rule. blockchain:ChainSelectionRule
blockchain:usesValidationRule owl:ObjectProperty Relates a consensus protocol to its validation rules. blockchain:ValidationRule

Implementation

@prefix blockchain: <http://www.mobr.ai/ontologies/blockchain#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

blockchain:ProofOfStake a owl:Class ;
    rdfs:label "Proof of Stake"@en ;
    rdfs:comment "A consensus mechanism where block production rights are proportional to staked tokens in the system."@en ;
    rdfs:subClassOf blockchain:ConsensusProtocol .