From ce2a6d7a66d20d65456aa9f1903df32231cc6bdd Mon Sep 17 00:00:00 2001 From: sherpalden Date: Mon, 12 Aug 2024 15:09:29 +0545 Subject: [PATCH] fix: merge conflicts --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eeb98fd..b5ac2559 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [1.6.0] - 2024-08-12 + +### Added +- SUI chain implementation. +- Add `LastProcessedTxStore` to store the chain specific information about the last processed transaction. + +### Changed +- While switching in between multiple relayer wallet address, set admin before saving config. +- Add two new fields in the relayer's `Message` type: + - `DappModuleCapID` to track to which dapp module the message need to relayed. This is used for `ExecuteCall` and `ExecuteRollback` only. + - `TxInfo` to store the information of transaction in which the message is contained in the source chain. + This field is opaque to relayer's core and its type is known only in the chain's implementation. +- Changed the `Listener` method signature in the chain provider interface from `Listener(ctx context.Context, lastSavedHeight uint64, blockInfo chan *types.BlockInfo) error` to `Listener(ctx context.Context, lastProcessedTx types.LastProcessedTx, blockInfo chan *types.BlockInfo) error`. + + ## [1.5.1] - 2024-08-12 ### Changed