import { TxRpc } from "../../../types.js"; import { MsgFundRewardPool, MsgFundRewardPoolResponse, MsgUpdateParams, MsgUpdateParamsResponse } from "./tx.js"; //#region src/xpla/reward/v1beta1/tx.rpc.msg.d.ts /** Msg defines the reawrd Msg service. */ interface Msg { /** * MsgFundRewardPool defines a method to allow an account to directly * fund the reward pool. */ fundRewardPool(request: MsgFundRewardPool): Promise; /** * UpdateParams defined a governance operation for updating the x/reward * module parameters. The authority is hard-coded to the Cosmos SDK x/gov * module account */ updateParams(request: MsgUpdateParams): Promise; } declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); fundRewardPool: (request: MsgFundRewardPool) => Promise; updateParams: (request: MsgUpdateParams) => Promise; } declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //#endregion export { Msg, MsgClientImpl, createClientImpl };