Closed bchamagne closed 1 month ago
The index summary is an index for each subset that looks like this: address -> {genesis, bytes, offset}
address -> {genesis, bytes, offset}
The genesis is a domain information about the address. The bytes and offset are technical details about the storage.
I would like to split it in 2 indices to be able to refactor the database without impacting the domain:
address -> genesis
address -> {offset, size}
This enables chain re-indexing without impacting the entire subset.
No response
won't do at the moment, a more global refactor might be better
Is your feature request related to a problem?
The index summary is an index for each subset that looks like this:
address -> {genesis, bytes, offset}
The genesis is a domain information about the address. The bytes and offset are technical details about the storage.
Describe the solution you'd like
I would like to split it in 2 indices to be able to refactor the database without impacting the domain:
address -> genesis
(domain index)address -> {offset, size}
(technical index)Additional context
This enables chain re-indexing without impacting the entire subset.
Epic
No response