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
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
By default every execution uses exactly 1 64K OS memory page. This page is re-initialized to initial condition before every call so needs to be kept small.
Some contracts may need to process messages/data/temporary storage that is greater than 64K, they should be allowed to do this so long as total time does not exceed the quantum allotted to the contract's execution.
all new memory pages must be initialized to 0
there must be a maximum memory usage allowed
the WASM module is cached, so it must be resized back to 1 page at end of execution
The text was updated successfully, but these errors were encountered:
By default every execution uses exactly 1 64K OS memory page. This page is re-initialized to initial condition before every call so needs to be kept small.
Some contracts may need to process messages/data/temporary storage that is greater than 64K, they should be allowed to do this so long as total time does not exceed the quantum allotted to the contract's execution.
The text was updated successfully, but these errors were encountered: