http://www.mobr.ai/ontologies/blockchain#Account
Entity holding tokens and interacting with blockchain
Instances of blockchain:Account can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class blockchain:Account | |||
blockchain:hasAccountAddress | owl:DatatypeProperty | Relates an account with its addresses. | xsd:string |
blockchain::firstAppearedInTransaction | owl:ObjectProperty | Relates the transaction that an account first appears (considered as account creation). | blockchain:Transaction |
blockchain:hasTokenAmount | owl:ObjectProperty | Associates an account with a token amount description | blockchain:TokenAmount |
cardano:delegatesTo | owl:ObjectProperty | Relates an account to its delegation target. | owl:Thing |
cardano:hasReward | owl:ObjectProperty | Relates an account with its current reward. | cardano:Reward |
@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:Account a owl:Class ;
rdfs:label "Account"@en ;
rdfs:comment "Entity holding tokens and interacting with blockchain"@en .