UNPKG

@leapwallet/buffer-boba

Version:

Buffer Boba is a library for decoding protocol buffers in the cosmos ecosystem.

11 lines (10 loc) 268 B
/** * */ export declare class MsgConverter { static convertFromAminoToDirect(aminoType: string, msg: any): { typeUrl: string; value: any; } | null; static convertFromDirectToAmino(typeUrl: string, msg: any): Record<string, any> | null; }