@bitgo/abstract-eth 23.0.3 → 24.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [24.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@23.0.3...@bitgo/abstract-eth@24.0.0) (2025-03-28)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **abstract-eth:** return eip 191 encoded message as a hex string ([6ae1979](https://github.com/BitGo/BitGoJS/commit/6ae19794ff1c738b4984cb4dacc23130da708a17))
11
+
12
+ ### BREAKING CHANGES
13
+
14
+ - **abstract-eth:** messageEncoded is now encoded as a hex string
15
+
6
16
  ## [23.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-eth@23.0.2...@bitgo/abstract-eth@23.0.3) (2025-03-20)
7
17
 
8
18
  ### Reverts
@@ -620,7 +620,7 @@ export declare abstract class AbstractEthLikeNewCoins extends AbstractEthLikeCoi
620
620
  /**
621
621
  * Transform message to accommodate specific blockchain requirements.
622
622
  * @param {string} message - the message to prepare
623
- * @return {string} the prepared message.
623
+ * @return {string} the prepared message as a hex encoded string.
624
624
  */
625
625
  encodeMessage(message: string): string;
626
626
  /**