You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned in the rationale part of the EIP-1985 any memory offset larger than 32bits is not feasible (it'd need a really high amount of gas to expand memory beyond that).
We can therefore use a normal u32 for memory offsets (with the condition that if any of the preceding bits is 1, it should throw OOG).
The text was updated successfully, but these errors were encountered:
As mentioned in the rationale part of the EIP-1985 any memory offset larger than 32bits is not feasible (it'd need a really high amount of gas to expand memory beyond that).
We can therefore use a normal
u32
for memory offsets (with the condition that if any of the preceding bits is 1, it should throw OOG).The text was updated successfully, but these errors were encountered: