We currently have a syscalls to lookup a message context and a network context where:
- The "message" context includes "message" related things (from, to, etc.).
- The "network" context includes "network" related things (epoch, timestamp, basefee, etc.).
However, the "message" context is a bit funky because it includes the origin, gas premium, and gas limit. Really, its a mix of message specific information and "invocation context" related things.
We should consider either splitting it up into multiple parts, or renaming it back to InvocationContext.
We currently have a syscalls to lookup a message context and a network context where:
However, the "message" context is a bit funky because it includes the origin, gas premium, and gas limit. Really, its a mix of message specific information and "invocation context" related things.
We should consider either splitting it up into multiple parts, or renaming it back to
InvocationContext.