Instances of :DelegateTokenTransfer can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class :DelegateTokenTransfer | |||
:byDelegate | owl:FunctionalProperty | Relates a Delegate Token Transfer to the Account that initiated it. | ethon:Account :TokenDelegate |
From class :TokenTransfer | |||
:value | owl:DatatypeProperty | Number of tokens transferred. | xsd:integer |
:changesBalance | owl:FunctionalProperty | Relates a token transfer to the token balance it changes. | :TokenBalance |
:from | owl:FunctionalProperty | Relates a Token Transfer with the Account it originates from. | ethon:Account :TokenHolder |
:hasTransferFunctionCall | owl:FunctionalProperty | Relates a token transfer to the function call that caused the token transfer. | Contracts:FunctionCall |
:to | owl:FunctionalProperty | Relates a Token Transfer with the Account it is sent to. | ethon:Account :TokenHolder |
From class owl:Thing | |||
:EthOnERC20DataProperty | owl:DatatypeProperty | Groups all EthOn ERC-20 extension Data Properties. | owl:Thing |
:EthOnERC20ObjectProperty | owl:ObjectProperty | Groups all EthOn ERC-20 extension Object Properties | owl:Thing |
:changesAllowance | owl:ObjectProperty | Relates a delegate token transfer to the allowance it changes. When a delegate spends a certain amount of a token, this amount is deducted from its balance. | owl:Thing |
:initialBalance | owl:DatatypeProperty | The amount of tokens this token balance has initially. The initial value is set in the token contract and cannot be derived from the token transfers. | owl:Thing |
dc:contributor | owl:AnnotationProperty | -- | owl:Thing |
dc:creator | owl:AnnotationProperty | -- | owl:Thing |
dc:title | owl:AnnotationProperty | -- | owl:Thing |
ethon:suggestedStringRepresentation | owl:AnnotationProperty | -- | owl:Thing |
ns:term_status | owl:AnnotationProperty | -- | owl:Thing |
vann:preferredNamespacePrefix | owl:AnnotationProperty | -- | owl:Thing |
vann:preferredNamespaceUri | owl:AnnotationProperty | -- | owl:Thing |
@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#> .
:DelegateTokenTransfer a owl:Class ;
rdfs:label "Delegate Token Transfer"@en ;
ethon:suggestedStringRepresentation "DelegateTokenTransfer" ;
rdfs:comment "A Delgate Token Transfer is a Token Transfer executed by a Spender that has been given an Allowance to spend."@en ;
rdfs:subClassOf :TokenTransfer ;
owl:disjointWith :OwnerTokenTransfer ;
ns:term_status "unstable" .