http://www.mobr.ai/ontologies/ponto#reservedFor
Tokens can be reserved for various reasons that use space in the chain state. Unlike locks, reserves do stack. So, each new action that requires a deposit reserves the necessary amount added to any previous reserves that might exist.
DOMAIN | PROPERTY | RANGE |
---|---|---|
ponto:ReservedBalance | ponto:reservedFor | ponto:ReservationReason |
@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:reservedFor a owl:ObjectProperty ;
rdfs:comment "Tokens can be reserved for various reasons that use space in the chain state. Unlike locks, reserves do stack. So, each new action that requires a deposit reserves the necessary amount added to any previous reserves that might exist." ;
rdfs:domain ponto:ReservedBalance ;
rdfs:range ponto:ReservationReason .