http://www.mobr.ai/ontologies/ponto#ProofOfStake
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.
Instances of ponto:ProofOfStake can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class ponto:ProofOfStake | |||
ponto:usesProofOfStake | owl:ObjectProperty | A Validator that participates in the ProofOfStake consensus mechanism. | ponto:Validator |
@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 .