From ca04ab3de51a6892e932a5faeb4dfa0c12ff4260 Mon Sep 17 00:00:00 2001 From: Johannes Date: Fri, 13 Oct 2017 08:35:35 +0200 Subject: [PATCH] Add STATICCALL opcode https://github.com/ethereum/EIPs/pull/214 --- Contracts/EthOn_Contracts.ttl | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Contracts/EthOn_Contracts.ttl b/Contracts/EthOn_Contracts.ttl index 1d6413d..b159321 100644 --- a/Contracts/EthOn_Contracts.ttl +++ b/Contracts/EthOn_Contracts.ttl @@ -1701,6 +1701,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 ;