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
Store only one copy of the validator address/pub keys.
Currently, we store the full validator set per each Header which is redundant as they are usually overlapping.
For this to happen, we may introduce an additional Validator service/module with its own pkg and the Store interface.
Also, this epic should ideally include changes in syncing of validator sets. Specifically, the delta of validators should be fetched and not the whole validator set, as it is right now.
Pruning of headers. Nodes do not trust headers beyond the unbonding period and can remove them. Still, we should provide an API for Nodes that can fetch headers from the DA network upon request.
Cryptography aware serialization format. Currently, we use protobuf which prefixes all the serialized data with its length, including constant size hashes and signatures.
BLS signatures aggregation would allow us to store 1 signature instead of N validator signature per Header. This is something out of the scope of celestia-node and heavily dependent on Core/Tendermint. Fortunately, the Tendermint team is going in the direction of implementing the BLS signatures as outlined in the doc.
deps: update to badgerv4 #482
This will decrease disk storage usage for each value written in badger, as it uses different serialization format since v3
The text was updated successfully, but these errors were encountered:
This will decrease disk storage usage for each value written in badger, as it uses different serialization format since v3
The text was updated successfully, but these errors were encountered: