:value leaf node


Label

value in Wei

Description

A scalar value equal to the number of Wei to be transferred to the Message call's recipient. In the case of contract creation it is the initial balance of the contract account, paid by the sending account.

Usage

DOMAINPROPERTYRANGE
:Msg :value 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#> .

:value a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "value in Wei"@en ;
    :suggestedStringRepresentation "value" ;
    rdfs:comment "A scalar value equal to the number of Wei to be transferred to the Message call's recipient. In the case of contract creation it is the initial balance of the contract account, paid by the sending account."@en ;
    rdfs:domain :Msg ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :MessageDataProperty ;
    ns:term_status "unstable" .