http://www.mobr.ai/ontologies/blockchain#FungibleToken
Interchangeable tokens of equal value
Instances of blockchain:FungibleToken can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class blockchain:FungibleToken | |||
blockchain:hasConversionRate | owl:DatatypeProperty | A property that defines the conversion between an asset and its denomination. For instance, 1 ADA = 1,000,000 Lovelace. | xsd:integer |
blockchain:hasDenominationName | owl:DatatypeProperty | Reference the name of the fractional unit of a cryptocurrency. For instance, Lovelace. | xsd:string |
From class blockchain:Token | |||
blockchain:hasMaxSupply | owl:DatatypeProperty | The maximum supply of a token. | xsd:integer |
blockchain:hasTokenDescription | owl:DatatypeProperty | The description of a token. | xsd:string |
blockchain:hasTokenName | owl:DatatypeProperty | The name of a token. | xsd:string |
blockchain:hasTokenSymbol | owl:DatatypeProperty | The symbol of a token. | xsd:string |
@prefix blockchain: <http://www.mobr.ai/ontologies/blockchain#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
blockchain:FungibleToken a owl:Class ;
rdfs:label "Fungible Token"@en ;
rdfs:comment "Interchangeable tokens of equal value"@en ;
rdfs:subClassOf blockchain:Token .