ponto:RuntimeModule


URI

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

Label

Runtime Module

Description

A module that implements specific transition functions and features one might want to have in their runtime. Each module should have domain-specific logic. For example, a Balances module has logic to deal with accounts and balances. In Substrate, modules are called 'pallets'.

Superclasses (1)

Usage

Instances of ponto:RuntimeModule can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE

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:RuntimeModule a owl:Class ;
    rdfs:label "Runtime Module" ;
    rdfs:comment "A module that implements specific transition functions and features one might want to have in their runtime. Each module should have domain-specific logic. For example, a Balances module has logic to deal with accounts and balances. In Substrate, modules are called 'pallets'." ;
    rdfs:subClassOf ponto:Module .