http://www.mobr.ai/ontologies/ponto#RuntimeModule
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'.
Instances of ponto:RuntimeModule can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|
@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 .