Skip to content

Commit

Permalink
Merge pull request #1215 from cosmos/export-Tendermint35Client
Browse files Browse the repository at this point in the history
Export Tendermint 0.35 client
  • Loading branch information
webmaster128 authored Jul 7, 2022
2 parents 372f942 + eea9104 commit 5bd6c39
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@ and this project adheres to

- @cosmjs/stargate: Add `makeMultisignedTxBytes` which is like
`makeMultisignedTx` but returns bytes ready to broadcast ([#1176]).
- @cosmjs/tendermint-rpc: Add Tendermint 0.35 client. This is currently not used
by higher level clients as Cosmos SDK 0.42-0.46 use Tendermint 0.34. But it
can be used as a standalone client for a Tendermint 0.35 RPC endpoint.
([[#1154]])
- @cosmjs/tendermint-rpc: Add fields `codespace` and `info` to
`AbciQueryResponse`.
- @cosmjs/cosmwasm-stargate: Add `SigningCosmWasmClient.executeMultiple`
([#1072]).
- @cosmjs/math: Add `{Uint32,Int53,Uint53,Uint64}.toBigInt` converter methods.

[#1072]: https://github.com/cosmos/cosmjs/issues/1072
[#1154]: https://github.com/cosmos/cosmjs/issues/1154
[#1176]: https://github.com/cosmos/cosmjs/pull/1176

### Fixed
Expand Down
2 changes: 2 additions & 0 deletions packages/tendermint-rpc/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ export {
} from "./tendermint34";
export * as tendermint34 from "./tendermint34";
export { Tendermint34Client } from "./tendermint34";
export * as tendermint35 from "./tendermint35";
export { Tendermint35Client } from "./tendermint35";
export {
BlockIdFlag,
CommitSignature,
Expand Down

0 comments on commit 5bd6c39

Please sign in to comment.