[ZK Stack] - Understanding Validium mode and changing DB for data-availability #827
-
Team or ProjectNo response Module Affected
Rust Version1.81.0 Operating System
Issue DescriptionI'm trying to get a better understanding of the Validium mode. I have selected 'Validium' while creating an ecosystem. (Screenshot 1). And I could confirm this initialisation in the After transmitting some batches from my zk-chain to the L1, I checked the
As per my understanding, when selecting Validium mode, the DA data should be posted to this table? Or is posted elsewhere? And can I point the DA data to a custom database? When skimming through the code I found 'ObjectStore', could that be helpful? I haven't found any documentation for it. Thanks a lot everyone! :) Expected BehaviorDA data to be seen in Current Behavior
Repository Link (if applicable)No response Additional DetailsNo response Prior Research
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
It seems you are encountering an issue where the Here are a few points to consider and steps you might take:
If these steps do not resolve the issue, it may be necessary to delve deeper into the system logs or seek direct support from the development team to diagnose and address the specific integration issues with the DA layer. Your feedback helps us serve you better. If this fully addresses your question, please give it a thumbs up. If it doesn't, please give it a thumbs down. This will inform the community and team so we can improve our support. |
Beta Was this translation helpful? Give feedback.
-
Hi @LimonChillo,
The
You can find info about using a 3rd party DA solution in the FAQs |
Beta Was this translation helpful? Give feedback.
Hi @LimonChillo,
The
data_availability
table is used for storing the metadata about the 3rd party DA blobs (more on that here).The default configuration for a validium is a NoDA validium, which only persists the data in the db (can be found in
l1_batches table
,pubdata_input
field) and doesn't have any metadata about external blobs, which is why the table has empty values.You can find info about …