Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Data sync fix table name format (#477)
This PR addresses a small issue with the format of the names of the intermediate data tables we store in the analytics db. Specifically, we have names such as `batch_data_ethereum_2025_1` which are then picked by our dune-sync jobs; however, the dune sync jobs assume the "month" part of the name always has 2 digits, meaning they expect something like `batch_data_ethereum_2025_01` This PR fixes this by switching to the convention where every month is written with 2 digits, i.e., 01, 02, ..., 12. Note: have tested the script locally and indeed it generated the desired table name
- Loading branch information