September 2022 Conseil Release
This release broadly adds support for the Tezos Kathmandu protocol. Details may be found at https://github.com/Cryptonomic/Conseil/milestone/14?closed=1.
There are database schema changes for new operation types. One can sync from scratch or amend an existing instance with the following SQL statements:
alter table tezos.operations
add eventtype varchar;
alter table tezos.operations
add tag varchar;
alter table tezos.operations
add payload varchar;
alter table tezos.operations
add solution varchar;
alter table tezos.blocks
add consumed_milligas numeric;
alter table tezos.operations
add consumed_milligas numeric;
A database dump from a full resync from scratch can be found at https://conseil-snapshots.s3.amazonaws.com/conseil_20220916_directory_format.zip.
Docker tag: conseil:2022-september-release-45