==== EIP 214: New opcode STATICCALL ==== [[dido:public:ra:xapend:xapend.b_stds:defact:ethereum:eip| Return to Ethereum ERCs ]] : **Note**: The following is an excerpt from the official Ethereum site. It is provided here as a convenience and is not authoritative. Refer to the original document as the authoritative reference. | Title | New opcode ''STATICCALL'' | | Author | Vitalik Buterin, Christian Reitwiessner | | Status | Final | | Created | 2017-02-13 | | Description | [[http://eips.ethereum.org/EIPS/eip-214]] | | Specification | [[http://eips.ethereum.org/EIPS/eip-214#Specification]] | | Category | Core |
Data sheet for New opcode STATICCALL
=== Simple Summary === : //To increase [[dido:public:ra:xapend:xapend.a_glossary:s:smart_contract|smart contract]] security, this proposal adds a new opcode that can be used to call another contract (or itself) while disallowing any modifications to the state during the call (and its subcalls, if present).// === Abstract === : //This proposal adds a new opcode that can be used to call another contract (or itself) while disallowing any modifications to the state during the call (and its subcalls, if present). Any opcode that attempts to perform such a modification (see below for details) will result in an exception instead of performing the modification.// === Motivation === : //Currently, there is no restriction about what a called contract can do, as long as the computation can be performed with the amount of [[dido:public:ra:xapend:xapend.a_glossary:g:gas|gas]] provided. This poses certain difficulties about smart contract engineers; after a regular call, unless you know the called contract, you cannot make any assumptions about the state of the contracts. Furthermore, because you cannot know the order of transactions before they are confirmed by miners, not even an outside observer can be sure about that in all cases.// : //This EIP adds a way to call other contracts and restrict what they can do in the simplest way. It can be safely assumed that the state of all accounts is the same before and after a static call.//