ponto:Nominator leaf node


URI

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

Label

Nominator

Description

Accounts that select a set of validators to nominate by bonding their tokens. Nominators receive some of the validators' rewards, but are also liable for slashing if their nominated validators misbehave.

Usage

Instances of ponto:Nominator can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class ponto:Nominator
ponto:nominates owl:ObjectProperty A Nominator nominates a validator in the Polkadot network. ponto:Validator
From class ponto:StakeHolder
ponto:belongsToPool owl:ObjectProperty Relates a stake holder to the stake pool they belong to. ponto:StakePool
ponto:hasNominator owl:ObjectProperty ponto:Nominator
ponto:hasStake owl:ObjectProperty A StakeHolder that holds a certain amount of stake in the Polkadot network. ponto:Stake
ponto:initiateProposal owl:ObjectProperty ponto:Proposal
From class ponto:AccountHolder
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:Nominator a owl:Class ;
    rdfs:label "Nominator" ;
    rdfs:comment "Accounts that select a set of validators to nominate by bonding their tokens. Nominators receive some of the validators' rewards, but are also liable for slashing if their nominated validators misbehave." ;
    rdfs:subClassOf ponto:StakeHolder .