@@ -255,13 +255,9 @@ import {
255
255
} from "@cosmjs/proto-signing" ;
256
256
import { SignDoc } from "cosmjs-types/cosmos/tx/v1beta1/tx" ;
257
257
import { AminoSigner , Signer } from "./wallet_amino" ;
258
- import { GroupQuerier } from "./query/group" ;
259
258
import { OrmQuerier } from "./query/orm" ;
260
259
import { AppQuerier } from "./query/app" ;
261
- import { NftQuerier } from "./query/nft" ;
262
- import { CircuitQuerier } from "./query/circuit" ;
263
260
import { AutoCliQuerier } from "./query/autocli" ;
264
- import { IbcWasmQuerier } from "./query/ibc_wasm" ;
265
261
266
262
export type CreateClientOptions = {
267
263
/** A URL to the API service, also known as LCD, REST API or gRPC-gateway, by default on port 1317 */
@@ -480,13 +476,9 @@ export type Querier = {
480
476
staking : StakingQuerier ;
481
477
tendermint : TendermintQuerier ;
482
478
upgrade : UpgradeQuerier ;
483
- group : GroupQuerier ;
484
479
app : AppQuerier ;
485
480
orm : OrmQuerier ;
486
- nft : NftQuerier ;
487
- circuit : CircuitQuerier ;
488
481
autocli : AutoCliQuerier ;
489
- ibc_wasm : IbcWasmQuerier ;
490
482
} ;
491
483
492
484
export type ArrayLog = Array < {
@@ -931,13 +923,9 @@ export class SecretNetworkClient {
931
923
staking : new StakingQuerier ( options . url ) ,
932
924
tendermint : new TendermintQuerier ( options . url ) ,
933
925
upgrade : new UpgradeQuerier ( options . url ) ,
934
- group : new GroupQuerier ( options . url ) ,
935
926
orm : new OrmQuerier ( options . url ) ,
936
927
app : new AppQuerier ( options . url ) ,
937
- nft : new NftQuerier ( options . url ) ,
938
- circuit : new CircuitQuerier ( options . url ) ,
939
928
autocli : new AutoCliQuerier ( options . url ) ,
940
- ibc_wasm : new IbcWasmQuerier ( options . url ) ,
941
929
getTx : ( hash , ibcTxOptions ) => this . getTx ( hash , ibcTxOptions ) ,
942
930
txsQuery : ( query , ibcTxOptions , pagination , order_by ) =>
943
931
this . txsQuery ( query , ibcTxOptions , pagination , order_by ) ,
0 commit comments