Releases: 0xPolygonHermez/zkevm-synchronizer-l1
Releases · 0xPolygonHermez/zkevm-synchronizer-l1
v1.0.6
v1.0.5
What's Changed
- feat: forkid13 by @joanestebanr in #130
v1.0.2
v1.0.1
v1.0.0
- Fix: avoid requests empty block range (#102)
- Add SQLITE dabatase support #106
- New config parameters for choose Database
Choose sqlite database:
[SQLDB]
DriverName = "sqlite3"
DataSource = "file:/tmp/sync_db.sqlite"
Choose legay postgres database:
[SQLDB]
DriverName = "postgres"
DataSource = "postgres://test_user:test_password@localhost:5436/sync?pool_max_conns=10"
DataSource have next format: postgres://<user>:<pass>@<host>:<port>/<dbname>?pool_max_conns=%d
v0.7.0
- Add support to event UpdateL1InfoTreeV2: basically is a sanity check for L1InfoTree
- Add support to event RollbackBatches:
- Add new sanity check for adding sequences (must be contigous)
- Refactor etherman: move types to another folder to be able to do mock and prevent import cycle error
- Add a RPC end-point for testing purpose. It's only active with execution tag debug
v0.6.6
v0.6.3
-Fix panic if there are no blocks on L1 yet