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
Currently, data posted to L1 is linearly serialized, full addresses and full 8 byte values for balances and nonces. By changing the Serialize and Deserialize calls add compression to this, you can choose any one you want:
simply gzip the data
add variable length integers, something akin you can find in the Bitcoin Protocol
instead of storing the full addresses, assign each address to a unique integer and identify accounts with such IDs
You have any questions or problems you can always join our Discord and ask :+]
The text was updated successfully, but these errors were encountered:
Currently, data posted to L1 is linearly serialized, full addresses and full 8 byte values for balances and nonces. By changing the
Serialize
andDeserialize
calls add compression to this, you can choose any one you want:You have any questions or problems you can always join our Discord and ask :+]
The text was updated successfully, but these errors were encountered: