:txStatus leaf node


Label

Transaction status

Description

A status code for the transaction. False indicates failure (due to any operation that can cause the transaction or top-level call to revert) and true indicates success. This property was introduced with the Byzantium hard fork (EIP-658).

Usage

DOMAINPROPERTYRANGE
:Tx :txStatus xsd:boolean

Implementation

@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:txStatus a owl:DatatypeProperty ;
    rdfs:label "Transaction status"@en ;
    :suggestedStringRepresentation "txStatus" ;
    rdfs:comment "A status code for the transaction. False indicates failure (due to any operation that can cause the transaction or top-level call to revert) and true indicates success. This property was introduced with the Byzantium hard fork (EIP-658)."@en ;
    rdfs:domain :Tx ;
    rdfs:range xsd:boolean ;
    rdfs:subPropertyOf :MessageDataProperty ;
    ns:term_status "unstable" .