UNPKG

@bandprotocol/bandchain.js

Version:

TypeScript library for Cosmos SDK and BandChain

25 lines (24 loc) 722 B
import { GeneratedType, Registry } from "@cosmjs/proto-signing"; import { MsgUpdateParams } from "./tx"; export declare const registry: ReadonlyArray<[string, GeneratedType]>; export declare const load: (protoRegistry: Registry) => void; export declare const MessageComposer: { encoded: { updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; fromPartial: { updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; };