UNPKG

interchainjs

Version:

InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.

72 lines (71 loc) 2.54 kB
import { TelescopeGeneratedType } from "../../../types"; import { MsgFundCommunityPool, MsgCommunityPoolSpend, MsgCreateContinuousFund, MsgCancelContinuousFund, MsgUpdateParams } from "./tx"; export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>; export declare const MessageComposer: { encoded: { fundCommunityPool(value: MsgFundCommunityPool): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; communityPoolSpend(value: MsgCommunityPoolSpend): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; createContinuousFund(value: MsgCreateContinuousFund): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; cancelContinuousFund(value: MsgCancelContinuousFund): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; }; withTypeUrl: { fundCommunityPool(value: MsgFundCommunityPool): { typeUrl: string; value: MsgFundCommunityPool; }; communityPoolSpend(value: MsgCommunityPoolSpend): { typeUrl: string; value: MsgCommunityPoolSpend; }; createContinuousFund(value: MsgCreateContinuousFund): { typeUrl: string; value: MsgCreateContinuousFund; }; cancelContinuousFund(value: MsgCancelContinuousFund): { typeUrl: string; value: MsgCancelContinuousFund; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; fromPartial: { fundCommunityPool(value: MsgFundCommunityPool): { typeUrl: string; value: MsgFundCommunityPool; }; communityPoolSpend(value: MsgCommunityPoolSpend): { typeUrl: string; value: MsgCommunityPoolSpend; }; createContinuousFund(value: MsgCreateContinuousFund): { typeUrl: string; value: MsgCreateContinuousFund; }; cancelContinuousFund(value: MsgCancelContinuousFund): { typeUrl: string; value: MsgCancelContinuousFund; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; };