@leapwallet/buffer-boba
Version:
Buffer Boba is a library for decoding protocol buffers in the cosmos ecosystem.
49 lines (48 loc) • 1.45 kB
TypeScript
import { GeneratedType, Registry } from '@cosmjs/proto-signing';
import { MsgCreateGauge, MsgAddToGauge, MsgCreateGroup } from './tx';
export declare const registry: ReadonlyArray<[string, GeneratedType]>;
export declare const load: (protoRegistry: Registry) => void;
export declare const MessageComposer: {
encoded: {
createGauge(value: MsgCreateGauge): {
typeUrl: string;
value: Uint8Array;
};
addToGauge(value: MsgAddToGauge): {
typeUrl: string;
value: Uint8Array;
};
createGroup(value: MsgCreateGroup): {
typeUrl: string;
value: Uint8Array;
};
};
withTypeUrl: {
createGauge(value: MsgCreateGauge): {
typeUrl: string;
value: MsgCreateGauge;
};
addToGauge(value: MsgAddToGauge): {
typeUrl: string;
value: MsgAddToGauge;
};
createGroup(value: MsgCreateGroup): {
typeUrl: string;
value: MsgCreateGroup;
};
};
fromPartial: {
createGauge(value: MsgCreateGauge): {
typeUrl: string;
value: MsgCreateGauge;
};
addToGauge(value: MsgAddToGauge): {
typeUrl: string;
value: MsgAddToGauge;
};
createGroup(value: MsgCreateGroup): {
typeUrl: string;
value: MsgCreateGroup;
};
};
};