import { Rpc } from "../../../helpers"; import { MsgFundFairburnPool, MsgFundFairburnPoolResponse, MsgUpdateParams, MsgUpdateParamsResponse } from "./tx"; /** Msg defines the alloc Msg service. */ export interface Msg { /** * FundFairburnPool defines a method to allow an account to directly * fund the fee collector module account. */ fundFairburnPool(request: MsgFundFairburnPool): Promise; /** UpdateParams updates the alloc module's parameters. */ updateParams(request: MsgUpdateParams): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); fundFairburnPool(request: MsgFundFairburnPool): Promise; updateParams(request: MsgUpdateParams): Promise; }