[WIP] spec: add <static>
cell for flagging execution mode
#100
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As @pepyakin pointed out, we will need a
<static>
flag for capturing which EEI methods the current execution is allowed to access.We could also think of implementing this as a
<eeiNamespace>
cell, which contains the list of EEI methods the current execution can access. This nicely encapsulates both thestatic
notion, as well as the namespace notion we have discussed for having different methods available to the EVM engines vs the ewasm engines vs the evm2wasm engines.@chfast and @axic what do you think? Basically, we would have two EVM namespaces, one which is
evm
, and one which isevm_static
, the second not allowing access to the various EEI methods which cannot be accessed during aSTATICCALL
.Also tagging @poemm for thoughts.