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