-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
82 additions
and
36 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
.changelog/v1.7.1/improvements/ibc-relayer/3521-client-update.md
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,3 @@ | ||
- Hermes now saves on fees by not including a client update if the | ||
consensus state at desired height is already present on chain. | ||
([\#3521](https://github.com/informalsystems/hermes/issues/3521)) |
File renamed without changes.
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,12 @@ | ||
This patch release of Hermes now allows operators to set the clearing interval | ||
at a different value for each chain, using the new per-chain `clear_interval` setting. | ||
The global `clear_interval` setting is used as a default value if the per-chain | ||
setting is not defined. | ||
|
||
Additionnaly, operators can now override the CometBFT compatibility mode to be used | ||
for a chain by using the new `compat_mode` per-chain setting. The main use case for this | ||
is to override the automatically detected compatibility mode in case Hermes gets it wrong | ||
or encounters a non-standard version number and falls back on the wrong CometBFT version. | ||
|
||
On top of that, Hermes will now attempt to save on fees by not building a client update | ||
for a given height if the consensus state for that height is already present on chain. |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ibc-relayer-rest" | ||
version = "0.26.0" | ||
version = "0.26.1" | ||
authors = ["Informal Systems <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -14,8 +14,8 @@ description = """ | |
""" | ||
|
||
[dependencies] | ||
ibc-relayer-types = { version = "0.26.0", path = "../relayer-types" } | ||
ibc-relayer = { version = "0.26.0", path = "../relayer" } | ||
ibc-relayer-types = { version = "0.26.1", path = "../relayer-types" } | ||
ibc-relayer = { version = "0.26.1", path = "../relayer" } | ||
|
||
crossbeam-channel = "0.5" | ||
serde = "1.0" | ||
|
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
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
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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Summary | ||
|
||
# Hermes v1.7.0 | ||
# Hermes v1.7.1 | ||
|
||
--- | ||
- [Introduction](./index.md) | ||
|
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 |
---|---|---|
|
@@ -160,7 +160,7 @@ event_source = { mode = 'push', url = 'wss://hello:[email protected]:26657/webs | |
## Configuring Support for Wasm Relaying | ||
|
||
As of version 1.7.0, Hermes supports the relaying of wasm messages natively. This is facilitated by configuring | ||
As of version 1.7.1, Hermes supports the relaying of wasm messages natively. This is facilitated by configuring | ||
Hermes to use pull-based relaying by polling for IBC events via the `/block_results` RPC endpoint. Set | ||
the `event_source` parameter to pull mode in `config.toml` like so: | ||
|
||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
v1.7.0 | ||
v1.7.1 |
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
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