ponto:Collator leaf node


URI

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

Label

Collator

Description

A node that maintains a parachain by collecting parachain transactions and producing state transition proofs for the validators.

Superclasses (2)

Usage

Instances of ponto:Collator can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
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

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: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 .