ponto:ProofOfStake


URI

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

Label

Proof of Stake

Description

A method of selecting participation in a consensus system, in which participants are chosen based on how many tokens they have at stake (at risk of loss due to misbehavior). Normally, Proof-of-Stake systems limit the number of participants.

Usage

Instances of ponto:ProofOfStake can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class ponto:ProofOfStake
ponto:usesProofOfStake owl:ObjectProperty A Validator that participates in the ProofOfStake consensus mechanism. ponto:Validator

Implementation

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

ponto:ProofOfStake a owl:Class ;
    rdfs:label "Proof of Stake" ;
    rdfs:comment "A method of selecting participation in a consensus system, in which participants are chosen based on how many tokens they have at stake (at risk of loss due to misbehavior). Normally, Proof-of-Stake systems limit the number of participants." ;
    rdfs:subClassOf ponto:ConsensusMechanism .