:transferBalance leaf node


Label

transfer balance

Description

A value equal to the base units of a Token calculated from all observable ERC-20 Transfer events. This doesn't necessarily represent the actual Token balance because it cannot be known what initial balances may be defined, what mechanisms may exist to generate or burn tokens and what other mechanisms that affect the token balances may be implemented in the token contract.

Inherits from

Usage

DOMAINPROPERTYRANGE
:TokenBalance :transferBalance xsd:integer

Implementation

@prefix : <http://ethon.consensys.net/ERC20/> .
@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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:transferBalance a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "transfer balance"@en ;
    ethon:suggestedStringRepresentation "transferBalance" ;
    rdfs:comment "A value equal to the base units of a Token calculated from all observable ERC-20 Transfer events. This doesn't necessarily represent the actual Token balance because it cannot be known what initial balances may be defined, what mechanisms may exist to generate or burn tokens and what other mechanisms that affect the token balances may be implemented in the token contract."@en ;
    rdfs:domain :TokenBalance ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :EthOnERC20DataProperty ;
    ns:term_status "unstable" .