import { StdFee } from "@cosmjs/launchpad"; import { DeliverTxResponse } from "@cosmjs/stargate"; import { EncodeObject, GeneratedType, OfflineSigner, Registry } from "@cosmjs/proto-signing"; import { IgniteClient } from "../client"; import { Api } from "./rest"; import { MsgClaimIncentives } from "./types/mantrachain/marketmaker/v1beta1/tx"; import { MsgApplyMarketMaker } from "./types/mantrachain/marketmaker/v1beta1/tx"; export { MsgClaimIncentives, MsgApplyMarketMaker }; declare type sendMsgClaimIncentivesParams = { value: MsgClaimIncentives; fee?: StdFee; memo?: string; }; declare type sendMsgApplyMarketMakerParams = { value: MsgApplyMarketMaker; fee?: StdFee; memo?: string; }; declare type msgClaimIncentivesParams = { value: MsgClaimIncentives; }; declare type msgApplyMarketMakerParams = { value: MsgApplyMarketMaker; }; export declare const registry: Registry; interface TxClientOptions { addr: string; prefix: string; signer?: OfflineSigner; } export declare const txClient: ({ signer, prefix, addr }?: TxClientOptions) => { sendMsgClaimIncentives({ value, fee, memo }: sendMsgClaimIncentivesParams): Promise; sendMsgApplyMarketMaker({ value, fee, memo }: sendMsgApplyMarketMakerParams): Promise; msgClaimIncentives({ value }: msgClaimIncentivesParams): EncodeObject; msgApplyMarketMaker({ value }: msgApplyMarketMakerParams): EncodeObject; }; interface QueryClientOptions { addr: string; } export declare const queryClient: ({ addr: addr }?: QueryClientOptions) => Api; declare class SDKModule { query: ReturnType; tx: ReturnType; structure: Record; registry: Array<[string, GeneratedType]>; constructor(client: IgniteClient); updateTX(client: IgniteClient): void; } declare const Module: (test: IgniteClient) => { module: { MantrachainMarketmakerV1Beta1: SDKModule; }; registry: [string, GeneratedType][]; }; export default Module;