blockchain:SmartContract leaf node


URI

http://www.mobr.ai/ontologies/blockchain#SmartContract

Label

Smart Contract

Description

Self-executing contract with terms written in code

Superclasses (1)

Usage

Instances of blockchain:SmartContract can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class blockchain:SmartContract
cardano:embeddedIn owl:ObjectProperty Relates a smart contract with the transaction that it is embedded. blockchain:Transaction
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

Implementation

@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:SmartContract a owl:Class ;
    rdfs:label "Smart Contract"@en ;
    rdfs:comment "Self-executing contract with terms written in code"@en ;
    rdfs:subClassOf blockchain:Account .