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 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";