-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add docs for checksums migration (#5335)
* docs: add docs for checksums migration * linting
- Loading branch information
1 parent
d76ee9b
commit 754a213
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Migrations | ||
sidebar_label: Migrations | ||
sidebar_position: 9 | ||
slug: /ibc/light-clients/wasm/migrations | ||
--- | ||
|
||
# Migrations | ||
|
||
This guide provides instructions for migrating 08-wasm versions. | ||
|
||
## From ibc-go v7.3.x to ibc-go v8.0.x | ||
|
||
## Chains | ||
|
||
In the 08-wasm versions compatible with ibc-go v7.3.x and above from the v7 release line, the checksums of the uploaded Wasm bytecodes are all stored under a single key. From ibc-go v8.0.x the checksums are stored using [`collections.KeySet`](https://docs.cosmos.network/v0.50/build/packages/collections#keyset), whose full functionality became available in Cosmos SDK v0.50. There is therefore an [automatic migration handler](https://github.com/cosmos/ibc-go/blob/51469420d8b14021768eacf0d8a61c5036a7eb91/modules/light-clients/08-wasm/module.go#L115-L118) configured in the 08-wasm module to migrate the stored checksums to `collections.KeySet`. |