http://www.mobr.ai/ontologies/blockchain#ProofOfWork
A consensus mechanism where block production requires solving computationally intensive cryptographic puzzles.
Instances of blockchain:ProofOfWork can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
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 |
@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:ProofOfWork a owl:Class ;
rdfs:label "Proof of Work"@en ;
rdfs:comment "A consensus mechanism where block production requires solving computationally intensive cryptographic puzzles."@en ;
rdfs:subClassOf blockchain:ConsensusProtocol .