@leapwallet/buffer-boba
Version:
Buffer Boba is a library for decoding protocol buffers in the cosmos ecosystem.
37 lines (36 loc) • 1.07 kB
TypeScript
import { GeneratedType, Registry } from '@cosmjs/proto-signing';
import { MsgTransfer, MsgUpdateParams } from './tx';
export declare const registry: ReadonlyArray<[string, GeneratedType]>;
export declare const load: (protoRegistry: Registry) => void;
export declare const MessageComposer: {
encoded: {
transfer(value: MsgTransfer): {
typeUrl: string;
value: Uint8Array;
};
updateParams(value: MsgUpdateParams): {
typeUrl: string;
value: Uint8Array;
};
};
withTypeUrl: {
transfer(value: MsgTransfer): {
typeUrl: string;
value: MsgTransfer;
};
updateParams(value: MsgUpdateParams): {
typeUrl: string;
value: MsgUpdateParams;
};
};
fromPartial: {
transfer(value: MsgTransfer): {
typeUrl: string;
value: MsgTransfer;
};
updateParams(value: MsgUpdateParams): {
typeUrl: string;
value: MsgUpdateParams;
};
};
};