Instances of :Opcode can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class :Opcode | |||
:cost | owl:DatatypeProperty | Specifies the amount of gas that has to be paid to execute an Opcode. | xsd:integer |
:hexValue | owl:DatatypeProperty | Specifies the hexadecimal code that represents an Opcode. This is the actual value used for the Opcode in byte code. | xsd:hexBinary |
:stackItemsAdded | owl:DatatypeProperty | Specifies the number of items added to the stack by executing an Opcode. | xsd:integer |
:stackItemsRemoved | owl:DatatypeProperty | Specifies the number of items removed from the stack when executing an Opcode. | xsd:integer |
From class owl:Thing | |||
:EthOnContractsDataProperty | owl:DatatypeProperty | Groups all EthOn Contracts extension Data Properties. | owl:Thing |
:EthOnContractsObjectProperty | owl:ObjectProperty | Groups all EthOn Contracts extension Object Properties | 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 |
http://purl.org/dc/terms/isRequiredBy | owl:ObjectProperty | -- | 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/Contracts/> .
@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#> .
:Opcode a owl:Class ;
rdfs:label "Opcode"@en ;
ethon:suggestedStringRepresentation "Opcode" ;
rdfs:comment "An Opcode an instruction in the instruction set of the Ethereum virtual machine. The set of existing Opcodes are defined as Individuals (instances) of this class."@en ;
ns:term_status "unstable" .