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
Given that, the state is fully replicated across all network participants, we should minimize the storage cost of FHE operations.
Only SSTOREd ciphertexts, whether in the ACL contract or the User contract, should be persisted in the host state.
Moreover, LateCommit should not be kept in the state, if LateCommit feature is disabled (FHEVM_COMMIT_BLOCK_OFFSET=0).
The text was updated successfully, but these errors were encountered:
Description
Currently, all computed ciphertexts are stored in the host state, whether it results from a SSTORE operation or serves as an intermediate value.
In addition, every computation is represented as an entry in the so-called LateCommit queue, which is also persisted in the host state.
Solution
Given that, the state is fully replicated across all network participants, we should minimize the storage cost of FHE operations.
Only SSTOREd ciphertexts, whether in the ACL contract or the User contract, should be persisted in the host state.
Moreover, LateCommit should not be kept in the state, if LateCommit feature is disabled (FHEVM_COMMIT_BLOCK_OFFSET=0).
The text was updated successfully, but these errors were encountered: