Instances of :FunctionCall can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class :FunctionCall | |||
:callsFunction | owl:FunctionalProperty | Relates a Function Call to the Function that is called by it. | :Function |
:hasOutputValue | owl:InverseFunctionalProperty | Relates a FunctionCall to an Output Value that is represented by it. For example a Function Call add(5,6) that returns the sum of two integers would be related to one Output Value, that contains the result of the addition. | :OutputValue |
From class owl:Thing | |||
:EthOnContractsDataProperty | owl:DatatypeProperty | Groups all EthOn Contracts extension Data Properties. | owl:Thing |
:EthOnContractsObjectProperty | owl:ObjectProperty | Groups all EthOn Contracts extension Object Properties | owl:Thing |
dc:contributor | owl:AnnotationProperty | -- | owl:Thing |
dc:creator | owl:AnnotationProperty | -- | owl:Thing |
dc:title | owl:AnnotationProperty | -- | owl:Thing |
ethon:suggestedStringRepresentation | owl:AnnotationProperty | -- | owl:Thing |
http://purl.org/dc/terms/isRequiredBy | owl:ObjectProperty | -- | owl:Thing |
ns:term_status | owl:AnnotationProperty | -- | owl:Thing |
vann:preferredNamespacePrefix | owl:AnnotationProperty | -- | owl:Thing |
vann:preferredNamespaceUri | owl:AnnotationProperty | -- | owl:Thing |
@prefix : <http://ethon.consensys.net/Contracts/> .
@prefix ethon: <http://ethon.consensys.net/> .
@prefix ns: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
:FunctionCall a owl:Class ;
rdfs:label "Function Call"@en ;
ethon:suggestedStringRepresentation "FunctionCall" ;
rdfs:comment "Functions Calls are calls to Functions that are recorded in the blockchain. They are a subset of all Messages in a blockchain. Examples for Function Calls are Transactions (which is a sub-type of a Message) that call a Dynamic Function in a smart contract and Contract Calls that call Dynamic or Static Functions in smart contracts. Function Calls originate from either an External Account or a Contract Account and are always directed towards Contract Accounts."@en ;
rdfs:subClassOf ethon:Msg ;
ns:term_status "unstable" .