Remove SearchBySentFromOrToQuery and SearchByHeightQuery
This commit is contained in:
parent
dd0d69d6ca
commit
30d6c076a8
@ -43,6 +43,9 @@ and this project adheres to
|
||||
supports CometBFT 0.38. Rename
|
||||
`CosmWasmClient.getTmClient`/`.forceGetTmClient` to
|
||||
`.getCometClient`/`.forceGetCometClient`.
|
||||
- @cosmjs/stargate: Remove interfaces `SearchBySentFromOrToQuery` and
|
||||
`SearchByHeightQuery` which became obsolete with the `searchTx` change in
|
||||
0.31.0.
|
||||
|
||||
[#1421]: https://github.com/cosmos/cosmjs/issues/1421
|
||||
[#1465]: https://github.com/cosmos/cosmjs/issues/1465
|
||||
|
||||
@ -113,7 +113,7 @@ export {
|
||||
QueryClient,
|
||||
QueryStoreResponse,
|
||||
} from "./queryclient";
|
||||
export { SearchByHeightQuery, SearchBySentFromOrToQuery, SearchTxQuery } from "./search";
|
||||
export { SearchTxQuery } from "./search";
|
||||
export {
|
||||
createDefaultAminoConverters,
|
||||
defaultRegistryTypes,
|
||||
|
||||
@ -1,11 +1,3 @@
|
||||
export interface SearchByHeightQuery {
|
||||
readonly height: number;
|
||||
}
|
||||
|
||||
export interface SearchBySentFromOrToQuery {
|
||||
readonly sentFromOrTo: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* This query type allows you to pass arbitrary key/value pairs to the backend.
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user