http://www.mobr.ai/ontologies/ponto#Collator
A node that maintains a parachain by collecting parachain transactions and producing state transition proofs for the validators.
Instances of ponto:Collator can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class ponto:Collator | |||
ponto:buildsBlock | owl:ObjectProperty | A Collator node that builds a block for a specific parachain. | ponto:Transaction |
ponto:collectsTransaction | owl:ObjectProperty | A Collator node that collects transactions for a specific parachain. | ponto:Transaction |
ponto:hasValidator | owl:ObjectProperty | ponto:Validator | |
ponto:producesProof | owl:ObjectProperty | ponto:ProofOfValidity | |
ponto:runsOn | owl:ObjectProperty | ponto:Parachain | |
From class ponto:Node | |||
ponto:hasVotingPower | owl:ObjectProperty | In the Polkadot multichain ecosystem, voting power is distributed among different entities based on their role and stake in the network. | xsd:boolean |
@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:Collator a owl:Class ;
rdfs:label "Collator" ;
rdfs:comment "A node that maintains a parachain by collecting parachain transactions and producing state transition proofs for the validators." ;
rdfs:runsOn ponto:Parachain ;
rdfs:subClassOf ponto:Node .