@prefix : <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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
:triggersMsg a owl:ObjectProperty ;
rdfs:label "triggers Contract Message"@en ;
:suggestedStringRepresentation "triggersMsg" ;
rdfs:comment "Relates a message that was directed to a contract account to the contract messages that result from it. The chain of triggersMsg relations represents a call tree. The messages related to a message via triggersMsg are the direct children of it in the call tree."@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf [ a rdf:List ;
rdf:first :CallContractMsg ;
rdf:rest [ a rdf:List ;
rdf:first :CallTx ;
rdf:rest [ a rdf:List ;
rdf:first :CreateContractMsg ;
rdf:rest [ a rdf:List ;
rdf:first :CreateTx ;
rdf:rest () ] ] ] ] ] ;
rdfs:range :ContractMsg ;
rdfs:subPropertyOf :MessageObjectProperty ;
ns:term_status "unstable" .