Skip to content

September 2022 Conseil Release

Compare
Choose a tag to compare
@vishakh vishakh released this 15 Sep 12:56
· 3 commits to master since this release
dcf6a54

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