Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
Add STATICCALL opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-tud committed Oct 13, 2017
1 parent 8786635 commit 172ef8f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Contracts/EthOn_Contracts.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -1711,6 +1711,17 @@ If it represents an Input of an Event it can have the boolean property isIndexed
:stackItemsRemoved "0"^^xsd:integer ;
rdfs:comment "Save word to storage."@en .
#
# http://ethon.consensys.net/Contracts/Opcode_STATICCALL

:Opcode_STATICCALL a owl:NamedIndividual , :Opcode ;
:cost "40"^^xsd:integer ;
:hexValue "f4"^^xsd:hexBinary ;
:name "STATICCALL"^^xsd:string ;
:stackItemsAdded "6"^^xsd:integer ;
:stackItemsRemoved "1"^^xsd:integer ;
rdfs:comment "Non-state-changing call to another contract. Any modifications to the state during the call (and its subcalls, if present) are disallowed."@en .

#
# http://ethon.consensys.net/Contracts/Opcode_STOP

:Opcode_STOP a owl:NamedIndividual , :Opcode ;
Expand Down

0 comments on commit 172ef8f

Please sign in to comment.