@@ -46,7 +46,43 @@ and this project adheres to
4646
4747 This change requires users to use TypeScript 5.7 or newer. ([ #1883 ] )
4848
49+ - @cosmjs/tendermint-rpc : Remove union type ` TendermintClient ` . Use
50+ ` CometClient ` or just ` Tendermint37Client ` instead. ([ #1866 ] )
51+ - @cosmjs/tendermint-rpc : Remove ` isTendermint34Client ` . Remove
52+ ` Tendermint34Client ` from ` CometClient ` union type. Remove
53+ ` Tendermint34Client ` . Remove module ` tendermint34 ` . ([ #1866 ] )
54+ - @cosmjs/tendermint-rpc : Remove top-level exports ` broadcastTxCommitSuccess ` ,
55+ ` broadcastTxSyncSuccess ` , ` AbciInfoRequest ` , ` AbciInfoResponse ` ,
56+ ` AbciQueryParams ` , ` AbciQueryRequest ` , ` AbciQueryResponse ` , ` Attribute ` ,
57+ ` Block ` , ` BlockchainRequest ` , ` BlockchainResponse ` , ` BlockGossipParams ` ,
58+ ` BlockId ` , ` BlockMeta ` , ` BlockParams ` , ` BlockRequest ` , ` BlockResponse ` ,
59+ ` BlockResultsRequest ` , ` BlockResultsResponse ` , ` BroadcastTxAsyncResponse ` ,
60+ ` BroadcastTxCommitResponse ` , ` BroadcastTxParams ` , ` BroadcastTxRequest ` ,
61+ ` BroadcastTxSyncResponse ` , ` Commit ` , ` CommitRequest ` , ` CommitResponse ` ,
62+ ` ConsensusParams ` , ` Event ` , ` Evidence ` , ` EvidenceParams ` , ` GenesisRequest ` ,
63+ ` GenesisResponse ` , ` Header ` , ` HealthRequest ` , ` HealthResponse ` , ` Method ` ,
64+ ` NewBlockEvent ` , ` NewBlockHeaderEvent ` , ` NodeInfo ` ,
65+ ` NumUnconfirmedTxsRequest ` , ` NumUnconfirmedTxsResponse ` , ` ProofOp ` ,
66+ ` QueryProof ` , ` QueryTag ` , ` Request ` , ` Response ` , ` StatusRequest ` ,
67+ ` StatusResponse ` , ` SubscriptionEventType ` , ` SyncInfo ` , ` TxData ` , ` TxEvent ` ,
68+ ` TxParams ` , ` TxProof ` , ` TxRequest ` , ` TxResponse ` , ` TxSearchParams ` ,
69+ ` TxSearchRequest ` , ` TxSearchResponse ` , ` TxSizeParams ` , ` Validator ` ,
70+ ` ValidatorsParams ` , ` ValidatorsRequest ` , ` ValidatorsResponse ` , ` Version ` ,
71+ ` Vote ` , ` VoteType ` which all came from ` tendermint34 ` .
72+
73+ If you needs any of those you can import them from a version specific module,
74+ such as ` comet1.Version ` or
75+
76+ ``` ts
77+ import { comet1 , comet38 , tendermint37 } from " @cosmjs/tendermint-rpc" ;
78+
79+ function convertEvent(e : tendermint37 .Event | comet38 .Event | comet1 .Event );
80+ ```
81+
82+ in case you want to support multiple versions. ([ #1866 ] )
83+
4984[ #1883 ] : https://github.com/cosmos/cosmjs/issues/1883
85+ [ #1866 ] : https://github.com/cosmos/cosmjs/issues/1866
5086
5187## [ 0.37.0] - 2025-10-29
5288
0 commit comments