:accountBalancePrefunded leaf node


Label

Account balance prefunded

Description

The amount of Wei an account was prefunded with in a protocol variant. In the case that an account receives multiple prefunds in multiple protocol variants, the amounts are summed. In contrast to the regular account balance it is a property of the account itself and not of its state.

Usage

DOMAINPROPERTYRANGE
:ProtocolAccount :accountBalancePrefunded xsd:integer

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#> .

:accountBalancePrefunded a owl:DatatypeProperty ;
    rdfs:label "Account balance prefunded"@en ;
    :suggestedStringRepresentation "accountBalancePrefunded" ;
    rdfs:comment "The amount of Wei an account was prefunded with in a protocol variant. In the case that an account receives multiple prefunds in multiple protocol variants, the amounts are summed. In contrast to the regular account balance it is a property of the account itself and not of its state."@en ;
    rdfs:domain :ProtocolAccount ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :AccountDataProperty ;
    ns:term_status "unstable" .