UNPKG

@bandprotocol/bandchain.js

Version:

TypeScript library for Cosmos SDK and BandChain

61 lines (60 loc) 1.99 kB
import { GeneratedType, Registry } from "@cosmjs/proto-signing"; import { MsgVote, MsgSubmitSignalPrices, MsgUpdateReferenceSourceConfig, MsgUpdateParams } from "./tx"; export declare const registry: ReadonlyArray<[string, GeneratedType]>; export declare const load: (protoRegistry: Registry) => void; export declare const MessageComposer: { encoded: { vote(value: MsgVote): { typeUrl: string; value: Uint8Array; }; submitSignalPrices(value: MsgSubmitSignalPrices): { typeUrl: string; value: Uint8Array; }; updateReferenceSourceConfig(value: MsgUpdateReferenceSourceConfig): { typeUrl: string; value: Uint8Array; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { vote(value: MsgVote): { typeUrl: string; value: MsgVote; }; submitSignalPrices(value: MsgSubmitSignalPrices): { typeUrl: string; value: MsgSubmitSignalPrices; }; updateReferenceSourceConfig(value: MsgUpdateReferenceSourceConfig): { typeUrl: string; value: MsgUpdateReferenceSourceConfig; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; fromPartial: { vote(value: MsgVote): { typeUrl: string; value: MsgVote; }; submitSignalPrices(value: MsgSubmitSignalPrices): { typeUrl: string; value: MsgSubmitSignalPrices; }; updateReferenceSourceConfig(value: MsgUpdateReferenceSourceConfig): { typeUrl: string; value: MsgUpdateReferenceSourceConfig; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; };