@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
18 lines (17 loc) • 600 B
TypeScript
import { Rpc } from "../../../helpers";
import { MsgUpdateParams, MsgUpdateParamsResponse } from "./tx";
/** Msg defines the x/globalfee Msg service. */
export interface Msg {
/**
* UpdateParams defines a governance operation for updating the x/globalfee module
* parameters.
*
* Since: cosmos-sdk 0.47
*/
updateParams(request: MsgUpdateParams): Promise<MsgUpdateParamsResponse>;
}
export declare class MsgClientImpl implements Msg {
private readonly rpc;
constructor(rpc: Rpc);
updateParams(request: MsgUpdateParams): Promise<MsgUpdateParamsResponse>;
}