UNPKG

@leapwallet/buffer-boba

Version:

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

25 lines (24 loc) 722 B
import { GeneratedType, Registry } from '@cosmjs/proto-signing'; import { MsgSetFeeTokens } from './tx'; export declare const registry: ReadonlyArray<[string, GeneratedType]>; export declare const load: (protoRegistry: Registry) => void; export declare const MessageComposer: { encoded: { setFeeTokens(value: MsgSetFeeTokens): { typeUrl: string; value: Uint8Array; }; }; withTypeUrl: { setFeeTokens(value: MsgSetFeeTokens): { typeUrl: string; value: MsgSetFeeTokens; }; }; fromPartial: { setFeeTokens(value: MsgSetFeeTokens): { typeUrl: string; value: MsgSetFeeTokens; }; }; };