From 595d8a3074986f8673a9a8b32827bcf886d1bfe7 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 18 Dec 2025 16:06:38 +0100 Subject: [PATCH 1/2] Add missing export CosmWasmClientOptions --- packages/cosmwasm/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cosmwasm/src/index.ts b/packages/cosmwasm/src/index.ts index c052f31a72..b2e0c552b8 100644 --- a/packages/cosmwasm/src/index.ts +++ b/packages/cosmwasm/src/index.ts @@ -1,4 +1,5 @@ export type { Code, CodeDetails, Contract, ContractCodeHistoryEntry } from "./cosmwasmclient"; +export type { CosmWasmClientOptions } from "./cosmwasmclient"; export { CosmWasmClient } from "./cosmwasmclient"; export { fromBinary, toBinary } from "./encoding"; export { _instantiate2AddressIntermediate, instantiate2Address } from "./instantiate2"; From a3b8320969120ca2376792c7a9b2c9e3adb9fe9a Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 18 Dec 2025 16:07:19 +0100 Subject: [PATCH 2/2] Add link to PR #1928 --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63b6de08d7..119282acd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,11 +22,12 @@ and this project adheres to Osmosis' EIP-1559 implementation or the Skip fee market module to get the gas price from the chain. ([#1926]) - @cosmjs/cosmwasm-stargate: Add the ability to specify a custom account parser - for `CosmWasmClient`. + for `CosmWasmClient`. ([#1928]) [#1883]: https://github.com/cosmos/cosmjs/issues/1883 [#1916]: https://github.com/cosmos/cosmjs/pull/1916 [#1926]: https://github.com/cosmos/cosmjs/pull/1926 +[#1928]: https://github.com/cosmos/cosmjs/pull/1928 ### Changed