Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding STATIC_CALL opcode #234

Open
pirapira opened this issue Feb 14, 2017 · 2 comments
Open

Adding STATIC_CALL opcode #234

pirapira opened this issue Feb 14, 2017 · 2 comments
Assignees

Comments

@pirapira
Copy link
Member

This issue keeps track of following the adoption of https://github.com/ethereum/EIPs/pull/214/files

@pirapira pirapira mentioned this issue Feb 14, 2017
12 tasks
@pirapira
Copy link
Member Author

pirapira commented Feb 14, 2017

One way to implement this is:

  • the input tuple I obtains a new boolean member, true for static calls.
  • \Lambda needs a new argument
  • \Theta needs a new argument
  • the exceptional halting function Z is true when the static flag is true and the next operation is not "static"
  • a new function S(mu) tells if the next operation is "static".

@pirapira pirapira self-assigned this Feb 17, 2017
@pirapira
Copy link
Member Author

pirapira commented Feb 17, 2017

Note

  • how are boolean elements (true, false) denoted in the Yellow Paper? (true is \top, false does not appear, but I guess I can use \bot).
  • I_s is taken for "sender". What for static? w for can write to state?
  • where are the input tuple I constructed?
    • around equations (88)--(95), when an external account creates a contract
    • around equations (107)--(113), when an external account makes a call
    • when a contract creates a contract, is redirected to above
    • when a contract calls a contract, is redirected to above

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@pirapira and others