From f6666ba52c61ca7d6336ba907587f237ed8606d8 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Mon, 11 Apr 2022 11:25:22 +0200 Subject: [PATCH] Add missing normalizeBech32 export --- CHANGELOG.md | 6 +++++- packages/encoding/src/index.ts | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b287cd9308..3bbd1ee41a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to ## [Unreleased] +### Added + +- @cosmjs/encoding: Add missing export: `normalizeBech32`. + ## [0.28.2] - 2022-04-07 ### Added @@ -834,7 +838,7 @@ CHANGELOG entries missing. Please see [the diff][0.24.1]. `FeeTable`. @cosmjs/cosmwasm has its own `FeeTable` with those properties. - @cosmjs/sdk38: Rename package to @cosmjs/launchpad. -[unreleased]: https://github.com/cosmos/cosmjs/compare/v0.28.2...HEAD +[unreleased]: https://github.com/cosmos/cosmjs/compare/v0.28.3...HEAD [0.28.2]: https://github.com/cosmos/cosmjs/compare/v0.28.1...v0.28.2 [0.28.1]: https://github.com/cosmos/cosmjs/compare/v0.28.0...v0.28.1 [0.28.0]: https://github.com/cosmos/cosmjs/compare/v0.27.1...v0.28.0 diff --git a/packages/encoding/src/index.ts b/packages/encoding/src/index.ts index 957997d5c1..9ca7cc196f 100644 --- a/packages/encoding/src/index.ts +++ b/packages/encoding/src/index.ts @@ -1,6 +1,6 @@ export { fromAscii, toAscii } from "./ascii"; export { fromBase64, toBase64 } from "./base64"; -export { Bech32, fromBech32, toBech32 } from "./bech32"; +export { Bech32, fromBech32, normalizeBech32, toBech32 } from "./bech32"; export { fromHex, toHex } from "./hex"; export { fromRfc3339, toRfc3339 } from "./rfc3339"; export { fromUtf8, toUtf8 } from "./utf8";