Skip to content
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.

v1.9.0-rc1

Pre-release
Pre-release
Compare
Choose a tag to compare
@RetricSu RetricSu released this 17 Nov 05:50
· 21 commits to 1.9-rc since this release
f22daf4

Note

Database fixing is required for this release. Instead of doing a re-sync in web3-indexer, we have provided a new command in web3-indexer to update the whole database.

./target/release/gw-web3-indexer update <optional start block, default to 0> <optional end block, default to local tip>

How to use

After updating and running godwoken-web3 and gw-web3-indexer to this version, first run db migration: yarn knex migrate:latest, then open another terminal and run:

./target/release/gw-web3-indexer update

It will fix the database from genesis to the current tip block. This might takes some time. In case the process exit at block N during the fixing, you can run again to fix the database starting from N+1 block to last tip block number:

./target/release/gw-web3-indexer update N+1 lastTipBlockNumber

The command is stateless, so if you run it multiple times, it will redo multiple fixing.


Fixed

Feat

Other

Full Changelog: v1.8.6...v1.9.0-rc1